/**
 * clubarch.html — темний преміум-landing (референс: dark + gold, notched cards, timeline)
 */
body.clubarch-page {
  --ca-bg: #1b1410;
  --ca-bg-elevated: #261e19;
  --ca-bg-card: #e8e4de;
  --ca-gold: #d4c5a9;
  --ca-gold-dim: #a89878;
  --ca-gold-deep: #856739;
  --ca-gold-bright: #f3e2ad;
  --ca-text-on-dark: #f4f2ee;
  --ca-text-muted-dark: rgba(244, 242, 238, 0.58);
  --ca-text-on-card: #1a1d24;
  --ca-text-muted-card: #4a4f5c;
  --ca-line: rgba(212, 197, 169, 0.28);
  --ca-gold-border: rgba(243, 226, 173, 0.45);
  --ca-font-ui: "Inter", system-ui, sans-serif;
  --ca-font-display: "Inter", system-ui, sans-serif;
  --ca-font-serif: "Noto Serif", Georgia, serif;
  --ca-notch: 52px;
  --ca-signature-grad: linear-gradient(135deg, #856739 0%, #c9a66b 45%, #f3e2ad 100%);
  --ca-gold-glow: 0 0 32px rgba(243, 226, 173, 0.22), 0 0 64px rgba(133, 103, 57, 0.15);
}

/* Витончений скролбар (сторінка clubarch) */
html.clubarch-html {
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(186, 162, 118, 0.55) rgba(22, 17, 14, 0.92);
}

html.clubarch-html::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

html.clubarch-html::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(32, 26, 22, 0.95), rgba(18, 14, 12, 0.98));
  border-radius: 100px;
}

html.clubarch-html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(232, 214, 168, 0.5), rgba(110, 86, 52, 0.55));
  border-radius: 100px;
  border: 1px solid rgba(24, 19, 16, 0.6);
  background-clip: padding-box;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.12);
}

html.clubarch-html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(243, 226, 173, 0.65), rgba(130, 100, 60, 0.65));
}

html.clubarch-html::-webkit-scrollbar-corner {
  background: transparent;
}

/* Логотип у лівому верхньому куті (ПК і мобільний) */
body.clubarch-page .clubarch-header-logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  padding-top: max(14px, env(safe-area-inset-top, 0px));
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: max(18px, env(safe-area-inset-left, 0px));
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.5s ease;
}

body.clubarch-page .clubarch-header-logo:hover {
  opacity: 0.88;
}

body.clubarch-page .clubarch-header-logo:focus-visible {
  outline: 2px solid rgba(243, 226, 173, 0.6);
  outline-offset: 4px;
  border-radius: 4px;
}

body.clubarch-page .clubarch-header-logo img {
  height: clamp(34px, 13vw, 54px);
  width: auto;
  max-width: min(210px, calc(100vw - 100px));
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 20px rgba(243, 226, 173, 0.12));
}

body.clubarch-page.offcanvas .clubarch-header-logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(0);
}

/* Темна зона: напівпрозорий arch/bg.webp (::before), вуалі поверх (::after) */
body.clubarch-page #oliven-main {
  position: relative;
  isolation: isolate;
  background-color: var(--ca-bg);
}

body.clubarch-page #oliven-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../arch/bg.webp");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center 32%;
  opacity: 0.45;
}

body.clubarch-page #oliven-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 95% 45% at 50% 0%, rgba(20, 15, 12, 0.38) 0%, transparent 58%),
    linear-gradient(
      180deg,
      rgba(26, 20, 16, 0.58) 0%,
      rgba(28, 21, 17, 0.22) 32%,
      rgba(28, 21, 17, 0.26) 58%,
      rgba(22, 17, 14, 0.62) 100%
    ),
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(100, 75, 48, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse 70% 50% at 0% 60%, rgba(60, 72, 110, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 197, 169, 0.04), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(90, 100, 130, 0.06) 0%, transparent);
  background-repeat: no-repeat;
  background-size:
    100% 42%,
    auto,
    auto,
    auto,
    auto,
    auto;
  background-position:
    center top,
    center,
    center,
    center,
    center,
    center;
}

body.clubarch-page #oliven-main > * {
  position: relative;
  z-index: 2;
}

body.clubarch-page #oliven-main .story.clubarch-dark-surface {
  background: transparent;
  font-family: var(--ca-font-ui);
  color: var(--ca-text-on-dark);
  padding-bottom: 48px;
}

body.clubarch-page .clubarch-container-tight {
  max-width: 1140px;
  margin: 0 auto;
  padding: 32px clamp(20px, 5vw, 28px) 56px;
}

/* ——— Герой (асиметричний) ——— */
body.clubarch-page .clubarch-hero-dark {
  position: relative;
  min-height: min(88vh, 820px);
  padding: clamp(80px, 11vw, 104px) 0 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--ca-bg);
  background-image:
    radial-gradient(ellipse 90% 70% at 70% 20%, rgba(133, 103, 57, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(80, 95, 140, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, rgba(28, 21, 17, 0.2) 0%, var(--ca-bg) 100%);
  border-bottom: 1px solid var(--ca-line);
}

body.clubarch-page .clubarch-hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

body.clubarch-page .clubarch-hero-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 15%, rgba(243, 226, 173, 0.06) 0%, transparent 28%),
    radial-gradient(circle at 20% 40%, rgba(212, 197, 169, 0.04) 0%, transparent 22%);
}

