/* Кассиопея — leads-mass-redesign layout build
   Tokens from design/design.md (Stage-1, schema v2) */

:root {
  --ink: #171735;
  --indigo: #201C46;
  --teal: #0C5965;
  --teal-deep: #09615F;
  --teal-ink: #09152F;
  --aqua: #67D0C7;
  --coral: #E45D50;
  --coral-deep: #C84A3F;
  --amber: #FFBF69;
  --amber-soft: #FFD17F;
  --canvas: #FFFDF8;
  --canvas-2: #F6F1E8;
  --muted: #666477;
  --muted-dark: #777583;
  --nav-ink: #37354C;
  --hero-lead: #DCE9E8;
  --hero-label: #CBDAD9;
  --field-label: #777484;
  --field-ink: #24223A;
  --benefit-text: #D3D1DC;
  --step-text: #BDBCCA;
  --r-s: 14px;
  --r-m: 22px;
  --r-l: 28px;
  --r-pill: 999px;
  --margin: 20px;
  --header-h: 76px;
  --font: Arial, Helvetica, "Segoe UI", system-ui, -apple-system, sans-serif;
  --shadow-card: 0 16px 40px rgba(7, 20, 47, 0.17);
  --shadow-soft: 0 6px 18px rgba(7, 20, 47, 0.10);
}

@media (min-width: 640px) {
  :root { --margin: 40px; --header-h: 92px; }
}
@media (min-width: 1200px) {
  :root { --margin: 88px; --header-h: 96px; }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--canvas);
  overflow-wrap: break-word;
}

img, svg { max-width: 100%; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--margin);
  top: -48px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-s) var(--r-s);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

.container {
  max-width: 1288px;
  margin: 0 auto;
  padding: 0 var(--margin);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 28px;
  border: 0;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 2px;
}
.on-dark:focus-visible { outline-color: var(--amber); }

.btn-coral {
  background: var(--coral);
  color: #fff;
}
.btn-coral:hover { background: var(--coral-deep); }
.btn-coral:disabled,
.btn-coral[aria-disabled="true"] {
  background: #D9CFC2;
  color: #8C8894;
  cursor: not-allowed;
  transform: none;
}

.btn-indigo {
  background: var(--indigo);
  color: #fff;
}
.btn-indigo:hover { background: #2B2659; }
.btn-indigo.is-loading {
  background: var(--indigo);
  cursor: progress;
}
.btn-indigo.is-loading::before {
  content: "";
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 253, 248, 0.45);
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}
.btn-indigo.is-success {
  background: var(--teal);
}

.btn-ghost {
  background: rgba(255, 253, 248, 0.10);
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 253, 248, 0.55);
}
.btn-ghost:hover {
  background: rgba(255, 253, 248, 0.20);
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--canvas);
  border-bottom: 1px solid rgba(23, 23, 53, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
  padding-top: 8px;
  padding-bottom: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  flex: 1 1 auto;
  min-width: 0;
}
.brand-mark { flex: 0 0 auto; }
.brand-text {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.brand-name {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1.7px;
  color: var(--ink);
  line-height: 1.15;
  white-space: nowrap;
}
.brand-tag {
  display: block;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6C6A79;
  white-space: nowrap;
}
.brand-tag--desktop { display: none; }
@media (min-width: 1200px) {
  .brand-tag--desktop { display: block; letter-spacing: 1.8px; font-size: 11px; }
  .brand-tag--sub { display: none; }
}

.main-nav {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 650;
  color: var(--nav-ink);
  text-decoration: none;
  border-radius: var(--r-s);
}
.main-nav a:hover { color: var(--ink); background: rgba(32, 28, 70, 0.06); }

.header-contacts {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
}
.hours {
  font-size: 12px;
  color: var(--muted-dark);
}
.office-phone {
  font-size: 17px;
  font-weight: 750;
  color: var(--ink);
  text-decoration: none;
}
.office-phone:hover { text-decoration: underline; }

.header-cta { display: none; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: var(--indigo);
  cursor: pointer;
  flex: 0 0 auto;
}
.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
  position: relative;
}
.menu-toggle-bars::before,
.menu-toggle-bars::after { content: ""; position: absolute; }
.menu-toggle-bars::before { top: -6px; }
.menu-toggle-bars::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 640px) {
  .brand-name { font-size: 24px; }
}
@media (min-width: 1200px) {
  .main-nav { display: flex; }
  .header-contacts { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ---------- Mobile menu ---------- */

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 39;
  background: var(--canvas);
  padding: 8px var(--margin) 32px;
  overflow-y: auto;
}
.menu-panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.menu-panel > a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 10px 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(23, 23, 53, 0.07);
}
.menu-panel > a:hover { color: var(--teal-deep); }
.menu-contacts {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}
.menu-contacts .hours { font-size: 13px; }
.menu-contacts a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.menu-address { color: var(--muted); margin: 0; }
.menu-panel .btn { margin-top: 24px; width: 100%; }
.menu-live { margin: 12px 0 0; font-size: 13px; color: var(--muted); }

