/* =========================
   AquaLoop Pools — Home (home.html)
   Page-specific styles
   ========================= */

/* HERO LAYOUT */

.alp-hero {
  overflow: hidden;
}

.alp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(42, 208, 255, 0.26), transparent 60%),
    radial-gradient(circle at top right, rgba(255, 127, 107, 0.18), transparent 65%),
    radial-gradient(circle at bottom, rgba(1, 60, 88, 0.9), #01060a 75%);
  opacity: 0.95;
  pointer-events: none;
  z-index: -2;
}

.alp-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.4fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 26px;
}

.alp-hero-gallery {
  display: grid;
  gap: 16px;
}

.alp-hero-gallery--left {
  align-content: center;
}

.alp-hero-gallery--right {
  align-content: center;
}

/* HERO PHOTOS */

.alp-hero-photo {
  position: relative;
  padding: 10px;
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(127, 240, 255, 0.24), rgba(2, 10, 18, 0.95));
  box-shadow: var(--alp-shadow-soft);
  overflow: hidden;
}

.alp-hero-photo img {
  border-radius: 18px;
}

.alp-hero-photo--tall img {
  max-height: 280px;
  object-fit: cover;
}

.alp-hero-photo--medium img {
  max-height: 230px;
  object-fit: cover;
}

.alp-hero-photo--small img {
  max-height: 180px;
  object-fit: cover;
}

.alp-hero-photo--stacked img {
  max-height: 220px;
  object-fit: cover;
}

.alp-hero-photo::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 1px solid rgba(127, 240, 255, 0.35);
  mix-blend-mode: screen;
  pointer-events: none;
}

.alp-hero-photo-caption {
  margin-top: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--alp-color-text-muted);
}

/* HERO CONTENT */

.alp-hero-content {
  position: relative;
  padding: 26px 24px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(6, 40, 61, 0.96), rgba(1, 16, 27, 0.98)),
    radial-gradient(circle at top left, rgba(127, 240, 255, 0.18), transparent 60%);
  box-shadow: var(--alp-shadow-soft);
}

.alp-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--alp-color-accent-soft);
  margin-bottom: 10px;
}

.alp-hero-title {
  font-family: "AquaLoopDisplay", system-ui, sans-serif;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 14px;
}

.alp-hero-title-highlight {
  background-image: linear-gradient(90deg, var(--alp-color-accent-soft), var(--alp-color-coral));
  -webkit-background-clip: text;
  color: transparent;
}

.alp-hero-lead {
  font-size: 15px;
  color: var(--alp-color-sand);
  margin-bottom: 8px;
}

.alp-hero-text {
  font-size: 14px;
  color: var(--alp-color-text-muted);
  margin-bottom: 18px;
}

.alp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.alp-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.alp-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 24, 38, 0.86);
  border: 1px solid rgba(127, 240, 255, 0.25);
  font-size: 11px;
  color: var(--alp-color-text-muted);
  box-shadow: var(--alp-shadow-chip);
}

.alp-hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #7ff0ff, #2ad0ff);
  box-shadow: 0 0 10px rgba(127, 240, 255, 0.8);
}

/* HERO BUBBLES */

.alp-hero-bubbles {
  position: absolute;
  inset-inline: 0;
  bottom: -40px;
  height: 180px;
  pointer-events: none;
  overflow: hidden;
}

.alp-bubble {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  border: 1px solid rgba(127, 240, 255, 0.5);
  background: radial-gradient(circle at 30% 20%, rgba(127, 240, 255, 0.9), rgba(2, 16, 27, 0.3));
  box-shadow: 0 0 18px rgba(127, 240, 255, 0.6);
  animation: alp-bubble-rise 12s linear infinite;
}

.alp-bubble--sm {
  width: 16px;
  height: 16px;
  left: 15%;
  animation-duration: 11s;
}

.alp-bubble--md {
  width: 24px;
  height: 24px;
  left: 45%;
  animation-duration: 14s;
}

.alp-bubble--lg {
  width: 32px;
  height: 32px;
  left: 72%;
  animation-duration: 16s;
}

@keyframes alp-bubble-rise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  60% {
    transform: translateY(-140px) translateX(-10px);
  }
  100% {
    transform: translateY(-200px) translateX(10px);
    opacity: 0;
  }
}

/* REVEAL ANIMATIONS (JS + CSS) */

[data-animate="fade-up"],
[data-animate="float"],
[data-animate="float-delayed"] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 520ms var(--alp-ease-soft),
    transform 520ms var(--alp-ease-soft);
  will-change: transform, opacity;
}