body.clubarch-page .clubarch-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Секційні зони з м’якими градієнтами */
body.clubarch-page .clubarch-zone {
  position: relative;
  margin: 0 0 8px;
  padding: 20px clamp(12px, 3vw, 20px) 28px;
  border-radius: 16px;
  isolation: isolate;
}

body.clubarch-page .clubarch-zone--upper {
  background:
    radial-gradient(ellipse 100% 80% at 50% -5%, rgba(212, 197, 169, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(90, 70, 50, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 90%, rgba(70, 85, 120, 0.08) 0%, transparent 50%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.clubarch-page .clubarch-zone--mid {
  margin-top: 12px;
  padding-top: 28px;
  padding-bottom: 32px;
  background:
    radial-gradient(ellipse 85% 60% at 50% 35%, rgba(133, 103, 57, 0.16) 0%, transparent 58%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(243, 226, 173, 0.06) 0%, transparent 45%),
    linear-gradient(165deg, rgba(20, 24, 32, 0.35) 0%, transparent 55%);
}

body.clubarch-page .clubarch-zone--mid::before {
  content: "";
  display: block;
  height: 1px;
  margin: -8px auto 20px;
  max-width: min(280px, 80%);
  background: linear-gradient(90deg, transparent, rgba(243, 226, 173, 0.35), transparent);
  box-shadow: 0 0 20px rgba(243, 226, 173, 0.12);
}

body.clubarch-page .clubarch-zone--depth {
  margin-top: 16px;
  padding-top: 32px;
  padding-bottom: 16px;
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(80, 62, 42, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 60% 55% at 0% 50%, rgba(50, 60, 95, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 55% 50% at 100% 80%, rgba(133, 103, 57, 0.1) 0%, transparent 48%);
  box-shadow: inset 0 1px 0 rgba(243, 226, 173, 0.04);
}

/* Ряд золотих крапок («сузір'я») */
body.clubarch-page .clubarch-dots-row {
  width: min(200px, 50vw);
  height: 6px;
  margin: 0 0 16px;
  background-image: radial-gradient(circle, var(--ca-gold-bright) 1.5px, transparent 2px);
  background-size: 18px 6px;
  background-repeat: repeat-x;
  background-position: 0 50%;
  opacity: 0.85;
  filter: drop-shadow(0 0 6px rgba(243, 226, 173, 0.35));
}

body.clubarch-page .clubarch-hero-copy .clubarch-dots-row {
  margin-left: 0;
}

body.clubarch-page .clubarch-dots-row--spread {
  width: min(160px, 40vw);
  margin: 12px 0;
}

body.clubarch-page .clubarch-dots-row--sm {
  width: 100px;
  margin-bottom: 8px;
  justify-self: start;
}

body.clubarch-page .clubarch-hero-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--ca-signature-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin: 0 0 20px;
}

body.clubarch-page .clubarch-hero-title {
  font-family: var(--ca-font-display);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--ca-text-on-dark);
  margin: 0 0 24px;
  max-width: 14ch;
}

body.clubarch-page .clubarch-hero-title .clubarch-gold {
  display: block;
  background: var(--ca-signature-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 24px rgba(243, 226, 173, 0.12));
}

body.clubarch-page .clubarch-hero-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ca-text-muted-dark);
  max-width: 28rem;
  margin: 0 0 32px;
}

body.clubarch-page .clubarch-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 28rem;
}

@media (min-width: 992px) {
  body.clubarch-page .clubarch-hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }
}

body.clubarch-page .clubarch-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1208;
  background: var(--ca-signature-grad);
  background-size: 200% 200%;
  border: 1px solid rgba(243, 226, 173, 0.35);
  box-shadow: var(--ca-gold-glow), 0 14px 40px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease,
    background-position 0.8s ease;
}

body.clubarch-page .clubarch-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08);
  background-position: 100% 50%;
  box-shadow: 0 0 44px rgba(243, 226, 173, 0.38), 0 20px 52px rgba(0, 0, 0, 0.52);
}

body.clubarch-page button.clubarch-btn-primary {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: inherit;
}

body.clubarch-page .clubarch-hero-visual {
  position: relative;
  margin-top: 40px;
}

@media (min-width: 992px) {
  body.clubarch-page .clubarch-hero-visual {
    margin-top: 0;
  }
}

body.clubarch-page .clubarch-hero-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  margin-left: auto;
  max-width: 440px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px var(--ca-gold-border),
    var(--ca-gold-glow);
}

body.clubarch-page .clubarch-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

body.clubarch-page .clubarch-hero-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 197, 169, 0.35) 0%, transparent 70%);
  top: -40px;
  right: -40px;
  pointer-events: none;
  filter: blur(4px);
  z-index: 2;
}

/* ——— Герой: преміальний слайдер (3 фото arch/) ——— */
body.clubarch-page .clubarch-hero-img-wrap--slider {
  isolation: isolate;
}

body.clubarch-page .clubarch-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

body.clubarch-page .clubarch-hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  filter: blur(10px) brightness(0.72) saturate(0.85);
  transform: scale(1.04);
  transition:
    opacity 1.2s cubic-bezier(0.4, 0, 0.15, 1),
    filter 1.05s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1.15s cubic-bezier(0.4, 0, 0.15, 1);
  pointer-events: none;
  z-index: 0;
}

body.clubarch-page .clubarch-hero-slide.is-active {
  opacity: 1;
  filter: blur(0) brightness(1) saturate(0.92);
  transform: scale(1);
  z-index: 1;
}

