/* ═══════════════════════════════════════════════════════════
   Heppsu Consulting — brand stylesheet
   Palette derived from the logo: warm taupe ground, gold leaf.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* colour */
  --ink:        #16110E;
  --ground:     #241E1A;
  --ground-2:   #2C2521;
  --taupe:      #4A403A;
  --gold:       #C9A961;
  --gold-light: #E4CE94;
  --gold-deep:  #9C7C3C;
  --cream:      #F3EDE4;
  --muted:      #B4A79B;
  --line:       rgba(201, 169, 97, .16);
  --line-soft:  rgba(243, 237, 228, .08);

  /* type */
  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* rhythm */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1200px;
  --section-y: clamp(5rem, 11vw, 9.5rem);
  --radius: 4px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-weight: 400; letter-spacing: -.01em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--ink); padding: .75rem 1.25rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* sections receive focus programmatically after in-page navigation —
   the focus is for screen readers, not something to draw a ring around */
[tabindex="-1"]:focus { outline: none; }

/* ─────────── shared type ─────────── */

.eyebrow {
  margin: 0 0 1.1rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.12;
  font-weight: 400;
  color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold-light); }

.section-lead {
  margin: 1.25rem 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.section { padding-block: var(--section-y); position: relative; }
.section-alt { background: var(--ground-2); }
.section-alt::before,
.section-alt::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.section-alt::before { top: 0; }
.section-alt::after { bottom: 0; }

.section-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }

/* ─────────── buttons ─────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 2.1rem;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .4s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: var(--ink);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(201, 169, 97, .55);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--cream);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ═══════════ HEADER ═══════════ */

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.1rem;
  transition: background .45s var(--ease), padding .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(36, 30, 26, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding-block: .7rem;
}

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

.brand { display: flex; align-items: center; gap: .7rem; }
.brand-mark { width: 34px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem; letter-spacing: .24em; color: var(--gold-light);
}
.brand-sub {
  font-size: .52rem; letter-spacing: .42em; color: var(--muted);
  margin-top: .3rem;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  position: relative;
  font-size: .82rem; font-weight: 400; letter-spacing: .06em;
  color: var(--muted);
  transition: color .3s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s var(--ease);
}
.nav a:hover { color: var(--cream); }
.nav a:hover::after,
.nav a.is-current::after { width: 100%; }
.nav a.is-current { color: var(--gold-light); }

.nav .nav-cta {
  padding: .5rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--gold-light);
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { border-color: var(--gold); background: rgba(201, 169, 97, .08); }

.header-tools { display: flex; align-items: center; gap: 1rem; }

.lang-switch {
  display: flex; align-items: center; gap: .35rem;
  font-size: .72rem; letter-spacing: .1em;
}
.lang-switch button {
  background: none; border: 0; cursor: pointer; padding: .25rem .1rem;
  font: inherit; color: var(--muted);
  transition: color .3s var(--ease);
}
.lang-switch button:hover { color: var(--cream); }
.lang-switch button.is-active { color: var(--gold); font-weight: 600; }
.lang-sep { color: var(--line-soft); }

.burger {
  display: none;
  width: 40px; height: 34px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 6px;
  padding: 0;
}
.burger span {
  display: block; height: 1px; width: 24px; margin-left: auto;
  background: var(--cream);
  transition: transform .4s var(--ease), opacity .3s var(--ease), width .3s var(--ease);
}
.burger span:nth-child(2) { width: 17px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { width: 24px; transform: translateY(-7px) rotate(-45deg); }

/* ═══════════ HERO ═══════════ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-block: 9rem 5rem;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  animation: float 18s ease-in-out infinite;
}
.orb-1 {
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  top: -12%; right: -8%;
  background: radial-gradient(circle, rgba(201,169,97,.30), transparent 68%);
}
.orb-2 {
  width: 38vw; height: 38vw; max-width: 520px; max-height: 520px;
  bottom: -14%; left: -10%;
  background: radial-gradient(circle, rgba(74,64,58,.85), transparent 70%);
  animation-delay: -8s;
}
@keyframes float {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(0,-28px,0) scale(1.06); }
}

.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 78%);
  opacity: .8;
}

.hero-inner { position: relative; z-index: 1; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.9rem, 8.5vw, 6.6rem);
  line-height: 1.03;
  font-weight: 300;
  letter-spacing: -.02em;
  margin-bottom: 1.9rem;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 54ch;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--muted);
  margin: 0 0 2.6rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }

.hero-pillars { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; }
.pillar-chip {
  display: flex; align-items: center; gap: .8rem;
  font-size: .84rem; letter-spacing: .04em; color: var(--muted);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  min-width: 240px;
}
.chip-num {
  font-family: var(--serif);
  font-size: 1.15rem; color: var(--gold);
}

.scroll-hint {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  width: 1px; height: 54px; background: var(--line); overflow: hidden;
}
.scroll-hint span {
  display: block; width: 100%; height: 22px; background: var(--gold);
  animation: drop 2.4s var(--ease) infinite;
}
@keyframes drop {
  0%   { transform: translateY(-24px); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(54px); opacity: 0; }
}

/* ═══════════ SERVICES ═══════════ */

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

.service-card {
  position: relative;
  padding: clamp(2rem, 3.5vw, 3rem);
  background: linear-gradient(160deg, rgba(243,237,228,.04), rgba(243,237,228,.01));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color .45s var(--ease), transform .45s var(--ease), background .45s var(--ease);
}
.service-card::before {
  content: ''; position: absolute; inset: 0 auto 0 0; width: 2px;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  opacity: 0; transition: opacity .45s var(--ease);
}
.service-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
  background: linear-gradient(160deg, rgba(243,237,228,.06), rgba(243,237,228,.015));
}
.service-card:hover::before { opacity: 1; }

