/* OA — личный сайт Отца Александра. Изолированные стили (нет общих с rpa). */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:root {
  --pad: clamp(20px, 5vw, 80px);
  --max: 1240px;
  --line: rgba(255,255,255,0.12);
  --muted: rgba(255,255,255,0.6);
  --accent: #ff8800;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* NAV */
.oa-nav {
  position: sticky;
  top: 0; z-index: 50;
  background: rgba(10,10,10,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.oa-nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.oa-brand { display: inline-flex; align-items: center; gap: 12px; }
.oa-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--accent); color: #000;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.oa-name { font-weight: 600; font-size: 13px; letter-spacing: 0.14em; }
.oa-menu { display: flex; gap: 28px; }
.oa-menu a {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  transition: color .2s ease;
}
.oa-menu a:hover { color: #fff; }
@media (max-width:640px) { .oa-menu { display: none; } }

/* HERO */
.oa-hero { padding: clamp(80px,14vh,160px) 0 clamp(60px,10vh,120px); }
.oa-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.oa-h1 {
  font-size: clamp(34px, 5.6vw, 78px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 32px;
  max-width: 18ch;
}
.oa-h1::after { content: ""; display: inline-block; width: 12px; height: 12px; background: var(--accent); border-radius: 50%; margin-left: 6px; vertical-align: middle; }
.oa-subtitle {
  font-size: clamp(18px, 1.6vw, 26px);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.5;
}
.oa-subtitle strong { color: #fff; font-weight: 500; }
.oa-loc {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.oa-dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  margin-right: 10px; vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(255,136,0,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,136,0,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255,136,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,136,0,0); }
}

.oa-cta { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 14px; }
.oa-btn {
  display: inline-flex; align-items: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500;
  border: 1px solid #fff;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.oa-btn-primary { background: var(--accent); color: #000; border-color: var(--accent); }
.oa-btn-primary:hover { transform: translateY(-1px); }
.oa-btn-ghost:hover { background: #fff; color: #000; }

/* HERO TERMINAL */
.oa-hero-terminal { padding-top: clamp(80px,14vh,140px); padding-bottom: clamp(40px,6vh,80px); }
.oa-btn-big {
  padding: 18px 36px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

/* INTAKE TERMINAL */
.oa-intake {
  padding: clamp(40px,6vh,80px) 0 clamp(60px,10vh,120px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,136,0,0.06) 0%, transparent 50%),
    #0a0a0a;
}
.oa-intake-frame {
  max-width: 720px;
  margin: 0 auto;
  background: #131313;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 48px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px -40px rgba(255,136,0,0.15);
}
.oa-intake-head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.oa-intake-progress {
  flex: 1; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px; overflow: hidden;
}
.oa-intake-bar {
  height: 100%; width: 20%; background: #ff8800;
  transition: width .4s ease;
}
.oa-intake-counter {
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--muted); white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.oa-intake-body { flex: 1; }
.oa-loading { color: var(--muted); text-align: center; padding: 80px 0; }

.oa-step { animation: oa-step-in .4s cubic-bezier(.16,1,.3,1); }
@keyframes oa-step-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.oa-step-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
}
.oa-step-sub { color: var(--muted); font-size: 15px; margin-bottom: 28px; max-width: 50ch; }

.oa-step-options { display: flex; flex-direction: column; gap: 10px; }
.oa-step-option {
  display: flex; flex-direction: column; gap: 4px;
  width: 100%; text-align: left;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #1a1a1a;
  color: #fff;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .1s ease;
}
.oa-step-option:hover { border-color: #ff8800; transform: translateX(2px); }
.oa-step-option.is-active { background: #ff8800; color: #000; border-color: #ff8800; }
.oa-step-option.is-active .oa-step-hint { color: rgba(0,0,0,0.7); }
.oa-step-label { font-weight: 500; font-size: 16px; }
.oa-step-hint { font-size: 13px; color: var(--muted); }

.oa-step-options-multi .oa-step-option {
  display: flex; flex-direction: row; align-items: center; gap: 14px;
}
.oa-step-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1.5px solid #fff;
  border-radius: 5px;
  position: relative;
  background: transparent;
}
.oa-step-option-multi.is-active .oa-step-check {
  background: #fff;
}
.oa-step-option-multi.is-active .oa-step-check::after {
  content: ""; position: absolute;
  left: 5px; top: 1px;
  width: 6px; height: 12px;
  border-right: 2px solid #ff8800;
  border-bottom: 2px solid #ff8800;
  transform: rotate(45deg);
}
.oa-step-option-multi.is-active { background: rgba(255,136,0,0.12); color: #fff; border-color: #ff8800; }
.oa-step-option-multi.is-active .oa-step-check { border-color: #ff8800; }
.oa-step-multi-counter {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}

.oa-step-input {
  display: block; width: 100%;
  padding: 18px 22px;
  background: #0a0a0a;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 17px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s ease;
}
.oa-step-input:focus { border-color: #ff8800; }
.oa-step-input.is-invalid { border-color: #ff5555; }

.oa-step-next { margin-top: 18px; }
.oa-step-next:disabled { opacity: 0.4; cursor: not-allowed; }

.oa-intake-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  margin-top: clamp(24px, 3vw, 36px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.oa-intake-back {
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 10px 16px; border-radius: 999px;
}
.oa-intake-back:hover { color: #fff; border-color: #fff; }
.oa-intake-pdn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted); cursor: pointer;
}
.oa-intake-pdn input { width: 16px; height: 16px; accent-color: #ff8800; }

/* DONE state */
.oa-step-done { text-align: left; }
.oa-done-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,136,0,0.15); color: #ff8800;
  font-size: 28px; font-weight: 700; margin-bottom: 20px;
}
.oa-done-id {
  margin-top: 24px;
  font-size: 11px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  font-family: ui-monospace, monospace;
}

/* MORE — collapsible */
.oa-more {
  border-top: 1px solid var(--line);
  background: #050505;
}
.oa-more-summary {
  list-style: none;
  cursor: pointer;
  padding: 28px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  user-select: none;
}
.oa-more-summary::-webkit-details-marker { display: none; }
.oa-more-label {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.oa-more-hint {
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.oa-more[open] .oa-more-label { color: #fff; }
.oa-more[open] .oa-more-hint::after { content: " ↑"; }
.oa-more:not([open]) .oa-more-hint::after { content: " ↓"; }

/* AUDIENCES — кому сюда */
.oa-aud {
  padding: clamp(60px,10vh,120px) 0;
  border-top: 1px solid var(--line);
}
.oa-aud-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.oa-aud-card {
  padding: 28px;
  background: #131313;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.oa-aud-card:hover { border-color: #ff8800; transform: translateY(-3px); background: #181818; }
.oa-aud-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff8800;
}
.oa-aud-title {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
}
.oa-aud-card p { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.55; flex: 1; }
.oa-aud-cta { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.oa-aud-link {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #ff8800;
  padding-bottom: 2px;
  align-self: flex-start;
  transition: opacity .2s ease;
}
.oa-aud-link.is-muted { color: rgba(255,255,255,0.55); border-bottom-color: transparent; font-size: 13px; }
.oa-aud-link:hover { opacity: 0.75; }

/* PHOTO MANIFESTO */
.oa-photo {
  padding: clamp(60px,10vh,120px) 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent 0%, rgba(255,136,0,0.03) 100%);
}
.oa-photo-lead {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--muted);
  max-width: 56ch;
  margin-top: 24px;
  line-height: 1.55;
}
.oa-photo-dirs {
  margin: 40px 0 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 32px;
}
.oa-photo-dir {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  padding: 4px 0;
}
.oa-photo-dir span { color: #ff8800; margin-right: 10px; }
.oa-photo-cta { margin-top: 36px; }

/* MAP — tech layer tags */
.oa-layer-tech {
  margin-top: 14px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.oa-layer-tech span {
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  background: rgba(255,136,0,0.08);
  color: rgba(255,136,0,0.7) !important;
  border-radius: 999px;
  font-family: ui-monospace, monospace;
}

/* DO — финальный CTA-grid */
.oa-do {
  padding: clamp(60px,10vh,120px) 0;
  border-top: 1px solid var(--line);
}
.oa-do-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.oa-do-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 26px;
  background: #131313;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.oa-do-card:hover { border-color: #ff8800; background: #181818; transform: translateY(-2px); }
.oa-do-arrow {
  font-size: 22px;
  color: #ff8800;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}
.oa-do-title {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
}
.oa-do-sub { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.oa-do-card-primary {
  background: linear-gradient(135deg, #1a1206 0%, #131313 70%);
  border-color: rgba(255,136,0,0.5);
}

/* MANIFESTO */
.oa-manifesto {
  padding: clamp(60px,10vh,120px) 0;
  border-top: 1px solid var(--line);
}
.oa-quote {
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
  max-width: 22ch;
  color: #fff;
}

/* ECOSYSTEM MAP */
.oa-map {
  padding: clamp(60px,10vh,120px) 0;
  border-top: 1px solid var(--line);
}
.oa-map-intro {
  font-size: clamp(16px,1.4vw,20px);
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 48px;
}
.oa-map-fig {
  margin: 0 0 56px;
  background: radial-gradient(circle at 50% 45%, rgba(255,136,0,0.06) 0%, transparent 60%), #0a0a0a;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(16px, 3vw, 36px);
}
.oa-map-svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: 0 auto;
}
.oa-node circle, .oa-node rect { transition: stroke .25s ease, filter .25s ease; cursor: default; }
.oa-node:hover circle, .oa-node:hover rect {
  stroke: #ff8800;
  filter: drop-shadow(0 0 12px rgba(255,136,0,0.3));
}

/* layers grid */
.oa-layers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.oa-layer {
  padding: 24px 26px;
  background: #131313;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.oa-layer-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ff8800;
  margin-bottom: 12px;
}
.oa-layer-title {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.75);
}
.oa-layer-title strong { color: #fff; font-weight: 500; }
.oa-layer p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.55;
}
.oa-layer code {
  background: rgba(255,136,0,0.08);
  color: #ffb27a;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, monospace;
}
.oa-audiences {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.oa-audiences li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}
.oa-audiences li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  color: #ff8800;
  font-weight: 600;
}
.oa-audiences strong { color: #fff; font-weight: 500; }

@media (max-width: 640px) {
  .oa-map-svg { /* мобильная — компактируем */ }
  .oa-layer-title { font-size: 17px; }
}

/* PROJECTS */
.oa-projects {
  padding: clamp(60px,10vh,120px) 0;
  border-top: 1px solid var(--line);
}
.oa-h2 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 48px;
}
.oa-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.oa-project {
  position: relative;
  padding: 32px 28px;
  background: #131313;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s ease, transform .2s ease;
}
.oa-project:hover { border-color: var(--accent); transform: translateY(-3px); }
.oa-project-tag {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,136,0,0.12);
  padding: 4px 10px;
  border-radius: 999px;
}
.oa-project-title {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-right: 80px;
}
.oa-project-sub {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.oa-project-body {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  flex: 1;
}
.oa-project-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.oa-project-meta span {
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.oa-project-link {
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--accent);
  align-self: flex-start;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.oa-project-link.is-muted { color: var(--muted); border-bottom-color: transparent; }
.oa-project-link:hover:not(.is-muted) { opacity: 0.7; }

/* ROLES */
.oa-roles {
  padding: clamp(60px,10vh,120px) 0;
  border-top: 1px solid var(--line);
}
.oa-roles-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px 40px;
}
.oa-roles-list li {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.oa-roles-list h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.oa-roles-list p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  max-width: 38ch;
}

/* ARTISTS */
.oa-artists {
  padding: clamp(60px,10vh,120px) 0;
  border-top: 1px solid var(--line);
}
.oa-artists-intro {
  font-size: clamp(16px,1.4vw,20px);
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 40px;
}
.oa-artists-intro strong { color: #fff; font-weight: 500; }

.oa-artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.oa-artist {
  padding: 32px 28px;
  background: #131313;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s ease, transform .25s ease;
}
.oa-artist:hover { border-color: #ff8800; transform: translateY(-3px); }

.oa-artist-mark {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #ff8800;
  font-family: 'Inter', sans-serif;
}
.oa-artist-name {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
}
.oa-artist-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.oa-artist-tags span {
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.oa-artist-note {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  flex: 1;
}
.oa-artist-link {
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #ff8800;
  align-self: flex-start;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.oa-artist-link:hover { opacity: 0.7; }

.oa-artist-featured {
  background: linear-gradient(135deg, #1a1206 0%, #131313 50%);
  border-color: rgba(255,136,0,0.45);
}
.oa-artist-name-big {
  font-size: clamp(40px, 5vw, 64px) !important;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin: 4px 0 4px;
}
.oa-artist-aggregate .oa-artist-mark { color: rgba(255,136,0,0.7); }
.oa-artist-cta {
  background: transparent;
  border: 1px dashed var(--line);
}
.oa-artist-cta .oa-artist-mark { color: rgba(255,136,0,0.5); }

/* WISHLIST — артисты мечты */
.oa-wishlist {
  margin-top: 40px;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(255,136,0,0.06) 0%, transparent 70%);
  border: 1px dashed rgba(255,136,0,0.3);
  border-radius: 22px;
}
.oa-wishlist-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,136,0,0.7);
  margin-bottom: 14px;
}
.oa-wishlist-text {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
  max-width: 38ch;
}
.oa-wishlist-text strong { color: #fff; font-weight: 500; }
.oa-heart {
  color: #ff8800;
  display: inline-block;
  margin-left: 6px;
  font-size: 1.1em;
  animation: heart-pulse 2.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes heart-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

/* NUMBERS */
.oa-numbers {
  padding: clamp(60px,10vh,120px) 0;
  border-top: 1px solid var(--line);
}
.oa-num-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  margin-top: 16px;
}
.oa-num-value {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.oa-num-label {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  max-width: 22ch;
}

/* CONTACT */
.oa-contact {
  padding: clamp(60px,10vh,120px) 0;
  border-top: 1px solid var(--line);
}
.oa-contact-body {
  font-size: clamp(16px,1.2vw,18px);
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 40px;
}
.oa-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.oa-contact-card {
  display: block;
  padding: 24px;
  background: #131313;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color .2s ease, background .2s ease;
}
.oa-contact-card:hover { border-color: var(--accent); background: #1a1a1a; }
.oa-contact-primary {
  border-color: var(--accent);
  background: linear-gradient(135deg, #1a1206 0%, #131313 70%);
}
.oa-contact-primary .oa-contact-label { color: var(--accent); }
.oa-contact-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.oa-contact-value { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.oa-contact-hint { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* FOOT */
.oa-foot {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: #0a0a0a;
}
.oa-foot-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.oa-foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.oa-foot-links a:hover { color: #fff; }

@media (max-width: 600px) {
  .oa-h1 { font-size: 34px; }
  .oa-quote { font-size: 22px; }
  .oa-num-value { font-size: 48px; }
  .oa-cta .oa-btn { width: 100%; justify-content: center; }
  .oa-hero { padding-top: clamp(60px,10vh,100px); }
}