body.clubarch-page .clubarch-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
}

body.clubarch-page .clubarch-hero-slide.is-active img {
  animation: clubarch-hero-ken 16s ease-in-out infinite alternate;
}

body.clubarch-page .clubarch-hero-slide:not(.is-active) img {
  animation: none;
  transform: scale(1);
}

@keyframes clubarch-hero-ken {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-1.2%, -0.8%);
  }
}

body.clubarch-page .clubarch-hero-slider-veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow:
    inset 0 0 100px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(243, 226, 173, 0.14),
    inset 0 12px 40px rgba(243, 226, 173, 0.06);
  background: linear-gradient(
    155deg,
    rgba(243, 226, 173, 0.09) 0%,
    transparent 38%,
    transparent 58%,
    rgba(12, 10, 8, 0.35) 100%
  );
}

body.clubarch-page .clubarch-hero-slider-sparkles {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255, 248, 220, 0.45) 0%, transparent 2px),
    radial-gradient(circle at 78% 18%, rgba(243, 226, 173, 0.35) 0%, transparent 1.5px),
    radial-gradient(circle at 62% 72%, rgba(255, 255, 255, 0.2) 0%, transparent 2px),
    radial-gradient(circle at 30% 68%, rgba(243, 226, 173, 0.25) 0%, transparent 1.5px),
    radial-gradient(circle at 88% 55%, rgba(255, 250, 235, 0.3) 0%, transparent 1.5px);
  background-size: 100% 100%;
  animation: clubarch-hero-sparkle 10s ease-in-out infinite;
}

@keyframes clubarch-hero-sparkle {
  0%,
  100% {
    opacity: 0.45;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.72;
    transform: translate(1%, -0.5%);
  }
}

body.clubarch-page .clubarch-hero-slider-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 14px 16px;
  background: linear-gradient(to top, rgba(4, 5, 8, 0.72) 0%, rgba(4, 5, 8, 0.2) 55%, transparent 100%);
  pointer-events: none;
}

body.clubarch-page .clubarch-hero-slider-ui .clubarch-hero-slider-dots,
body.clubarch-page .clubarch-hero-slider-ui .clubarch-hero-slider-dot {
  pointer-events: auto;
}

body.clubarch-page .clubarch-hero-slider-progress {
  width: min(220px, 70%);
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}

body.clubarch-page .clubarch-hero-slider-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: var(--ca-signature-grad);
  box-shadow: 0 0 14px rgba(243, 226, 173, 0.45);
}

body.clubarch-page .clubarch-hero-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

body.clubarch-page .clubarch-hero-slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(243, 226, 173, 0.45);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

body.clubarch-page .clubarch-hero-slider-dot:hover {
  border-color: rgba(243, 226, 173, 0.85);
  transform: scale(1.15);
}

body.clubarch-page .clubarch-hero-slider-dot:focus-visible {
  outline: 2px solid rgba(243, 226, 173, 0.65);
  outline-offset: 3px;
}