@media (min-width: 1200px) {
  .mobile-menu { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    linear-gradient(135deg, #101936 0%, #27204E 55%, #0B6F75 100%);
  color: var(--canvas);
  padding-bottom: 0;
  overflow: hidden;
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-top: 56px;
  padding-bottom: 40px;
  align-items: start;
}

.badge {
  display: inline-block;
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--r-pill);
}

.hero-copy h1 {
  margin: 22px 0 18px;
  font-size: clamp(34px, 9vw, 72px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--canvas);
}
.hero-copy h1 .accent { color: var(--amber); }
.hero-lead {
  margin: 0 0 28px;
  max-width: 46ch;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.55;
  color: var(--hero-lead);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Tour search ---------- */

.search-card {
  background: var(--canvas);
  color: var(--field-ink);
  border-radius: var(--r-l);
  box-shadow: var(--shadow-card);
  padding: 26px;
}
.search-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.search-card-head h2 {
  margin: 0;
  font-size: clamp(19px, 2.4vw, 22px);
  font-weight: 800;
  color: var(--ink);
}
.free-badge {
  flex: 0 0 auto;
  color: var(--teal-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border: 2px solid currentColor;
  border-radius: var(--r-pill);
  padding: 5px 12px;
}

.search-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--field-label);
}
.field select,
.field input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--field-ink);
  background: #fff;
  border: 1.5px solid rgba(23, 23, 53, 0.16);
  border-radius: var(--r-s);
  transition: border-color 0.15s ease;
}
.field select:hover,
.field input:hover { border-color: rgba(23, 23, 53, 0.35); }
.field select:focus,
.field input:focus { border-color: var(--teal-deep); }
.field.has-error select,
.field.has-error input {
  border-color: var(--coral-deep);
  box-shadow: 0 0 0 3px rgba(200, 74, 63, 0.18);
}

.btn-submit { width: 100%; min-height: 52px; }

.form-error {
  margin: 12px 0 0;
  padding: 10px 14px;
  border-radius: var(--r-s);
  background: rgba(228, 93, 80, 0.12);
  color: #96271C;
  font-size: 14px;
  font-weight: 650;
}
.form-status {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 650;
  min-height: 1.4em;
}
.form-status.is-success { color: var(--teal-deep); }
.form-status.is-error { color: #96271C; }

@media (min-width: 640px) {
  .search-fields { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 568px;
    gap: 56px;
    padding-top: 88px;
    padding-bottom: 44px;
  }
  .search-card { padding: 32px; }
}

/* ---------- Fact strip ---------- */

.facts {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--teal-ink);
  border-radius: var(--r-m);
  margin-top: -4px;
  padding: 18px 24px;
}
.hero .facts { margin-top: 0; }
.fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 4px;
}
.fact-num {
  font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #fff;
  text-transform: uppercase;
}
.fact-label {
  font-size: clamp(11px, 1.4vw, 12px);
  color: var(--hero-label);
}

@media (min-width: 1200px) {
  .facts { max-width: 560px; border-radius: var(--r-l); }
}

/* ---------- Section scaffolding ---------- */

section { position: relative; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.eyebrow-teal { color: var(--teal-deep); }
.eyebrow-coral { color: var(--coral-deep); }
.eyebrow-aqua { color: var(--aqua); }

h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.section-head h2,
.benefits .section-head h2 { font-size: clamp(28px, 4.4vw, 46px); line-height: 1.08; }
.section-lead {
  margin: 14px 0 0;
  max-width: 52ch;
  font-size: 17px;
  color: var(--muted);
}
.section-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 15px;
  font-weight: 700;
  color: var(--indigo);
  text-decoration: none;
  white-space: nowrap;
}
.section-link:hover { color: var(--teal-deep); text-decoration: underline; }

/* ---------- Packages ---------- */

.packages {
  background: var(--canvas-2);
  padding: 72px 0 84px;
}
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pkg-card {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--teal);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 420px;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.pkg-card:focus-within {
  box-shadow: 0 0 0 3px var(--aqua), var(--shadow-card);
}
.pkg-card.is-selected { outline: 3px solid var(--aqua); outline-offset: 3px; }

