:root {
  --ink: #0b1220;
  --muted: #647084;
  --soft: #f6f3ee;
  --soft-2: #ece6dc;
  --card: #ffffff;
  --line: #e4ddd3;
  --dark: #182536;
  --dark-2: #0f1724;
  --copper: #d96b1c;
  --copper-dark: #a75018;
  --steel: #2f6f7e;
  --success: #1f8a5b;
  --shadow: 0 20px 55px rgba(11, 18, 32, .08);
  --shadow-deep: 0 34px 90px rgba(11, 18, 32, .18);
  --inner-light: inset 0 1px 0 rgba(255, 255, 255, .65);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(11, 18, 32, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(11, 18, 32, .03) 1px, transparent 1px),
    linear-gradient(135deg, rgba(217, 107, 28, .07), transparent 36%),
    radial-gradient(circle at 86% 8%, rgba(47, 111, 126, .12), transparent 30%),
    var(--soft);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  perspective: 1200px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(246, 243, 238, .84);
  border-bottom: 1px solid rgba(228, 221, 211, .8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  background: var(--dark);
}

.brand strong,
.brand em {
  display: block;
  line-height: 1.1;
}

.brand em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--ink);
}

.header-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  background: #fff;
  font-weight: 800;
}

.hero,
.section,
.dark-section,
.gallery-section,
.enroll {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) clamp(18px, 4vw, 36px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 72px);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: clamp(16px, 6vw, 80px);
  top: clamp(92px, 13vw, 150px);
  width: min(44vw, 620px);
  height: min(44vw, 620px);
  border-radius: 36px;
  transform: rotate(-7deg);
  background: linear-gradient(135deg, rgba(24, 37, 54, .12), rgba(217, 107, 28, .12));
  filter: blur(.2px);
  box-shadow: 0 40px 120px rgba(11, 18, 32, .12);
}

.hero-ribbon {
  position: absolute;
  top: 48px;
  left: clamp(18px, 4vw, 36px);
  right: clamp(18px, 4vw, 36px);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(11, 18, 32, .18);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-ribbon span {
  animation: softBlink 4.5s ease-in-out infinite;
}

.hero-ribbon span:nth-child(2) { animation-delay: .5s; }
.hero-ribbon span:nth-child(3) { animation-delay: 1s; }
.hero-ribbon span:nth-child(4) { animation-delay: 1.5s; }
.hero-ribbon span:nth-child(5) { animation-delay: 2s; }

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  border: 1px solid rgba(217, 107, 28, .25);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--copper-dark);
  background: rgba(255, 255, 255, .58);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Fraunces, Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions,
.hero-points,
.mentor-facts,
.calc-result {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin: 32px 0 26px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 12px;
  padding: 15px 24px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -65%;
  width: 45%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .46), transparent);
  transition: left .55s ease;
}

.btn:hover::after {
  left: 120%;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--copper);
  box-shadow: 0 18px 38px rgba(217, 107, 28, .22);
}

.btn-primary:hover {
  background: var(--copper-dark);
  box-shadow: 0 20px 44px rgba(167, 80, 24, .28);
}

.btn-secondary {
  color: var(--copper-dark);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(217, 107, 28, .34);
}

.btn-secondary:hover {
  background: #fff6ed;
}

.hero-points {
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 10px;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--copper);
}

.hero-media {
  position: relative;
  min-height: 610px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 38px 80px rgba(11, 18, 32, .16));
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 42px -18px -20px 42px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--dark), var(--steel));
  box-shadow: 0 42px 100px rgba(24, 37, 54, .28);
}

.hero-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 10%;
  right: 4%;
  bottom: -28px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(11, 18, 32, .26), transparent 68%);
  filter: blur(12px);
}

.hero-media img {
  position: relative;
  width: 100%;
  height: 640px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 26px;
  box-shadow: var(--shadow-deep), var(--inner-light);
  transition: transform .5s ease, filter .5s ease;
}

.hero-media:hover img {
  transform: scale(1.015) rotate(.35deg);
  filter: contrast(1.05) saturate(1.04);
}

.blade-line {
  position: absolute;
  z-index: 2;
  left: 18%;
  right: 18%;
  top: 48%;
  height: 1px;
  transform: rotate(-24deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .88), rgba(217, 107, 28, .75), transparent);
  opacity: 0;
  animation: bladeGlint 4.8s ease-in-out infinite;
  pointer-events: none;
}

.depth-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
  pointer-events: none;
}

.depth-orbit-a {
  z-index: 0;
  top: 72px;
  right: -34px;
  width: 54%;
  height: 48%;
  transform: translateZ(-80px) rotate(8deg);
}

.depth-orbit-b {
  z-index: 0;
  left: -46px;
  bottom: 48px;
  width: 42%;
  height: 34%;
  transform: translateZ(-120px) rotate(-12deg);
  opacity: .7;
}