body.clubarch-page .clubarch-hero-slider-dot.is-active {
  background: linear-gradient(135deg, #c9a66b, #f3e2ad);
  border-color: rgba(255, 250, 235, 0.65);
  box-shadow: 0 0 16px rgba(243, 226, 173, 0.55), 0 0 0 2px rgba(24, 19, 16, 0.5);
  transform: scale(1.2);
}

@media (prefers-reduced-motion: reduce) {
  body.clubarch-page .clubarch-hero-slide,
  body.clubarch-page .clubarch-hero-slide.is-active {
    transition: none;
    filter: none;
    transform: none;
    opacity: 0;
  }

  body.clubarch-page .clubarch-hero-slide.is-active {
    opacity: 1;
  }

  body.clubarch-page .clubarch-hero-slide.is-active img,
  body.clubarch-page .clubarch-hero-slide:not(.is-active) img {
    animation: none !important;
    transform: none !important;
  }

  body.clubarch-page .clubarch-hero-slider-sparkles {
    animation: none;
    opacity: 0.35;
  }
}

body.clubarch-page .clubarch-scroll-hint {
  color: var(--ca-text-muted-dark);
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

body.clubarch-page .clubarch-scroll-hint:hover {
  color: var(--ca-gold-bright);
}

/* Мобільний: стрілка під кнопкою */
body.clubarch-page .clubarch-scroll-hint--inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: auto;
  bottom: auto;
  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(243, 226, 173, 0.32);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 24px rgba(243, 226, 173, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: clubarch-bounce-inline 2.4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@media (min-width: 992px) {
  body.clubarch-page .clubarch-scroll-hint--inline {
    display: none !important;
  }
}

/* Десктоп: стрілка внизу екрана героя */
body.clubarch-page .clubarch-scroll-hint--floating {
  display: none;
}

@media (min-width: 992px) {
  body.clubarch-page .clubarch-scroll-hint--floating {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 28px;
    left: 50%;
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 50%;
    border: 1px solid rgba(243, 226, 173, 0.28);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 0 28px rgba(243, 226, 173, 0.1);
    transform: translateX(-50%);
    animation: clubarch-bounce-floating 2.4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  }
}

@keyframes clubarch-bounce-floating {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.65; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

@keyframes clubarch-bounce-inline {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* Появи при скролі */
body.clubarch-page .clubarch-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

body.clubarch-page .clubarch-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Варіанти появи (поєднуються з .clubarch-reveal) */
body.clubarch-page .clubarch-reveal.clubarch-reveal--soft {
  transform: translateY(22px);
  transition-duration: 0.88s, 0.88s;
}

body.clubarch-page .clubarch-reveal.clubarch-reveal--scale {
  transform: translateY(20px) scale(0.96);
  transform-origin: center top;
}
body.clubarch-page .clubarch-reveal.clubarch-reveal--scale.is-visible {
  transform: scale(1);
}

body.clubarch-page .clubarch-reveal.clubarch-reveal--slide-left {
  transform: translateX(-36px);
}
body.clubarch-page .clubarch-reveal.clubarch-reveal--slide-left.is-visible {
  transform: translateX(0);
}

body.clubarch-page .clubarch-reveal.clubarch-reveal--slide-right {
  transform: translateX(36px);
}
body.clubarch-page .clubarch-reveal.clubarch-reveal--slide-right.is-visible {
  transform: translateX(0);
}

body.clubarch-page .clubarch-reveal.clubarch-reveal--rise {
  transform: translateY(48px) scale(0.98);
  filter: blur(4px);
  transition:
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
body.clubarch-page .clubarch-reveal.clubarch-reveal--rise.is-visible {
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  body.clubarch-page .clubarch-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    filter: none;
  }

  body.clubarch-page .clubarch-scroll-hint--inline,
  body.clubarch-page .clubarch-scroll-hint--floating {
    animation: none;
  }
}

/* Плавніші входи з animate.css для героя */
body.clubarch-page .animate-box.animated {
  animation-duration: 1.15s !important;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* ——— Картка з вирубкою (кут 45°) ——— */
body.clubarch-page .clubarch-notch-card {
  position: relative;
  background: var(--ca-bg-card);
  color: var(--ca-text-on-card);
  padding: clamp(24px, 4vw, 40px) clamp(24px, 4vw, 40px) clamp(24px, 4vw, 40px) clamp(26px, 4.5vw, 44px);
  margin-bottom: 28px;
  clip-path: polygon(
    var(--ca-notch) 0%,
    100% 0%,
    100% 100%,
    0% 100%,
    0% var(--ca-notch)
  );
  /* зовнішня тінь + плавна внутрішня «віньєтка» по краях (узгоджено зі скосом) */
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 2px 12px rgba(255, 255, 255, 0.18),
    inset 14px 0 48px -18px rgba(58, 50, 42, 0.11),
    inset -14px 0 48px -18px rgba(58, 50, 42, 0.11),
    inset 0 22px 56px -24px rgba(72, 62, 50, 0.12),
    inset 0 -16px 40px -12px rgba(88, 74, 58, 0.09);
  border: 1px solid rgba(243, 226, 173, 0.38);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s ease, border-color 0.45s ease;
}

/* Темна градієнтна тінь у зоні скошеного верхнього лівого кута («згин») */
body.clubarch-page .clubarch-notch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  clip-path: inherit;
  background:
    linear-gradient(
      128deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) max(8%, calc(var(--ca-notch) * 0.2)),
      rgba(48, 40, 34, 0.16) calc(var(--ca-notch) * 0.72),
      rgba(32, 27, 22, 0.22) calc(var(--ca-notch) * 1.05),
      rgba(48, 40, 34, 0.12) calc(var(--ca-notch) * 1.45),
      rgba(48, 40, 34, 0) calc(var(--ca-notch) * 2.1)
    ),
    radial-gradient(
      ellipse 135% 135% at 0% 0%,
      rgba(42, 35, 30, 0.26) 0%,
      rgba(42, 35, 30, 0.1) 32%,
      transparent 62%
    );
}

body.clubarch-page .clubarch-notch-card > * {
  position: relative;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  body.clubarch-page .clubarch-notch-card:hover {
    transform: translateY(-3px);
    box-shadow:
      0 32px 72px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      inset 0 2px 14px rgba(255, 255, 255, 0.22),
      inset 16px 0 52px -18px rgba(58, 50, 42, 0.13),
      inset -16px 0 52px -18px rgba(58, 50, 42, 0.13),
      inset 0 24px 60px -24px rgba(72, 62, 50, 0.14),
      inset 0 -18px 44px -12px rgba(88, 74, 58, 0.1);
  }
}

body.clubarch-page .clubarch-notch-card p,
body.clubarch-page .clubarch-notch-card li {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ca-text-muted-card);
}

body.clubarch-page .clubarch-notch-card p strong,
body.clubarch-page .clubarch-notch-card li strong {
  color: var(--ca-text-on-card);
}

body.clubarch-page .clubarch-section-title {
  font-family: var(--ca-font-serif);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ca-signature-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin: 48px 0 28px;
  text-align: center;
  filter: drop-shadow(0 1px 12px rgba(243, 226, 173, 0.08));
}

body.clubarch-page .clubarch-section-title::before {
  content: "";
  display: block;
  width: 72px;
  height: 6px;
  margin: 0 auto 20px;
  background-image: radial-gradient(circle, var(--ca-gold-bright) 1.5px, transparent 2px);
  background-size: 14px 6px;
  opacity: 0.75;
}

body.clubarch-page .clubarch-section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--ca-signature-grad);
  margin: 16px auto 0;
  opacity: 0.85;
  box-shadow: 0 0 12px rgba(243, 226, 173, 0.25);
}

/* ——— Горизонтальний таймлайн ——— */
body.clubarch-page .clubarch-timeline-wrap {
  margin: 0 0 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(186, 162, 118, 0.45) rgba(26, 20, 17, 0.9);
}

body.clubarch-page .clubarch-timeline-wrap::-webkit-scrollbar {
  height: 4px;
}

body.clubarch-page .clubarch-timeline-wrap::-webkit-scrollbar-track {
  background: rgba(28, 21, 17, 0.85);
  border-radius: 100px;
}

body.clubarch-page .clubarch-timeline-wrap::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(110, 86, 52, 0.6), rgba(200, 178, 130, 0.45));
  border-radius: 100px;
}