.service-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.service-num {
  font-family: var(--serif); font-size: 1rem;
  letter-spacing: .2em; color: var(--gold);
}
.service-icon { width: 30px; height: 30px; color: var(--gold); opacity: .75; }

.service-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  margin-bottom: .9rem;
}
.service-desc { color: var(--muted); margin: 0 0 2rem; }

.service-list { display: grid; gap: .85rem; }
.service-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .93rem;
  color: rgba(243,237,228,.82);
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: .68em;
  width: 8px; height: 1px; background: var(--gold);
}

/* ═══════════ EXPERTISE ═══════════ */

.expertise-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}
.col-title {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 1rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.tags { display: flex; flex-wrap: wrap; gap: .55rem; }
.tag {
  padding: .42rem .95rem;
  font-size: .78rem; letter-spacing: .03em;
  color: var(--muted);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.tag:hover { color: var(--gold-light); border-color: var(--line); }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.stat { text-align: center; }
.stat-num, .stat-plus {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 3.6rem);
  line-height: 1;
  color: var(--gold-light);
}
.stat-plus { color: var(--gold); }
.stat-label {
  display: block; margin-top: .8rem;
  font-size: .78rem; letter-spacing: .08em; color: var(--muted);
}

.stats-note {
  max-width: 62ch;
  margin: 2.2rem auto 0;
  text-align: center;
  font-size: .84rem;
  line-height: 1.75;
  color: rgba(180, 167, 155, .75);
}

/* ═══════════ WORK ═══════════ */

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.work-card {
  display: flex; flex-direction: column;
  background: var(--ground-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.section-alt .work-card { background: var(--ground); }
.work-card:hover { transform: translateY(-6px); border-color: var(--line); }
.work-card--wide { grid-column: span 2; }

.work-media {
  position: relative;
  aspect-ratio: 16 / 8;
  display: grid; place-items: center;
  color: var(--gold);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,169,97,.14), transparent 62%),
    linear-gradient(150deg, var(--taupe), var(--ink));
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.work-media svg { width: 68%; height: auto; transition: transform .7s var(--ease); }
.work-card:hover .work-media svg { transform: scale(1.06); }
.work-card--wide .work-media { aspect-ratio: 21 / 8; }

.work-body { padding: clamp(1.5rem, 2.5vw, 2.2rem); }
.work-kicker {
  margin: 0 0 .7rem;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}
.work-body h3 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  margin-bottom: .7rem;
}
.work-body p { margin: 0; color: var(--muted); font-size: .95rem; }

.work-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.4rem; }
.work-tags span {
  font-size: .68rem; letter-spacing: .08em;
  padding: .28rem .7rem;
  color: rgba(243,237,228,.62);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
}

.work-note {
  margin: 2.5rem 0 0;
  font-size: .86rem; color: var(--muted); font-style: italic;
  max-width: 62ch;
}

/* ═══════════ PROCESS ═══════════ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: var(--ground-2);
  transition: background .45s var(--ease);
}
.step:hover { background: var(--ground); }
.step-num {
  display: block;
  font-family: var(--serif); font-size: 1rem;
  letter-spacing: .22em; color: var(--gold);
  margin-bottom: 1.4rem;
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: .7rem;
}
.step p { margin: 0; font-size: .92rem; color: var(--muted); }

/* ═══════════ ABOUT ═══════════ */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about-visual {
  position: relative;
  display: grid; place-items: center;
  aspect-ratio: 1;
  max-width: 380px; width: 100%; margin-inline: auto;
}
.about-mark { width: 44%; opacity: .95; }
.about-ring {
  position: absolute; inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.about-ring::before,
.about-ring::after {
  content: ''; position: absolute; border-radius: 50%;
  border: 1px solid var(--line-soft);
}
.about-ring::before { inset: 12%; }
.about-ring::after {
  inset: -10%;
  border-style: dashed;
  border-color: rgba(201,169,97,.10);
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.about-text p { color: var(--muted); max-width: 58ch; }
.about-text .section-title { margin-bottom: 1.5rem; }

.values {
  display: grid; gap: 1.2rem;
  margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.values li { display: grid; gap: .2rem; }
.values strong {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.15rem; color: var(--gold-light);
}
.values span { font-size: .92rem; color: var(--muted); }

/* ═══════════ CONTACT ═══════════ */

.contact { padding-bottom: calc(var(--section-y) * 1.1); }
.contact-card {
  position: relative;
  text-align: center;
  padding: clamp(2.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,169,97,.10), transparent 62%),
    linear-gradient(165deg, var(--ground-2), var(--ink));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact-card .section-lead { margin-inline: auto; }
.contact-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-top: 2.5rem;
}
.contact-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.8rem;
  margin: clamp(3rem, 6vw, 4.5rem) 0 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-soft);
}
.contact-meta dt {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
}
.contact-meta dd { margin: 0; font-size: .95rem; color: var(--cream); }
.contact-meta a:hover { color: var(--gold-light); }