.alp-animated--visible[data-animate="fade-up"] {
  opacity: 1;
  transform: translateY(0);
}

.alp-animated--visible[data-animate="float"],
.alp-animated--visible[data-animate="float-delayed"] {
  opacity: 1;
  transform: translateY(0);
}

/* subtle float wiggle after reveal */
.alp-animated--visible[data-animate="float"] img {
  animation: alp-float-soft 6s ease-in-out infinite;
}

.alp-animated--visible[data-animate="float-delayed"] img {
  animation: alp-float-soft 7s ease-in-out infinite;
  animation-delay: 0.6s;
}

@keyframes alp-float-soft {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ADAPTIVE HERO */

@media (max-width: 1024px) {
  .alp-hero-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "content content"
      "left right";
  }

  .alp-hero-content {
    grid-area: content;
  }

  .alp-hero-gallery--left {
    grid-area: left;
    grid-auto-flow: column;
  }

  .alp-hero-gallery--right {
    grid-area: right;
    grid-auto-flow: row;
  }
}

@media (max-width: 820px) {
  .alp-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "content"
      "left"
      "right";
  }

  .alp-hero-content {
    padding: 22px 18px;
  }

  .alp-hero-title {
    font-size: 26px;
  }

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

@media (max-width: 600px) {
  .alp-hero-layout {
    gap: 18px;
  }

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

  /* На мобилке сначала текст, потом изображения друг под другом */
  .alp-hero-layout {
    grid-template-areas:
      "content"
      "left"
      "right";
  }

  .alp-hero-content {
    order: 0;
  }

  .alp-hero-gallery--left,
  .alp-hero-gallery--right {
    order: 1;
  }

  .alp-hero-bubbles {
    height: 140px;
  }

  .alp-hero-content {
    border-radius: 24px;
  }
}
/* =========================
   SECTION 2 — ABOUT
   ========================= */

.alp-section-title {
  font-family: "AquaLoopDisplay", system-ui, sans-serif;
  font-size: 24px;
  margin: 0 0 10px;
}

.alp-section-lead {
  font-size: 14px;
  color: var(--alp-color-text-muted);
  max-width: 520px;
  margin-bottom: 16px;
}

.alp-about {
  padding-top: 64px;
}

.alp-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.alp-about-main {
  padding: 22px 22px 20px;
  border-radius: var(--alp-radius-xl);
  background: radial-gradient(circle at top left, rgba(127, 240, 255, 0.2), transparent 55%),
    linear-gradient(140deg, rgba(6, 44, 68, 0.96), rgba(4, 26, 40, 0.96));
  box-shadow: var(--alp-shadow-soft);
  position: relative;
  overflow: hidden;
}

.alp-about-main::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 208, 255, 0.35), transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

.alp-about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.alp-about-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--alp-radius-pill);
  background: rgba(1, 18, 30, 0.9);
  border: 1px solid rgba(127, 240, 255, 0.3);
  font-size: 11px;
  color: var(--alp-color-sand);
  box-shadow: var(--alp-shadow-chip);
  transform: translateY(0);
  transition:
    transform var(--alp-duration-fast) var(--alp-ease-out),
    box-shadow var(--alp-duration-fast) var(--alp-ease-out),
    border-color var(--alp-duration-fast) var(--alp-ease-out);
}

.alp-about-chip:hover {
  transform: translateY(-2px);
  border-color: var(--alp-color-accent-soft);
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.6);
}

.alp-about-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #7ff0ff, #2ad0ff);
  box-shadow: 0 0 9px rgba(127, 240, 255, 0.8);
}

.alp-about-side {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  justify-items: flex-end;
}

.alp-about-photo {
  position: relative;
  padding: 10px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(6, 36, 52, 0.95), rgba(2, 10, 18, 0.98));
  box-shadow: var(--alp-shadow-soft);
}

.alp-about-photo--main {
  max-width: 320px;
  justify-self: flex-end;
}

.alp-about-photo--badge {
  max-width: 220px;
  position: absolute;
  left: -10px;
  bottom: -18px;
}

.alp-about-caption {
  margin-top: 5px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--alp-color-text-muted);
}

/* =========================
   SECTION 3 — PINCO BALANCE
   ========================= */

.alp-pinco {
  padding-top: 56px;
}