body.clubarch-page .clubarch-timeline-wrap.is-visible .clubarch-tl-node {
  animation: clubarch-node-pop 0.75s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

body.clubarch-page .clubarch-timeline-wrap.is-visible .clubarch-tl-step:nth-child(1) .clubarch-tl-node { animation-delay: 0.04s; }
body.clubarch-page .clubarch-timeline-wrap.is-visible .clubarch-tl-step:nth-child(2) .clubarch-tl-node { animation-delay: 0.1s; }
body.clubarch-page .clubarch-timeline-wrap.is-visible .clubarch-tl-step:nth-child(3) .clubarch-tl-node { animation-delay: 0.16s; }
body.clubarch-page .clubarch-timeline-wrap.is-visible .clubarch-tl-step:nth-child(4) .clubarch-tl-node { animation-delay: 0.22s; }
body.clubarch-page .clubarch-timeline-wrap.is-visible .clubarch-tl-step:nth-child(5) .clubarch-tl-node { animation-delay: 0.28s; }
body.clubarch-page .clubarch-timeline-wrap.is-visible .clubarch-tl-step:nth-child(6) .clubarch-tl-node { animation-delay: 0.34s; }
body.clubarch-page .clubarch-timeline-wrap.is-visible .clubarch-tl-step:nth-child(7) .clubarch-tl-node { animation-delay: 0.4s; }

@keyframes clubarch-node-pop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.clubarch-page .clubarch-timeline-wrap.is-visible .clubarch-tl-node {
    animation: none;
  }
}

body.clubarch-page .clubarch-timeline {
  position: relative;
  min-width: 720px;
  padding: 56px 16px 48px;
}

body.clubarch-page .clubarch-timeline-track {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 0;
  margin-top: 0;
  border-top: 2px dashed rgba(243, 226, 173, 0.35);
  box-shadow: 0 0 20px rgba(243, 226, 173, 0.08);
  background: linear-gradient(90deg, transparent, rgba(243, 226, 173, 0.06), transparent);
}

body.clubarch-page .clubarch-timeline-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

body.clubarch-page .clubarch-tl-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 104px;
  gap: 10px;
}

body.clubarch-page .clubarch-tl-node {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid transparent;
  background-image: linear-gradient(var(--ca-bg-elevated), var(--ca-bg-elevated)), var(--ca-signature-grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: var(--ca-gold-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 5px rgba(24, 19, 16, 0.95),
    0 0 20px rgba(243, 226, 173, 0.2);
}

body.clubarch-page .clubarch-tl-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ca-text-muted-dark);
  line-height: 1.35;
  max-width: 96px;
}

body.clubarch-page .clubarch-timeline-card {
  margin-top: 8px;
}

/* ——— Заголовки всередині карток (як clubarch-section-title) ——— */
body.clubarch-page .clubarch-notch-card .clubarch-card-head {
  font-family: var(--ca-font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.35;
  background: var(--ca-signature-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin: 0 0 18px;
  padding-top: 2px;
  filter: drop-shadow(0 1px 10px rgba(243, 226, 173, 0.12));
}

body.clubarch-page .clubarch-notch-card .clubarch-card-head::before {
  content: "";
  display: block;
  width: 72px;
  height: 6px;
  margin: 0 0 16px;
  background-image: radial-gradient(circle, var(--ca-gold-bright) 1.5px, transparent 2px);
  background-size: 14px 6px;
  background-repeat: repeat-x;
  background-position: 0 50%;
  opacity: 0.8;
}

body.clubarch-page .clubarch-notch-card .clubarch-card-head::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--ca-signature-grad);
  margin: 14px 0 0;
  opacity: 0.88;
  box-shadow: 0 0 12px rgba(243, 226, 173, 0.28);
}

/* Чеклист у світлій картці */
body.clubarch-page .clubarch-notch-card .checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.clubarch-page .clubarch-notch-card .checklist li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(26, 29, 36, 0.08);
  border-radius: 8px;
}

body.clubarch-page .clubarch-notch-card .checklist li > span:last-child {
  font-size: 0.92rem;
  color: var(--ca-text-muted-card);
}

body.clubarch-page .clubarch-notch-card .checklist .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(200, 175, 130, 0.45);
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--ca-gold-deep);
  background: linear-gradient(160deg, rgba(255, 252, 246, 0.95), rgba(232, 222, 200, 0.35));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.7), 0 0 12px rgba(243, 226, 173, 0.12);
}

body.clubarch-page .clubarch-notch-card .checklist .icon svg {
  width: 20px;
  height: 20px;
  padding: 0;
  background: none;
  color: inherit;
}

body.clubarch-page .clubarch-notch-card .checklist .icon svg path {
  stroke: currentColor;
}

body.clubarch-page .clubarch-notch-card .checklist .icon svg path:not([fill]),
body.clubarch-page .clubarch-notch-card .checklist .icon svg path[fill="none"] {
  fill: none;
}

body.clubarch-page .clubarch-notch-card .checklist .icon svg path[fill="currentColor"] {
  fill: currentColor;
}