/* ═══════════ FOOTER ═══════════ */

.site-footer {
  padding-block: 3.5rem;
  border-top: 1px solid var(--line-soft);
  background: var(--ink);
}
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: .7rem; }
.footer-brand div { display: flex; flex-direction: column; line-height: 1; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.footer-nav a {
  font-size: .82rem; color: var(--muted);
  transition: color .3s var(--ease);
}
.footer-nav a:hover { color: var(--gold-light); }
/* Правните връзки заемат собствен ред под останалото. */
.footer-nav-legal {
  flex-basis: 100%;
  gap: 1.2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}
.footer-nav-legal a { font-size: .76rem; }
.footer-legal { font-size: .76rem; color: rgba(180,167,155,.7); text-align: right; }
.footer-legal p { margin: 0 0 .35rem; }
.footer-legal .copy { color: rgba(180,167,155,.45); }

/* ═══════════ REVEAL ═══════════ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* stagger children of a grid */
.services-grid .reveal:nth-child(2),
.work-grid .reveal:nth-child(2),
.steps .reveal:nth-child(2),
.expertise-cols .reveal:nth-child(2) { transition-delay: .1s; }
.work-grid .reveal:nth-child(3),
.steps .reveal:nth-child(3),
.expertise-cols .reveal:nth-child(3) { transition-delay: .2s; }
.work-grid .reveal:nth-child(4),
.steps .reveal:nth-child(4) { transition-delay: .3s; }
.work-grid .reveal:nth-child(5) { transition-delay: .4s; }

/* ═══════════ RESPONSIVE ═══════════ */

@media (max-width: 960px) {
  .work-card--wide { grid-column: span 1; }
  .work-card--wide .work-media { aspect-ratio: 16 / 8; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 260px; order: -1; }
}

@media (max-width: 860px) {
  .burger { display: flex; }

  .nav {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center;
    gap: 2rem;
    background: rgba(22, 17, 14, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0; visibility: hidden;
    transition: opacity .45s var(--ease), visibility .45s var(--ease);
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav a { font-family: var(--serif); font-size: 1.85rem; color: var(--cream); }
  .nav .nav-cta { font-family: var(--sans); font-size: 1rem; padding: .8rem 2rem; }

  /* position is required for z-index to apply — without it the burger
     ends up underneath the full-screen nav overlay */
  .header-tools { position: relative; z-index: 101; }
  .brand { position: relative; z-index: 101; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-legal { text-align: center; }
}

@media (max-width: 560px) {
  .hero { min-height: auto; padding-block: 8rem 4.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .scroll-hint { display: none; }
  .pillar-chip { min-width: 100%; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════ MOTION / PRINT ═══════════ */

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

@media print {
  .site-header, .scroll-hint, .hero-bg { display: none; }
  body { background: #fff; color: #111; }
}

/* ── Правни страници (my-life-within-privacy.html и др.) ─────────────────────────────────────
   Стиловете са тук, а не вградени в страницата, защото CSP-то в `_headers`
   разрешава само `style-src 'self'` — вграден <style> блок се блокира тихо и
   страницата излиза без оформление. */
.legal { max-width: 46rem; margin: 0 auto; padding: 4rem 1.25rem 6rem; }
.legal h1 { margin-bottom: .25rem; }
.legal h2 { margin-top: 3rem; }
.legal h3 { margin-top: 2rem; font-size: 1.05rem; }
.legal p, .legal li { line-height: 1.7; }
.legal ul { padding-left: 1.25rem; }
.legal .updated { opacity: .7; font-size: .9rem; }
.legal .lead { font-size: 1.15rem; }
.legal hr { margin: 4rem 0; border: 0; border-top: 1px solid currentColor; opacity: .15; }
.legal .jump { margin: 1.5rem 0 0; font-size: .95rem; }

/* Незапълнени фирмени данни. Виждат се нарочно, за да не отидат така в продукция —
   махни класа, когато стойността е истинска. */
.legal .todo {
  background: rgba(201, 169, 97, .18);
  border-bottom: 1px dashed var(--gold);
  padding: 0 .15em;
}