.alp-pinco-inner {
  padding: 22px 18px 20px;
  border-radius: 30px;
  background: radial-gradient(circle at top, rgba(6, 60, 88, 0.82), rgba(1, 12, 20, 0.98));
  box-shadow: var(--alp-shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: center;
}

.alp-pinco-info {
  position: relative;
}

.alp-pinco-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.alp-pinco-item {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0, 20, 32, 0.85);
  border: 1px solid rgba(127, 240, 255, 0.24);
}

.alp-pinco-label {
  margin: 0 0 4px;
  font-size: 13px;
  color: var(--alp-color-accent-soft);
}

.alp-pinco-text {
  margin: 0;
  font-size: 13px;
  color: var(--alp-color-text-muted);
}

.alp-pinco-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.alp-pinco-photo {
  position: relative;
  padding: 9px;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(8, 52, 75, 0.96), rgba(3, 20, 32, 0.98));
  box-shadow: var(--alp-shadow-soft);
}

.alp-pinco-photo--kit img {
  max-height: 210px;
  object-fit: cover;
}

.alp-pinco-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.alp-pinco-caption {
  margin-top: 4px;
  font-size: 11px;
  color: var(--alp-color-text-muted);
}

/* =========================
   SECTION 4 — PRODUCT RIBBON
   ========================= */

.alp-product-ribbon {
  padding-top: 60px;
}

.alp-product-ribbon-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.alp-product-ribbon-head {
  max-width: 640px;
}

.alp-product-ribbon-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.alp-product-pill {
  position: relative;
}

.alp-product-pill-body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(6, 40, 61, 0.98), rgba(2, 14, 24, 0.98));
  border: 1px solid rgba(127, 240, 255, 0.3);
  box-shadow: var(--alp-shadow-soft);
  transition:
    transform var(--alp-duration-fast) var(--alp-ease-out),
    box-shadow var(--alp-duration-fast) var(--alp-ease-out),
    border-color var(--alp-duration-fast) var(--alp-ease-out);
}

.alp-product-pill:hover .alp-product-pill-body {
  transform: translateY(-3px);
  border-color: var(--alp-color-accent-soft);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.alp-product-pill--reverse .alp-product-pill-body {
  grid-template-columns: auto minmax(0, 1.4fr);
}

.alp-product-pill-title {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--alp-color-accent-soft);
}

.alp-product-pill-desc {
  margin: 0;
  font-size: 13px;
  color: var(--alp-color-text-muted);
}

.alp-product-pill-photo {
  max-width: 140px;
}

.alp-product-pill-photo img {
  border-radius: 16px;
}

.alp-product-line {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 240, 255, 0.5), transparent);
  opacity: 0.6;
  pointer-events: none;
}

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

@media (max-width: 1024px) {
  .alp-about-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }

  .alp-pinco-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 820px) {
  .alp-about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .alp-about-side {
    position: relative;
  }

  .alp-about-photo--badge {
    position: relative;
    left: 0;
    bottom: 0;
    max-width: 220px;
    justify-self: flex-start;
    margin-top: 6px;
  }

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

  .alp-pinco-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .alp-pinco-stack {
    grid-template-columns: minmax(0, 1fr);
  }

  .alp-product-pill-body,
  .alp-product-pill--reverse .alp-product-pill-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .alp-product-pill-photo {
    max-width: 180px;
    justify-self: flex-start;
  }
}

@media (max-width: 600px) {
  .alp-about-main {
    padding: 18px 16px 16px;
  }

  .alp-section-title {
    font-size: 20px;
  }

  .alp-product-line {
    display: none;
  }

  /* изображения на мобилке одно под другим внутри своих блоков уже обеспечены grid-версткой */
}
/* =========================
   SECTION 5 — SERVICE GRID
   ========================= */

.alp-service-grid {
  padding-top: 58px;
}

.alp-service-grid-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.alp-service-intro {
  max-width: 620px;
}

.alp-service-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.alp-service-column {
  padding: 16px 16px 14px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(6, 40, 61, 0.96), rgba(2, 14, 24, 0.98));
  border: 1px solid rgba(127, 240, 255, 0.26);
  box-shadow: var(--alp-shadow-soft);
  position: relative;
  overflow: hidden;
}

.alp-service-column--focus {
  background: radial-gradient(circle at top left, rgba(255, 127, 107, 0.32), transparent 55%),
    linear-gradient(145deg, rgba(6, 40, 61, 0.98), rgba(2, 10, 18, 0.98));
}

.alp-service-focus-tag {
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 4px 10px;
  border-radius: var(--alp-radius-pill);
  background: rgba(255, 127, 107, 0.18);
  border: 1px solid rgba(255, 127, 107, 0.7);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--alp-color-sand);
}