.glass-card {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 138px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 24px 64px rgba(11, 18, 32, .2), var(--inner-light);
  backdrop-filter: blur(14px);
  animation: floatCard 5.5s ease-in-out infinite;
}

.glass-card strong {
  font-size: 24px;
}

.glass-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.stat-a {
  top: 42px;
  right: -18px;
}

.stat-b {
  left: -20px;
  bottom: 70px;
  animation-delay: .9s;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: -28px auto 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(11, 18, 32, .12), var(--inner-light);
}

.trust-strip div {
  position: relative;
  padding: 24px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.trust-strip div::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(217, 107, 28, .08), transparent);
  transition: transform .45s ease;
}

.trust-strip div:hover::before {
  transform: translateX(110%);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 28px;
  line-height: 1;
}

.trust-strip strong[data-count="10"]::after {
  content: "+ лет";
}

.trust-strip strong[data-count="30"]::after {
  content: " дней";
}

.trust-strip strong[data-count="150000"]::after {
  content: " ₽";
}

.stat-a strong[data-count="527"]::after {
  content: "+";
}

.ticker {
  display: flex;
  gap: 28px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 14px 0;
  background: rgba(255, 255, 255, .5);
}

.ticker div {
  display: flex;
  min-width: max-content;
  gap: 28px;
  animation: tickerMove 28s linear infinite;
}

.ticker span {
  color: rgba(11, 18, 32, .55);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.split,
.mentor,
.enroll {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.section-copy p,
.section-head p,
.mentor-copy p,
.enroll-copy p {
  color: var(--muted);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.comparison article,
.card,
.plan,
.review,
.calc,
.form {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 46px rgba(11, 18, 32, .07), var(--inner-light);
}

.tilt-card {
  will-change: transform;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tilt-card:hover {
  border-color: rgba(217, 107, 28, .35);
  box-shadow: 0 32px 80px rgba(11, 18, 32, .16), var(--inner-light);
}

.comparison article {
  padding: 26px;
}

.comparison span {
  display: block;
  margin-bottom: 14px;
  font-weight: 900;
}

.negative {
  color: #a33a2b;
}

.positive {
  color: var(--success);
}

.comparison ul,
.plan ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison li,
.plan li {
  margin-top: 10px;
  color: var(--muted);
}

.dark-section {
  max-width: none;
  margin: 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(217, 107, 28, .25), transparent 28%),
    radial-gradient(circle at 75% 42%, rgba(47, 111, 126, .3), transparent 32%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), inset 0 -60px 120px rgba(0,0,0,.16);
}

.dark-section .section-head,
.dark-section .video-grid {
  max-width: 1180px;
  margin-inline: auto;
}

.dark-section p {
  color: rgba(255, 255, 255, .72);
}

.video-grid,
.feature-grid,
.plans,
.reviews,
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .25);
}

.video-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  opacity: .76;
  transition: transform .3s ease, opacity .3s ease;
}

.video-card:hover img {
  transform: scale(1.035);
  opacity: .9;
}

.video-card span {
  position: absolute;
  left: 22px;
  bottom: 58px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: #fff;
  background: var(--copper);
}

.video-card strong {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.plan,
.review,
.calc,
.form {
  padding: 26px;
}

.card {
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(217, 107, 28, .2);
  border-radius: 24px;
  transform: rotate(18deg);
}

.icon,
.label {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--copper-dark);
  background: #fff0e3;
  font-size: 13px;
  font-weight: 900;
}

.gallery-section {
  max-width: none;
  background: var(--soft-2);
  box-shadow: inset 0 60px 120px rgba(255, 255, 255, .48), inset 0 -60px 120px rgba(11, 18, 32, .04);
}

.gallery-section .section-head,
.gallery {
  max-width: 1180px;
  margin-inline: auto;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 26px 72px rgba(11, 18, 32, .15);
  transition: transform .28s ease, filter .28s ease;
}

.gallery img:hover {
  transform: translateY(-10px) scale(1.018);
  filter: contrast(1.06);
}

.depth-stack {
  perspective: 1000px;
}

.depth-stack img:nth-child(1) {
  transform: rotateY(4deg);
}

.depth-stack img:nth-child(2) {
  transform: translateY(24px) translateZ(28px);
}

.depth-stack img:nth-child(3) {
  transform: rotateY(-4deg);
}

.depth-stack img:hover {
  transform: translateY(-12px) scale(1.025) rotateY(0);
}

.mentor-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-deep);
}

.depth-photo {
  position: relative;
}

.depth-photo::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 24px;
  z-index: -1;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--steel), var(--dark));
  box-shadow: 0 34px 80px rgba(24, 37, 54, .2);
}

.mentor-facts span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.plan {
  display: flex;
  min-height: 430px;
  flex-direction: column;
}

.plan strong {
  display: block;
  margin: 14px 0 18px;
  font-size: 38px;
}

.plan .btn {
  width: 100%;
  margin-top: auto;
}