/* Рядки переваг (іконка-коло зліва) */
body.clubarch-page .clubarch-benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.clubarch-page .clubarch-benefit-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(26, 29, 36, 0.08);
}

body.clubarch-page .clubarch-benefit-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

body.clubarch-page .clubarch-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  background:
    linear-gradient(168deg, #fffefb 0%, #f3ece3 55%, #ebe2d6 100%) padding-box,
    var(--ca-signature-grad) border-box;
  border: 2.5px solid transparent;
  background-origin: border-box;
  -webkit-background-clip: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 0 22px rgba(243, 226, 173, 0.16),
    inset 0 1px 2px rgba(255, 255, 255, 0.92),
    inset 0 -8px 18px rgba(88, 72, 52, 0.06);
}

body.clubarch-page .clubarch-benefit-num {
  font-family: var(--ca-font-serif);
  font-size: 0.92rem;
  font-weight: 600;
  font-variant-numeric: lining-nums;
  letter-spacing: 0.08em;
  background: var(--ca-signature-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35));
}

body.clubarch-page .clubarch-benefit-icon--heart {
  color: #6e5a3e;
}

body.clubarch-page .clubarch-benefit-icon--heart .clubarch-benefit-glyph {
  width: 22px;
  height: 22px;
  display: block;
  filter: drop-shadow(0 0.5px 0 rgba(255, 255, 255, 0.4));
}

body.clubarch-page .clubarch-benefit-body h4 {
  font-family: var(--ca-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ca-text-on-card);
  margin: 0 0 6px;
}

body.clubarch-page .clubarch-benefit-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ca-text-muted-card);
}

body.clubarch-page .clubarch-split {
  margin-top: 8px;
}

body.clubarch-page .clubarch-split > [class*="col-"] {
  margin-bottom: 8px;
}

/* Цитати на темному фоні */
body.clubarch-page .clubarch-quote-dark {
  position: relative;
  border-left: none;
  padding: 20px 24px 20px 28px;
  margin: 24px 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0%, transparent 45%),
    radial-gradient(ellipse 80% 100% at 0% 50%, rgba(133, 103, 57, 0.08) 0%, transparent 60%),
    rgba(255, 255, 255, 0.028);
  color: var(--ca-text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.65;
  border-radius: 4px;
}

body.clubarch-page .clubarch-quote-dark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 2px;
  background: var(--ca-signature-grad);
  box-shadow: 0 0 14px rgba(243, 226, 173, 0.35);
}

body.clubarch-page .clubarch-quote-dark strong {
  color: var(--ca-gold-bright);
}

body.clubarch-page .clubarch-quote-dark--in-card {
  margin: 22px 0 0;
  padding: 16px 18px 16px 24px;
  font-size: 0.92rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    rgba(0, 0, 0, 0.14);
}

body.clubarch-page .clubarch-quote-dark--in-card::before {
  top: 10px;
  bottom: 10px;
}

/* Геометричний розділювач (X / пісочний годинник) */
body.clubarch-page .clubarch-geo-break {
  position: relative;
  height: 120px;
  margin: 56px 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 120% at 50% 50%, rgba(133, 103, 57, 0.12) 0%, transparent 65%),
    radial-gradient(circle at 20% 50%, rgba(243, 226, 173, 0.04) 0%, transparent 35%);
}

body.clubarch-page .clubarch-geo-break::before,
body.clubarch-page .clubarch-geo-break::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ca-gold-dim), transparent);
  opacity: 0.35;
}

body.clubarch-page .clubarch-geo-break::before {
  transform: rotate(28deg);
}

body.clubarch-page .clubarch-geo-break::after {
  transform: rotate(-28deg);
}

body.clubarch-page .clubarch-geo-label {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ca-gold-bright);
  padding: 12px 24px;
  background: var(--ca-bg);
  border: 1px solid var(--ca-gold-border);
  box-shadow: 0 0 28px rgba(243, 226, 173, 0.12);
}

/* Форма заявки */
body.clubarch-page .clubarch-cta-box {
  position: relative !important;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(133, 103, 57, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, rgba(30, 34, 44, 0.98) 0%, var(--ca-bg-elevated) 100%) !important;
  color: var(--ca-text-on-dark) !important;
  border-radius: 0 !important;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--ca-notch)),
    calc(100% - var(--ca-notch)) 100%,
    0 100%
  ) !important;
  padding: clamp(32px, 6vw, 52px) !important;
  border: 1px solid var(--ca-gold-border) !important;
  box-shadow:
    var(--ca-gold-glow),
    0 32px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 16px 0 56px -20px rgba(0, 0, 0, 0.38),
    inset -16px 0 56px -20px rgba(0, 0, 0, 0.38),
    inset 0 28px 64px -28px rgba(0, 0, 0, 0.32),
    inset 0 -20px 48px -14px rgba(0, 0, 0, 0.45) !important;
  margin-bottom: 32px;
}

/* Тінь у зоні скошеного нижнього правого кута форми */
body.clubarch-page .clubarch-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  clip-path: inherit;
  background:
    linear-gradient(
      308deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) max(8%, calc(var(--ca-notch) * 0.2)),
      rgba(0, 0, 0, 0.22) calc(var(--ca-notch) * 0.75),
      rgba(0, 0, 0, 0.38) calc(var(--ca-notch) * 1.08),
      rgba(0, 0, 0, 0.2) calc(var(--ca-notch) * 1.5),
      rgba(0, 0, 0, 0) calc(var(--ca-notch) * 2.05)
    ),
    radial-gradient(
      ellipse 130% 130% at 100% 100%,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.16) 34%,
      transparent 64%
    );
}