.alp-service-title {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--alp-color-accent-soft);
}

.alp-service-text {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--alp-color-text-muted);
}

/* meters */

.alp-service-meter {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.alp-service-meter-label {
  font-size: 11px;
  color: var(--alp-color-text-muted);
}

.alp-service-meter-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 22, 36, 0.9);
  overflow: hidden;
}

.alp-service-meter-fill {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--alp-color-accent-soft), var(--alp-color-accent-deep));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 720ms var(--alp-ease-soft);
}

.alp-service-meter-fill--mid {
  transform-origin: left;
}

/* включаем анимацию при появлении */
.alp-animated--visible .alp-service-meter-fill {
  transform: scaleX(1);
}

/* service photos */

.alp-service-photo {
  margin-top: 8px;
}

.alp-service-photo--narrow img {
  max-height: 170px;
  object-fit: cover;
}

.alp-service-caption {
  margin-top: 4px;
  font-size: 11px;
  color: var(--alp-color-text-muted);
}

/* =========================
   SECTION 6 — DAY / NOON / NIGHT MOODS
   ========================= */

.alp-moods {
  padding-top: 60px;
}

.alp-moods-inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.alp-moods-label {
  position: relative;
  padding: 18px 14px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(1, 16, 27, 0.98), rgba(4, 36, 55, 0.96));
  box-shadow: var(--alp-shadow-soft);
}

.alp-moods-pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--alp-radius-pill);
  border: 1px solid rgba(127, 240, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.alp-moods-text {
  margin-top: 10px;
  font-size: 13px;
  color: var(--alp-color-text-muted);
}

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

.alp-mood-card {
  padding: 14px 13px;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(6, 40, 61, 0.95), rgba(1, 14, 24, 0.98));
  border: 1px solid rgba(127, 240, 255, 0.24);
  box-shadow: var(--alp-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition:
    transform var(--alp-duration-fast) var(--alp-ease-out),
    box-shadow var(--alp-duration-fast) var(--alp-ease-out),
    border-color var(--alp-duration-fast) var(--alp-ease-out);
}

.alp-mood-card--highlight {
  background: radial-gradient(circle at top, rgba(255, 127, 107, 0.22), transparent 60%),
    linear-gradient(150deg, rgba(6, 40, 61, 0.98), rgba(1, 14, 24, 0.98));
}

.alp-mood-card:hover {
  transform: translateY(-3px);
  border-color: var(--alp-color-accent-soft);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.alp-mood-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.alp-mood-tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: var(--alp-radius-pill);
  background: rgba(0, 24, 38, 0.9);
  border: 1px solid rgba(127, 240, 255, 0.3);
}

.alp-mood-title {
  margin: 0;
  font-size: 14px;
}

.alp-mood-desc {
  margin: 0;
  font-size: 13px;
  color: var(--alp-color-text-muted);
}

.alp-mood-photo {
  margin-top: 4px;
}

.alp-mood-photo img {
  max-height: 170px;
  object-fit: cover;
}

.alp-mood-caption {
  margin-top: 4px;
  font-size: 11px;
  color: var(--alp-color-text-muted);
}

/* =========================
   SECTION 7 — EDUCATION / SAFETY
   ========================= */

.alp-education {
  padding-top: 64px;
}

.alp-education-inner {
  padding: 20px 18px 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(127, 240, 255, 0.2), transparent 55%),
    linear-gradient(150deg, rgba(6, 40, 61, 0.98), rgba(1, 12, 22, 0.98));
  box-shadow: var(--alp-shadow-soft);
}

.alp-education-head {
  max-width: 640px;
  margin-bottom: 16px;
}

.alp-education-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.alp-education-step {
  padding: 12px 12px 11px;
  border-radius: 22px;
  background: rgba(0, 18, 30, 0.86);
  border: 1px solid rgba(127, 240, 255, 0.25);
}

.alp-education-step--image {
  background: linear-gradient(150deg, rgba(3, 24, 36, 0.96), rgba(0, 10, 18, 0.98));
}

.alp-education-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: var(--alp-radius-pill);
  background: rgba(127, 240, 255, 0.1);
  border: 1px solid rgba(127, 240, 255, 0.6);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.alp-education-title {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--alp-color-accent-soft);
}

.alp-education-text {
  margin: 0;
  font-size: 13px;
  color: var(--alp-color-text-muted);
}