.pkg-media {
  position: absolute;
  inset: 0;
}
.pkg-landscape {
  width: 100%;
  height: 100%;
  display: block;
}
.pkg-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: var(--canvas);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--r-pill);
}
.pkg-overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: 96px var(--overlay-pad, 28px) 28px;
  background: linear-gradient(180deg, rgba(9, 21, 47, 0) 0%, rgba(9, 21, 47, 0.62) 42%, rgba(7, 16, 38, 0.88) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.pkg-meta {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.85);
}
.pkg-name {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 32px);
  font-weight: 800;
  color: #fff;
}
.pkg-price { margin: 0 0 8px; font-size: 15px; color: rgba(255, 253, 248, 0.9); }
.pkg-action {
  width: auto;
  min-height: 44px;
  padding: 10px 22px;
  font-size: 14px;
}
.pkg-unavailable {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--amber-soft);
  max-width: 34ch;
}
.pkg-card.is-unavailable .pkg-action {
  background: rgba(255, 253, 248, 0.22);
  color: rgba(255, 253, 248, 0.65);
  cursor: not-allowed;
}
.pkg-card.is-unavailable .pkg-action:hover { background: rgba(255, 253, 248, 0.22); }

.all-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--indigo);
  text-decoration: none;
}
.all-link:hover { text-decoration: underline; }

@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .cards-grid .pkg-card:last-child { grid-column: 1 / -1; }
}
@media (min-width: 1200px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .cards-grid .pkg-card:last-child { grid-column: auto; }
  .pkg-card { min-height: 500px; }
}

/* ---------- Benefits ---------- */

.benefits {
  background: var(--canvas);
  padding: 84px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.benefit-panel {
  background: var(--indigo);
  border-radius: 30px;
  padding: 34px;
  color: #fff;
}
.panel-eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--amber);
}
.panel-quote {
  margin: 0 0 16px;
  font-size: clamp(22px, 3vw, 29px);
  font-weight: 800;
  line-height: 1.25;
}
.panel-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--benefit-text);
}

.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--r-m);
}
.benefit-item:hover { background: rgba(12, 89, 101, 0.06); }
.benefit-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.benefit-item:nth-child(1) .benefit-icon { background: #E2F4EF; }
.benefit-item:nth-child(2) .benefit-icon { background: #FFF0DB; }
.benefit-item:nth-child(3) .benefit-icon { background: #ECEAF8; }
.benefit-item:nth-child(4) .benefit-icon { background: #E6F2F5; }
.benefit-title {
  margin: 0 0 4px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
  color: var(--ink);
}
.benefit-text {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

@media (min-width: 640px) {
  .benefit-list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 1200px) {
  .benefits-grid { grid-template-columns: 560px minmax(0, 1fr); gap: 48px; }
}

/* ---------- Process ---------- */

.process {
  background: var(--ink);
  color: #fff;
  padding: 84px 0 92px;
}
.process .section-head { margin-bottom: 48px; }
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 8px;
}
.step-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}
.dot-coral { background: var(--coral-deep); color: #fff; }
.dot-amber { background: var(--amber); color: var(--ink); }
.dot-aqua { background: var(--aqua); color: var(--ink); }
.dot-white { background: #fff; color: var(--ink); }
.step-title {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
}
.step-text {
  margin: 0;
  font-size: 14px;
  color: var(--step-text);
  max-width: 26ch;
}

@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 40px; }
}
@media (min-width: 1200px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .steps::before {
    content: "";
    position: absolute;
    left: 70px;
    right: 70px;
    top: 38px;
    height: 2px;
    background: rgba(255, 255, 255, 0.18);
  }
  .steps { position: relative; }
  .step { text-align: center; }
  .step-dot { margin-left: auto; margin-right: auto; }
  .step-text { margin-left: auto; margin-right: auto; }
}

/* ---------- Contact CTA ---------- */

.cta {
  background: var(--canvas-2);
  padding: 72px 0 84px;
}
.cta-card {
  position: relative;
  background: var(--canvas);
  border-radius: 42px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 36px;
  overflow: hidden;
}
.cta-art {
  display: none;
}
.cta-copy h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.1; }
.contact-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  color: var(--ink);
}
.contact-list a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.contact-list a:hover { text-decoration: underline; }
.contact-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 6px;
}
.cta-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.cta-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

@media (min-width: 1200px) {
  .cta-card {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 40px;
    padding: 48px 56px;
  }
  .cta-art {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 320px;
    height: 132px;
    pointer-events: none;
    opacity: 0.9;
  }
  .cta-card::after {
    content: "";
    position: absolute;
    top: -46px;
    right: -40px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: var(--amber);
    opacity: 0.3;
    pointer-events: none;
  }
  .cta-copy, .cta-action { position: relative; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--canvas);
  padding: 22px 0;
}
.footer-line {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.footer-contacts {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 253, 248, 0.85);
}
.footer-contacts a {
  color: var(--canvas);
  text-decoration: none;
}
.footer-contacts a:hover { text-decoration: underline; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}
