/* ===== PREMIUM — RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: #1c1c1c;
  background: #f6f4f0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
table { border-collapse: collapse; width: 100%; }

/* ===== PREMIUM VARIABLES ===== */
:root {
  --bg: #f6f4f0;
  --bg-paper: #fdfcfa;
  --bg-dark: #0f0f0e;
  --text: #1c1c1c;
  --text-muted: #5a5856;
  --gold: #b8922e;
  --gold-light: rgba(184, 146, 46, .12);
  --gold-border: rgba(184, 146, 46, .35);
  --wa: #25d366;
  --wa-hover: #20bd5a;
  --font-heading: 'Open Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --container: min(92vw, 1140px);
  --radius: 8px;
  --radius-sm: 6px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
  --line: 1px solid rgba(0, 0, 0, .06);
  --line-dark: 1px solid rgba(255, 255, 255, .1);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section {
  padding-block: clamp(4rem, 10vw, 6.5rem);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 0.4em;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-title-light {
  color: #fff;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: #9a7a26;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(184, 146, 46, .28);
}

.btn-large {
  padding: 1.1rem 2.25rem;
  font-size: 1rem;
}

.btn-whatsapp {
  background: var(--wa);
  color: #fff;
  padding: 1.1rem 2.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: var(--wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .4);
}

/* ===== HERO — PREMIUM ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 14, .45) 0%, rgba(15, 15, 14, .82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 3rem;
}

.hero-topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.25rem;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(0, 0, 0, .25);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 5.2vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 0.85em;
  max-width: 100%;
  margin-inline: auto;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, .88);
  margin: 0 0 2rem;
  max-width: 34ch;
  margin-inline: auto;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero .btn-primary {
  margin: 0;
}

/* ===== PAINS — PREMIUM ===== */
.pains {
  background: var(--bg-paper);
  border-bottom: var(--line);
}

.pains .section-title {
  margin-bottom: 0.6em;
}

.pains-list {
  max-width: 440px;
  margin: 0 auto 1.75rem;
}

.pains-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.9rem;
  font-size: 1.0625rem;
  color: var(--text);
}

.pains-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 0;
}

.pains-close {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.3125rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0;
}

/* ===== TRUST — PREMIUM CARDS ===== */
.trust {
  background: var(--bg);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.trust-card {
  background: var(--bg-paper);
  padding: 2rem 2rem 2rem 2.25rem;
  border-radius: var(--radius);
  border: var(--line);
  border-left: 3px solid var(--gold);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.trust-card:hover {
  border-left-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
}

.trust-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.85rem;
}

.trust-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.4em;
  color: var(--text);
  letter-spacing: -0.01em;
}

.trust-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== SERVICES — WHAT WE DO ===== */
.services {
  background: var(--bg-paper);
  border-top: var(--line);
  border-bottom: var(--line);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  border: var(--line);
  padding: 1.5rem 1.6rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .06);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
  color: var(--text);
}

.service-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.services-note {
  margin: 2.25rem auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* ===== STEPS — PREMIUM ===== */
.steps {
  background: var(--bg-paper);
  border-bottom: var(--line);
}

.steps-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 2.5rem;
  align-items: center;
}

.steps-media img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
}

.steps-content {
  max-width: 560px;
  margin-left: auto;
}

.steps-list {
  max-width: 540px;
  margin: 0 0 2.5rem;
  counter-reset: step;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  counter-increment: step;
}

.step-num {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  border-radius: var(--radius-sm);
}

.step-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 600;
  margin: 0 0 0.25em;
  color: var(--text);
}

.step-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.steps-cta {
  text-align: center;
}

@media (max-width: 899px) {
  .steps-layout {
    display: block;
  }

  .steps-media {
    margin-bottom: 2rem;
  }

  .steps-content {
    margin-left: 0;
  }
}

/* ===== PORTFOLIO — PREMIUM ===== */
.portfolio {
  background: var(--bg);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}