.alp-education-photo img {
  max-height: 170px;
  object-fit: cover;
}

.alp-education-caption {
  margin-top: 4px;
  font-size: 11px;
  color: var(--alp-color-text-muted);
}

/* =========================
   ADAPTIVE — SECTIONS 5–7
   ========================= */

@media (max-width: 1024px) {
  .alp-service-columns {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .alp-moods-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  }

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

@media (max-width: 820px) {
  .alp-service-columns {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .alp-moods-label {
    order: -1;
  }

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

  .alp-education-inner {
    padding-inline: 14px;
  }

  .alp-education-timeline {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .alp-service-column {
    padding: 14px 12px;
  }

  .alp-moods-inner {
    gap: 16px;
  }

  .alp-education-timeline {
    gap: 12px;
  }
}
/* =========================
   SECTION 8 — READY KITS
   ========================= */

.alp-kits {
  padding-top: 64px;
}

.alp-kits-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.alp-kits-head {
  max-width: 640px;
}

.alp-kits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.alp-kit-card {
  position: relative;
  padding: 14px 13px 13px;
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(6, 40, 61, 0.96), rgba(1, 12, 22, 0.98));
  border: 1px solid rgba(127, 240, 255, 0.25);
  box-shadow: var(--alp-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  transition:
    transform var(--alp-duration-fast) var(--alp-ease-out),
    box-shadow var(--alp-duration-fast) var(--alp-ease-out),
    border-color var(--alp-duration-fast) var(--alp-ease-out);
}

.alp-kit-card--featured {
  background:
    radial-gradient(circle at top left, rgba(255, 127, 107, 0.25), transparent 60%),
    linear-gradient(150deg, rgba(6, 40, 61, 0.98), rgba(1, 10, 20, 0.98));
}

.alp-kit-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(127, 240, 255, 0.18), transparent 60%);
  opacity: 0;
  transform: translate3d(-20px, -20px, 0);
  pointer-events: none;
  transition: opacity var(--alp-duration-slow) var(--alp-ease-soft);
}

.alp-kit-card:hover {
  transform: translateY(-3px);
  border-color: var(--alp-color-accent-soft);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.75);
}

.alp-kit-card:hover::before {
  opacity: 1;
}

.alp-kit-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--alp-radius-pill);
  background: rgba(0, 24, 38, 0.9);
  border: 1px solid rgba(127, 240, 255, 0.4);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--alp-color-sand);
}

.alp-kit-tag--accent {
  background: rgba(255, 127, 107, 0.25);
  border-color: rgba(255, 127, 107, 0.7);
}

.alp-kit-title {
  margin: 6px 0 4px;
  font-size: 15px;
  color: var(--alp-color-accent-soft);
}

.alp-kit-text {
  margin: 0;
  font-size: 13px;
  color: var(--alp-color-text-muted);
}

.alp-kit-photo {
  margin-top: 6px;
}

.alp-kit-photo img {
  max-height: 170px;
  object-fit: cover;
}

.alp-kit-caption {
  margin-top: 4px;
  font-size: 11px;
  color: var(--alp-color-text-muted);
}

/* небольшой пульс подсветки у избранной карточки при появлении */
.alp-kit-card--featured.alp-animated--visible::before {
  animation: alp-kit-pulse 6s ease-in-out infinite;
}

@keyframes alp-kit-pulse {
  0% {
    opacity: 0.3;
    transform: translate3d(-10px, -10px, 0) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate3d(5px, 5px, 0) scale(1.04);
  }
  100% {
    opacity: 0.3;
    transform: translate3d(-10px, -10px, 0) scale(1);
  }
}

/* =========================
   SECTION 9 — REGION BAND
   ========================= */

.alp-region-band {
  padding-top: 64px;
}

.alp-region-band-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.alp-region-head {
  max-width: 640px;
}

.alp-region-strip {
  position: relative;
  border-radius: 28px;
  padding: 16px 16px 14px;
  background:
    linear-gradient(120deg, rgba(6, 40, 61, 0.96), rgba(1, 12, 22, 0.98)),
    radial-gradient(circle at top, rgba(127, 240, 255, 0.2), transparent 60%);
  box-shadow: var(--alp-shadow-soft);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.alp-region-strip::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 240, 255, 0.5), transparent);
  opacity: 0.4;
  pointer-events: none;
}