body.clubarch-page .clubarch-cta-box > * {
  position: relative;
  z-index: 1;
}

body.clubarch-page .clubarch-cta-box .oliven-title-meta {
  font-family: var(--ca-font-serif) !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--ca-gold-bright) !important;
  text-shadow: 0 0 40px rgba(243, 226, 173, 0.15);
}

body.clubarch-page .clubarch-cta-box .text-center {
  color: var(--ca-text-muted-dark) !important;
}

body.clubarch-page .clubarch-cta-box .clubarch-cta-note {
  color: var(--ca-text-muted-dark) !important;
  opacity: 0.85;
}

body.clubarch-page .clubarch-cta-box .form-control,
body.clubarch-page .clubarch-cta-box textarea {
  background: rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(243, 226, 173, 0.22) !important;
  border-radius: 4px !important;
  color: var(--ca-text-on-dark) !important;
}

body.clubarch-page .clubarch-cta-box .form-control::placeholder,
body.clubarch-page .clubarch-cta-box textarea::placeholder {
  color: rgba(244, 242, 238, 0.35) !important;
}

body.clubarch-page .clubarch-cta-box input[name="amount"]::placeholder {
  color: rgba(212, 197, 169, 0.45) !important;
}

body.clubarch-page .clubarch-cta-box .form-group {
  color: var(--ca-text-muted-dark);
  font-size: 0.85rem;
}

body.clubarch-page .clubarch-cta-box .button2 {
  background: var(--ca-signature-grad) !important;
  color: #1a1208 !important;
  border: 1px solid rgba(243, 226, 173, 0.4) !important;
  border-radius: 12px !important;
  font-family: var(--ca-font-display) !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  font-size: 11px !important;
  box-shadow: var(--ca-gold-glow), 0 12px 36px rgba(0, 0, 0, 0.4) !important;
}

body.clubarch-page .clubarch-cta-box .button2:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

body.clubarch-page .clubarch-tagline {
  text-align: center;
  color: var(--ca-text-muted-dark);
  font-size: 0.95rem;
  max-width: 36rem;
  margin: 32px auto 0;
  line-height: 1.65;
}

body.clubarch-page .clubarch-cta-box span[style*="color:red"] {
  color: #e8a598 !important;
}

/* Смуга з фото після інтро */
body.clubarch-page .clubarch-mood-strip {
  margin: 8px 0 40px;
}

body.clubarch-page .clubarch-mood-caption-inner {
  padding: 8px 12px;
}

body.clubarch-page .clubarch-mood-caption {
  font-family: var(--ca-font-serif);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--ca-text-muted-dark);
  margin: 0;
  max-width: 22rem;
  text-align: center;
  text-wrap: balance;
}

@media (min-width: 768px) {
  body.clubarch-page .clubarch-mood-caption {
    text-align: left;
  }
}

body.clubarch-page .clubarch-photo-dark {
  margin: 0;
  height: 100%;
  min-height: 200px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--ca-gold-border);
  box-shadow: var(--ca-gold-glow), 0 24px 48px rgba(0, 0, 0, 0.4);
  background: var(--ca-bg-elevated);
}

body.clubarch-page .clubarch-photo-dark img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08) brightness(0.95);
  transition: transform 0.5s ease, filter 0.4s ease;
}

body.clubarch-page .clubarch-photo-dark:hover img {
  transform: scale(1.03);
  filter: saturate(0.95) contrast(1.05) brightness(1);
}

/* Блок автора + плавний перехід фото → картка */
body.clubarch-page .clubarch-author-shell {
  position: relative;
  margin: 28px 0 12px;
  padding: clamp(20px, 4vw, 36px) clamp(8px, 2vw, 12px);
  border-radius: 14px;
  overflow: hidden;
}

body.clubarch-page .clubarch-author-shell__glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(201, 166, 107, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 80% 60%, rgba(90, 100, 140, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body.clubarch-page .clubarch-author-shell__grain {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

body.clubarch-page .clubarch-author-block {
  position: relative;
  z-index: 1;
  margin: 0;
}

body.clubarch-page .clubarch-portrait-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

body.clubarch-page .clubarch-portrait-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--ca-gold-border);
  box-shadow: var(--ca-gold-glow), 0 28px 56px rgba(0, 0, 0, 0.45);
  max-width: 400px;
  margin: 0 auto;
}

body.clubarch-page .clubarch-portrait-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

@media (max-width: 767.98px) {
  body.clubarch-page .clubarch-portrait-frame::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 52%;
    pointer-events: none;
    background: linear-gradient(
      to top,
      var(--ca-bg) 0%,
      rgba(28, 21, 17, 0.88) 22%,
      rgba(28, 21, 17, 0.35) 55%,
      transparent 100%
    );
  }
}

body.clubarch-page .clubarch-author-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 12px 6px;
  margin-top: -8px;
  position: relative;
  z-index: 2;
}

body.clubarch-page .clubarch-author-bridge__line {
  flex: 1;
  height: 1px;
  max-width: 100px;
  background: linear-gradient(90deg, transparent, rgba(243, 226, 173, 0.45), transparent);
  box-shadow: 0 0 12px rgba(243, 226, 173, 0.15);
}