.filter-btn {
  padding: 0.5rem 1.125rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  background: var(--bg-paper);
  border: var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.portfolio-card {
  background: var(--bg-paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--line);
  transition: border-color var(--transition), opacity var(--transition), box-shadow var(--transition);
}

.portfolio-card:hover {
  border-color: rgba(0, 0, 0, .1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
}

.portfolio-card.hidden {
  display: none;
}

.portfolio-card:not(.hidden) {
  animation: fadeIn 0.45s var(--ease);
}

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

.portfolio-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

.portfolio-images img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.portfolio-meta {
  padding: 1.125rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.02em;
}

/* Портфолио — видео кейсы (без описания) */
.portfolio-grid-video {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .portfolio-grid-video {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .portfolio-grid-video {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .portfolio-grid-video {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.portfolio-video-card {
  position: relative;
  background: var(--bg-paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--line);
  transition: border-color var(--transition), box-shadow var(--transition);
  aspect-ratio: 9 / 16;
}

.portfolio-video-card:hover {
  border-color: rgba(0, 0, 0, .1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
}

.portfolio-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
  border: none;
}

/* Custom video shell and controls */
.video-shell {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-play-toggle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), opacity var(--transition), visibility var(--transition);
}

.video-play-toggle::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  margin-left: 3px;
}

.video-play-toggle.is-playing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-play-toggle:hover {
  background: rgba(0, 0, 0, .75);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}

.video-controls {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(8px);
}

.video-controls button {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.video-controls button:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-1px);
}

.video-mute-toggle::before {
  content: '🔊';
  font-size: 16px;
}

.video-mute-toggle.is-muted::before {
  content: '🔇';
}

.video-fullscreen-toggle::before {
  content: '⤢';
  font-size: 16px;
}

/* ===== NUMBERS — PREMIUM ===== */
.numbers {
  background: var(--bg-dark);
  color: #fff;
  padding-block: clamp(4rem, 10vw, 6rem);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 600px) {
  .numbers-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.number-item {
  text-align: center;
  padding: 0 0.5rem;
}

.number-item:not(:last-child) {
  border-right: none;
}

@media (min-width: 600px) {
  .number-item:not(:last-child) {
    border-right: var(--line-dark);
  }
}

.number-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.number-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, .8);
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

/* ===== REVIEWS — PREMIUM ===== */
.reviews {
  background: var(--bg-paper);
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.review-card {
  background: var(--bg);
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  border: var(--line);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  border-color: rgba(0, 0, 0, .08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .04);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}

.review-card blockquote {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
  font-style: normal;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.review-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
}

.review-author span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.reviews-footer {
  text-align: center;
  margin-top: 2.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== COMPARISON — PREMIUM ===== */
.comparison {
  background: var(--bg);
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 2.5rem;
  border-radius: var(--radius);
  border: var(--line);
  background: var(--bg-paper);
}

.comparison-table {
  min-width: 320px;
}

.comparison-table th,
.comparison-table td {
  padding: 1.125rem 1.5rem;
  text-align: left;
  border-bottom: var(--line);
}

.comparison-table thead th {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  background: var(--bg);
  letter-spacing: 0.02em;
}

.comparison-table th.comparison-us,
.comparison-table td.comparison-us {
  background: var(--gold-light);
  color: var(--text);
  font-weight: 500;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* ===== OFFER — PREMIUM ===== */
.offer {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
}

.offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  opacity: .6;
}

.offer-box {
  max-width: 520px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  text-align: center;
}

.offer-box .section-title {
  color: #fff;
  margin-bottom: 1.25rem;
}

.offer-list {
  text-align: left;
  margin: 0 0 1.75rem;
  padding-left: 1.5rem;
}

.offer-list li {
  margin-bottom: 0.5rem;
}

.offer-list li::marker {
  content: '✓ ';
  color: var(--gold);
}

.offer-urgency {
  font-size: 0.9375rem;
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, .88);
  letter-spacing: 0.02em;
}

.offer-box .btn-primary {
  margin: 0;
}

/* ===== FAQ — PREMIUM ===== */
.faq {
  background: var(--bg-paper);
  border-bottom: var(--line);
}

.faq-list {
  max-width: 620px;
  margin: 2.5rem auto 0;
}

.faq-item {
  border-bottom: var(--line);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  letter-spacing: 0.01em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CTA FINAL — PREMIUM ===== */
.cta-final {
  background: var(--gold);
  color: #fff;
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 5rem);
}

.cta-final-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

.cta-final-text {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  opacity: .95;
}

.cta-final-note {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  opacity: .9;
}

.btn-whatsapp {
  margin: 0;
}

/* ===== FOOTER — PREMIUM ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, .78);
  padding-block: 3rem;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.footer-brand p,
.footer-links p,
.footer-address p {
  margin: 0;
  opacity: .9;
}

.footer-links p + p {
  margin-top: 0.25rem;
}

.footer-copy {
  margin: 0;
  opacity: .55;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

/* ===== STICKY WHATSAPP — PREMIUM ===== */
.sticky-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  background: var(--wa);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.sticky-wa:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .45);
  color: #fff;
}

.sticky-wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-wa-text {
  display: none;
}

@media (min-width: 480px) {
  .sticky-wa-text {
    display: inline;
  }
}

@media (max-width: 479px) {
  .sticky-wa {
    padding: 0.9rem 1.1rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .sticky-wa svg {
    width: 24px;
    height: 24px;
  }
}

/* ===== LEGAL / PRIVACY PAGE ===== */
.legal-header {
  background: var(--bg-paper);
  border-bottom: var(--line);
  padding: 1rem 0;
}

.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.legal-logo:hover {
  color: var(--gold);
}

.legal-section {
  padding-top: 2.5rem;
}

.legal-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.legal-updated {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0 0 2.5rem;
}

.legal-content {
  max-width: 680px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.01em;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
}

.legal-content a:hover {
  color: #9a7a26;
}

.legal-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.legal-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}

.legal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.footer-link {
  color: rgba(255, 255, 255, .9);
  text-decoration: underline;
}

.footer-link:hover {
  color: #fff;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