.alp-region-card {
  position: relative;
  padding: 10px 10px 9px;
  border-radius: 20px;
  background: rgba(0, 20, 32, 0.9);
  border: 1px solid rgba(127, 240, 255, 0.25);
  display: flex;
  flex-direction: column;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.alp-region-card--accent {
  background: radial-gradient(circle at top, rgba(255, 127, 107, 0.22), transparent 60%),
    rgba(0, 20, 32, 0.93);
}

.alp-region-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.alp-region-city {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--alp-color-accent-soft);
}

.alp-region-note {
  font-size: 12px;
  color: var(--alp-color-text-muted);
}

.alp-region-text {
  margin: 0;
  font-size: 13px;
  color: var(--alp-color-text-muted);
}

.alp-region-photo {
  margin-top: 4px;
}

.alp-region-photo img {
  max-height: 160px;
  object-fit: cover;
}

.alp-region-caption {
  margin-top: 4px;
  font-size: 11px;
  color: var(--alp-color-text-muted);
}

/* =========================
   SECTION 10 — FAQ FAN
   ========================= */

.alp-faq-fan {
  padding-top: 64px;
}

.alp-faq-fan-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: stretch;
}

.alp-faq-intro {
  padding: 18px 16px 16px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(6, 40, 61, 0.98), rgba(1, 14, 24, 0.98));
  box-shadow: var(--alp-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alp-faq-photo {
  margin-top: 4px;
}

.alp-faq-photo img {
  max-height: 190px;
  object-fit: cover;
}

.alp-faq-caption {
  margin-top: 4px;
  font-size: 11px;
  color: var(--alp-color-text-muted);
}

.alp-faq-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.alp-faq-item {
  position: relative;
  padding: 12px 12px 10px;
  border-radius: 22px;
  background: rgba(0, 18, 30, 0.9);
  border: 1px solid rgba(127, 240, 255, 0.25);
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) auto;
  gap: 10px;
  align-items: center;
  overflow: hidden;
}

.alp-faq-item--accent {
  background: radial-gradient(circle at top left, rgba(255, 127, 107, 0.24), transparent 60%),
    rgba(0, 18, 30, 0.94);
}

.alp-faq-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.alp-faq-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: var(--alp-radius-pill);
  background: rgba(127, 240, 255, 0.12);
  border: 1px solid rgba(127, 240, 255, 0.6);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.alp-faq-title {
  margin: 0;
  font-size: 14px;
  color: var(--alp-color-accent-soft);
}

.alp-faq-text {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--alp-color-text-muted);
}

.alp-faq-mini-photo img {
  max-height: 80px;
  object-fit: cover;
  border-radius: 16px;
}

/* лёгкий веерный эффект при появлении */

.alp-animated--visible.alp-faq-item {
  transform-origin: center;
  animation: alp-faq-fan 520ms var(--alp-ease-soft);
}

@keyframes alp-faq-fan {
  0% {
    transform: translateY(16px) rotate(-1.5deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
}

/* =========================
   ADAPTIVE — SECTIONS 8–10
   ========================= */

@media (max-width: 1024px) {
  .alp-kits-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .alp-region-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .alp-region-strip::before {
    display: none;
  }

  .alp-faq-fan-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .alp-faq-list {
    grid-template-rows: none;
  }
}

@media (max-width: 820px) {
  .alp-kits-inner {
    gap: 18px;
  }

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

  .alp-faq-intro {
    padding-inline: 14px;
  }
}

@media (max-width: 600px) {
  .alp-region-strip {
    padding: 14px 12px 12px;
  }

  .alp-faq-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .alp-faq-mini-photo {
    justify-self: flex-start;
    max-width: 160px;
  }
}
/* =========================
   SECTION 11 — DAILY ROUTINE
   ========================= */

.alp-routine {
  padding-top: 64px;
}

.alp-routine-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.alp-routine-main {
  padding: 20px 18px 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(127, 240, 255, 0.22), transparent 60%),
    linear-gradient(150deg, rgba(6, 40, 61, 0.98), rgba(1, 12, 22, 0.98));
  box-shadow: var(--alp-shadow-soft);
}

.alp-routine-steps {
  margin-top: 14px;
  position: relative;
  padding-left: 10px;
}

.alp-routine-steps::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--alp-color-accent-soft), transparent);
  opacity: 0.6;
}

.alp-routine-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.alp-routine-step:last-child {
  margin-bottom: 0;
}

.alp-routine-step-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, #7ff0ff, #2ad0ff);
  color: #001019;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(127, 240, 255, 0.7);
}

.alp-routine-step-title {
  margin: 0 0 2px;
  font-size: 14px;
  color: var(--alp-color-accent-soft);
}