.plan-featured {
  border-color: rgba(217, 107, 28, .42);
  background: linear-gradient(180deg, #fff, #fff7ef);
  transform: translateY(-14px);
  box-shadow: 0 34px 90px rgba(217, 107, 28, .16), var(--inner-light);
}

.calc {
  max-width: 820px;
}

.calc label {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  font-weight: 800;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--copper);
}

.calc-result {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.calc-result div {
  border-radius: 14px;
  padding: 22px;
  background: var(--soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
}

.calc-result span,
.calc-result strong {
  display: block;
}

.calc-result span {
  color: var(--muted);
  font-size: 14px;
}

.calc-result strong {
  margin-top: 6px;
  font-size: 32px;
}

.review img {
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  border-radius: 999px;
  object-fit: cover;
}

.review p {
  color: var(--ink);
  font-weight: 700;
}

.review strong {
  color: var(--muted);
  font-size: 14px;
}

.enroll {
  max-width: none;
  color: #fff;
  background: var(--dark);
  box-shadow: inset 0 80px 140px rgba(255,255,255,.04);
}

.enroll > * {
  max-width: 560px;
}

.enroll p {
  color: rgba(255, 255, 255, .72);
}

.form {
  display: grid;
  gap: 12px;
  width: 100%;
  background: #fff;
}

.form input:not([type='checkbox']),
.form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.form input:focus,
.form select:focus {
  outline: 3px solid rgba(217, 107, 28, .18);
  border-color: var(--copper);
}

.agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  width: 100%;
  overflow: hidden;
}
.agree span {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.cookie {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 560px;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 14px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(24, 37, 54, .94);
  box-shadow: 0 18px 50px rgba(11, 18, 32, .22);
  animation: cookieIn .45s ease both;
}

.cookie button {
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--copper);
  font-weight: 900;
  cursor: pointer;
}

.mobile-sticky {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes softBlink {
  0%, 100% { opacity: .25; transform: translateY(0); }
  50% { opacity: .68; transform: translateY(-2px); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes bladeGlint {
  0%, 72%, 100% { opacity: 0; transform: translateX(-16px) rotate(-24deg); }
  78% { opacity: .95; }
  88% { opacity: 0; transform: translateX(34px) rotate(-24deg); }
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 28px)); }
}

@keyframes cookieIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .split,
  .mentor,
  .enroll {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero-ribbon {
    overflow: hidden;
    justify-content: flex-start;
    white-space: nowrap;
  }

  .hero-media {
    min-height: auto;
    filter: drop-shadow(0 24px 48px rgba(11, 18, 32, .14));
  }

  .hero-media img {
    height: 460px;
  }

  .trust-strip,
  .feature-grid,
  .video-grid,
  .plans,
  .reviews,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 64px;
    padding-inline: 16px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions .btn,
  .form .btn {
    width: 100%;
  }

  .hero-media img {
    height: 360px;
  }

  .depth-orbit,
  .hero::before {
    display: none;
  }

  .hero-ribbon span:nth-child(n+4) {
    display: none;
  }

  .glass-card {
    min-width: 118px;
    padding: 12px 14px;
  }

  .stat-a {
    right: 10px;
    top: 18px;
  }

  .stat-b {
    left: 10px;
    bottom: 18px;
  }

  .trust-strip,
  .comparison,
  .feature-grid,
  .video-grid,
  .plans,
  .reviews,
  .gallery,
  .calc-result {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .plan-featured {
    transform: none;
  }

  .depth-stack img,
  .depth-stack img:nth-child(1),
  .depth-stack img:nth-child(2),
  .depth-stack img:nth-child(3) {
    transform: none;
  }

  .cookie {
    left: 12px;
    right: 12px;
    bottom: 72px;
    font-size: 13px;
  }

  .mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 29;
    display: flex;
    justify-content: center;
    border-radius: 12px;
    padding: 15px 18px;
    color: #fff;
    background: var(--copper);
    box-shadow: 0 16px 36px rgba(217, 107, 28, .3);
    font-weight: 900;
  }
}

/* ── Footer ── */
.site-footer {
  background: var(--dark-2);
  color: rgba(255,255,255,.7);
  padding: 48px clamp(18px,4vw,56px);
  margin-top: 0;
}
.footer-inner {
  max-width: 820px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #fff;
}
.footer-brand strong { font-size: 15px; }
.footer-brand em { font-size: 12px; color: rgba(255,255,255,.5); font-style: normal; display: block; }
.site-footer p { margin: 6px 0; font-size: 14px; line-height: 1.6; }
.footer-legal { color: rgba(255,255,255,.4); font-size: 13px !important; }
.footer-links { margin-top: 20px !important; display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.55); font-size: 13px; text-decoration: underline; text-underline-offset: 3px; }
.footer-links a:hover { color: #fff; }

/* ── Form field errors ── */
.form input:not([type='checkbox']), .form select, .form textarea {
  transition: border-color .2s, box-shadow .2s;
}