body.clubarch-page .clubarch-author-bridge__gem {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ca-signature-grad);
  box-shadow:
    0 0 0 2px rgba(24, 19, 16, 0.9),
    0 0 20px rgba(243, 226, 173, 0.45);
}

@media (min-width: 768px) {
  body.clubarch-page .clubarch-author-bridge {
    display: none;
  }
}

body.clubarch-page .clubarch-dark-gold-card {
  background:
    radial-gradient(ellipse 90% 80% at 100% 0%, rgba(133, 103, 57, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, rgba(42, 34, 28, 0.97) 0%, rgba(30, 24, 20, 0.99) 55%, rgba(22, 17, 14, 1) 100%);
  border: 1px solid var(--ca-gold-border);
  border-radius: 10px;
  padding: clamp(22px, 4vw, 36px);
  box-shadow: var(--ca-gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.clubarch-page .clubarch-dark-gold-card p {
  color: var(--ca-text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

body.clubarch-page .clubarch-dark-gold-card p strong {
  color: var(--ca-gold-bright);
}

body.clubarch-page .clubarch-card-head--on-dark {
  color: transparent !important;
  background: var(--ca-signature-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ——— Мобільні відступи та блок «структура знань» ——— */
@media (max-width: 767.98px) {
  body.clubarch-page #oliven-main::before {
    background-position: center 24%;
  }

  body.clubarch-page .clubarch-container-tight {
    padding-left: max(22px, env(safe-area-inset-left, 0px));
    padding-right: max(22px, env(safe-area-inset-right, 0px));
  }

  body.clubarch-page .clubarch-hero-inner {
    padding-left: max(22px, env(safe-area-inset-left, 0px));
    padding-right: max(22px, env(safe-area-inset-right, 0px));
  }

  body.clubarch-page .clubarch-hero-copy {
    padding-bottom: 8px;
  }

  body.clubarch-page .clubarch-hero-img-wrap {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }

  body.clubarch-page .clubarch-notch-card {
    --ca-notch: 40px;
    padding: 26px max(22px, 5vw) 26px max(26px, 5.5vw);
    margin-left: 0;
    margin-right: 0;
  }

  body.clubarch-page .clubarch-notch-card .clubarch-card-head {
    margin-bottom: 20px;
    padding-left: 2px;
    letter-spacing: 0.16em;
  }

  body.clubarch-page .clubarch-notch-card .clubarch-card-head::before {
    margin-bottom: 14px;
  }

  body.clubarch-page .clubarch-notch-card .clubarch-card-head::after {
    margin-top: 12px;
  }

  body.clubarch-page .clubarch-section-title {
    padding-left: max(12px, 3vw);
    padding-right: max(12px, 3vw);
    margin-top: 40px;
    line-height: 1.35;
  }

  body.clubarch-page .clubarch-mood-strip {
    margin-bottom: 36px;
  }

  body.clubarch-page .clubarch-mood-caption-wrap {
    margin-top: 30px;
    margin-bottom: 8px;
  }

  body.clubarch-page .clubarch-mood-caption-inner {
    background: rgba(20, 24, 32, 0.85);
    border: 1px solid var(--ca-gold-border);
    border-radius: 12px;
    padding: 24px max(20px, 5vw);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 40px rgba(0, 0, 0, 0.25);
  }

  body.clubarch-page .clubarch-mood-caption {
    max-width: none;
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 4px;
  }

  body.clubarch-page .clubarch-mood-caption-inner .clubarch-dots-row--spread {
    margin-left: auto;
    margin-right: auto;
  }

  body.clubarch-page .clubarch-photo-dark img {
    min-height: 200px;
  }

  body.clubarch-page .clubarch-quote-dark {
    padding: 20px max(20px, 5vw) 20px max(24px, 5.5vw);
    margin-left: 0;
    margin-right: 0;
  }

  body.clubarch-page .clubarch-tagline {
    padding-left: max(8px, 2vw);
    padding-right: max(8px, 2vw);
  }

  body.clubarch-page .clubarch-dark-gold-card {
    padding: 24px max(20px, 5vw);
    margin-top: 4px;
  }

  body.clubarch-page .clubarch-card-head--on-dark {
    margin-bottom: 14px !important;
  }

  body.clubarch-page .clubarch-author-block .col-md-5,
  body.clubarch-page .clubarch-author-block .col-md-7 {
    padding-left: max(10px, 2vw);
    padding-right: max(10px, 2vw);
  }

  body.clubarch-page .clubarch-portrait-frame {
    max-width: 100%;
  }

  body.clubarch-page .clubarch-benefit-body h4 {
    line-height: 1.35;
    padding-right: 4px;
  }

  body.clubarch-page .clubarch-notch-card .checklist li {
    padding: 14px max(12px, 3vw);
  }

  body.clubarch-page .clubarch-geo-label {
    margin-left: 12px;
    margin-right: 12px;
    text-align: center;
    max-width: calc(100% - 24px);
  }

  body.clubarch-page .clubarch-cta-box {
    padding-left: max(22px, 5vw) !important;
    padding-right: max(22px, 5vw) !important;
  }

  body.clubarch-page .clubarch-zone {
    padding-left: max(8px, 2vw);
    padding-right: max(8px, 2vw);
    border-radius: 12px;
  }

  body.clubarch-page .clubarch-zone--mid::before {
    margin-top: 0;
    margin-bottom: 14px;
  }

  body.clubarch-page .clubarch-author-shell {
    padding-left: 0;
    padding-right: 0;
  }
}