.alp-routine-step-text {
  margin: 0;
  font-size: 13px;
  color: var(--alp-color-text-muted);
}

.alp-routine-side {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  justify-items: flex-end;
}

.alp-routine-photo {
  padding: 9px;
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(6, 40, 61, 0.96), rgba(1, 10, 20, 0.98));
  box-shadow: var(--alp-shadow-soft);
}

.alp-routine-photo--top {
  max-width: 260px;
}

.alp-routine-photo--bottom {
  max-width: 230px;
  transform: translateX(-18px);
}

.alp-routine-caption {
  margin-top: 4px;
  font-size: 11px;
  color: var(--alp-color-text-muted);
}

/* =========================
   SECTION 12 — pin co FUN ARC
   ========================= */

.alp-fun-arc {
  padding-top: 64px;
}

.alp-fun-arc-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.alp-fun-arc-head {
  max-width: 640px;
}

.alp-fun-arc-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 8px;
}

.alp-fun-arc-track::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: -6px;
  height: 70px;
  border-radius: 70px;
  border: 1px dashed rgba(127, 240, 255, 0.3);
  border-bottom: none;
  pointer-events: none;
}

.alp-fun-card {
  padding: 14px 13px 12px;
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(6, 40, 61, 0.96), rgba(1, 12, 22, 0.98));
  border: 1px solid rgba(127, 240, 255, 0.25);
  box-shadow: var(--alp-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform-origin: bottom center;
}

.alp-fun-card--left {
  transform: rotate(-3deg);
}

.alp-fun-card--center {
  transform: translateY(-10px);
}

.alp-fun-card--right {
  transform: rotate(3deg);
}

.alp-animated--visible.alp-fun-card--left,
.alp-animated--visible.alp-fun-card--right {
  animation: alp-fun-swing 480ms var(--alp-ease-soft);
}

@keyframes alp-fun-swing {
  0% {
    transform: translateY(12px) rotate(0deg);
    opacity: 0;
  }
  60% {
    transform: translateY(-4px) rotate(3deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.alp-fun-card-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.alp-fun-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 3px 9px;
  border-radius: var(--alp-radius-pill);
  background: rgba(0, 24, 38, 0.9);
  border: 1px solid rgba(127, 240, 255, 0.35);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.alp-fun-title {
  margin: 2px 0 0;
  font-size: 14px;
}

.alp-fun-text {
  margin: 0;
  font-size: 13px;
  color: var(--alp-color-text-muted);
}

.alp-fun-photo {
  margin-top: 4px;
}

.alp-fun-photo img {
  max-height: 170px;
  object-fit: cover;
}

.alp-fun-caption {
  margin-top: 4px;
  font-size: 11px;
  color: var(--alp-color-text-muted);
}

/* =========================
   SECTION 13 — TEXTURE WALL
   ========================= */

.alp-texture-wall {
  padding-top: 64px;
}

.alp-texture-wall-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr);
  gap: 22px;
  align-items: stretch;
}

.alp-texture-copy {
  padding: 20px 18px 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(127, 240, 255, 0.25), transparent 58%),
    linear-gradient(150deg, rgba(6, 40, 61, 0.98), rgba(1, 12, 22, 0.98));
  box-shadow: var(--alp-shadow-soft);
}

.alp-texture-text {
  margin-top: 6px;
  font-size: 13px;
  color: var(--alp-color-text-muted);
}

.alp-texture-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.alp-texture-card {
  padding: 9px;
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(6, 40, 61, 0.96), rgba(1, 10, 20, 0.98));
  box-shadow: var(--alp-shadow-soft);
}

.alp-texture-card--main {
  grid-column: 1 / -1;
}

.alp-texture-card--shadow {
  transform: translateY(-6px);
}

.alp-texture-card--stairs {
  transform: translateY(6px);
}

.alp-texture-caption {
  margin-top: 4px;
  font-size: 11px;
  color: var(--alp-color-text-muted);
}

/* =========================
   ADAPTIVE — SECTIONS 11–13
   ========================= */

@media (max-width: 1024px) {
  .alp-routine-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  }

  .alp-fun-arc-track {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .alp-fun-arc-track::before {
    display: none;
  }

  .alp-texture-wall-inner {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .alp-texture-card--shadow,
  .alp-texture-card--stairs {
    transform: none;
  }
}

@media (max-width: 820px) {
  .alp-routine-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .alp-routine-side {
    justify-items: flex-start;
  }

  .alp-routine-photo--bottom {
    transform: translateX(0);
  }

  .alp-fun-card--left,
  .alp-fun-card--right,
  .alp-fun-card--center {
    transform: none;
  }
}

@media (max-width: 600px) {
  .alp-routine-main {
    padding: 18px 14px 16px;
  }

  .alp-texture-copy {
    padding: 18px 14px 16px;
  }
}
/* =========================
   SECTION 14 — SEASON CALENDAR
   ========================= */

.alp-season {
  padding-top: 64px;
}

.alp-season-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
}

.alp-season-copy {
  padding: 20px 18px 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(127, 240, 255, 0.24), transparent 56%),
    linear-gradient(150deg, rgba(6, 40, 61, 0.98), rgba(1, 12, 22, 0.98));
  box-shadow: var(--alp-shadow-soft);
}

.alp-season-text {
  margin-top: 6px;
  font-size: 13px;
  color: var(--alp-color-text-muted);
}

.alp-season-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.alp-season-tag {
  padding: 5px 11px;
  border-radius: var(--alp-radius-pill);
  background: rgba(0, 22, 36, 0.9);
  border: 1px solid rgba(127, 240, 255, 0.4);
  font-size: 11px;
  color: var(--alp-color-sand);
}

.alp-season-wheel {
  position: relative;
  padding: 18px 16px 16px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(127, 240, 255, 0.22), transparent 60%),
    linear-gradient(150deg, rgba(6, 40, 61, 0.98), rgba(1, 10, 20, 0.98));
  box-shadow: var(--alp-shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr);
  justify-items: center;
  gap: 12px;
}

.alp-season-ring {
  position: relative;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 1px dashed rgba(127, 240, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.alp-season-core {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, #7ff0ff, #2ad0ff);
  color: #001019;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px rgba(127, 240, 255, 0.8);
}

.alp-season-chip {
  position: absolute;
  padding: 4px 9px;
  border-radius: var(--alp-radius-pill);
  background: rgba(0, 22, 36, 0.9);
  border: 1px solid rgba(127, 240, 255, 0.5);
  font-size: 11px;
}

.alp-season-chip--spring {
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.alp-season-chip--summer {
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
}

.alp-season-chip--autumn {
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.alp-season-chip--winter {
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
}

.alp-season-photo img {
  max-height: 170px;
  object-fit: cover;
}

.alp-season-caption {
  margin-top: 4px;
  font-size: 11px;
  color: var(--alp-color-text-muted);
}

/* =========================
   SECTION 15 — CONTACT WAVE
   ========================= */

.alp-contact-wave {
  padding-top: 64px;
}

.alp-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.alp-contact-main {
  position: relative;
  padding: 20px 18px 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(127, 240, 255, 0.2), transparent 60%),
    radial-gradient(circle at bottom right, rgba(255, 127, 107, 0.18), transparent 60%),
    linear-gradient(150deg, rgba(6, 40, 61, 0.98), rgba(1, 12, 22, 0.98));
  box-shadow: var(--alp-shadow-soft);
  overflow: hidden;
}

.alp-contact-main::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 10%, rgba(127, 240, 255, 0.7), transparent 60%);
  opacity: 0.35;
  pointer-events: none;
}

.alp-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 16px;
  margin-top: 12px;
}

.alp-contact-subtitle {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--alp-color-accent-soft);
}

.alp-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--alp-color-text-muted);
}

.alp-contact-list li + li {
  margin-top: 4px;
}

.alp-contact-text {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--alp-color-text-muted);
}

.alp-contact-side {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.alp-contact-photo {
  padding: 10px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(6, 40, 61, 0.96), rgba(1, 10, 20, 0.98));
  box-shadow: var(--alp-shadow-soft);
  max-width: 280px;
  margin-left: auto;
}

.alp-contact-photo img {
  max-height: 190px;
  object-fit: cover;
}

.alp-contact-caption {
  margin-top: 4px;
  font-size: 11px;
  color: var(--alp-color-text-muted);
}

/* =========================
   ADAPTIVE — SECTIONS 14–15
   ========================= */

@media (max-width: 1024px) {
  .alp-season-inner {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

@media (max-width: 820px) {
  .alp-season-inner,
  .alp-contact-inner {
    gap: 18px;
  }

  .alp-contact-photo {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .alp-season-copy,
  .alp-contact-main {
    padding: 18px 14px 16px;
  }

  .alp-season-ring {
    width: 170px;
    height: 170px;
  }
}
