/* ==========================================================================
   sky-linebusiness.com — "Bloom" edition
   Gradient-led consumer identity: magenta→violet, soft light, generous radii.
   No external fonts, no CDN, no image assets.
   ========================================================================== */

:root {
  /* Brand ramp */
  --pink:        #ff5fa2;
  --pink-soft:   #ff8fc4;
  --violet:      #a33fe0;
  --violet-deep: #7c3aed;
  --grad:        linear-gradient(118deg, #ff5fa2 0%, #ff4fb0 34%, #a33fe0 100%);
  --grad-soft:   linear-gradient(140deg, #ffe3f2 0%, #f2e6ff 100%);

  /* Ink */
  --ink:         #2a1436;
  --ink-2:       #5c4670;
  --ink-3:       #9483a6;

  /* Surfaces */
  --paper:       #fffafd;
  --paper-2:     #fdeef8;
  --paper-3:     #f7e6fa;
  --card:        #ffffff;
  --rule:        #f5dcec;
  --rule-strong: #e9c6e2;

  /* Legacy aliases kept so the legal pages keep resolving */
  --accent:      #e0218a;
  --accent-ink:  #b3166b;
  --pine:        #7c3aed;

  /* Placeholder highlight */
  --mark:        #ffe9f4;
  --mark-line:   #ff7ab8;
  --mark-text:   #b3166b;

  --shadow-sm:   0 10px 26px -18px rgba(110, 33, 150, 0.45);
  --shadow:      0 22px 50px -26px rgba(110, 33, 150, 0.42);
  --shadow-lg:   0 40px 80px -38px rgba(126, 36, 170, 0.55);
  --hairline:    1px solid rgba(163, 63, 224, 0.10);

  --sans: "Inter", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system,
          "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --serif: var(--sans);

  --max: 1140px;
  --gut: clamp(20px, 4vw, 44px);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Bloom — soft light pooling behind the page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(58% 42% at 10% -6%, #ffd9ec 0%, rgba(255, 217, 236, 0) 62%),
    radial-gradient(52% 40% at 94% 4%, #e4d3ff 0%, rgba(228, 211, 255, 0) 64%),
    radial-gradient(64% 48% at 48% 104%, #f6e2ff 0%, rgba(246, 226, 255, 0) 62%),
    linear-gradient(180deg, #fffafd 0%, #fdf6ff 52%, #fbf2ff 100%);
}

img { max-width: 100%; }

::selection { background: #ffcfe6; color: var(--ink); }

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

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

/* ==========================================================================
   Masthead
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 253, 0.82);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: var(--hairline);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex: none;
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: block;
  flex: none;
  filter: drop-shadow(0 8px 16px rgba(163, 63, 224, 0.32));
}

.brand__name {
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.brand__name em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__links a {
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.nav__links a:hover {
  background: rgba(255, 95, 162, 0.10);
  color: var(--accent-ink);
}

.nav__links a.is-active {
  background: rgba(163, 63, 224, 0.12);
  color: var(--violet-deep);
}

.nav__toggle {
  display: none;
  padding: 10px 12px;
  border: 0;
  border-radius: 14px;
  background: rgba(163, 63, 224, 0.10);
  color: var(--violet-deep);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

/* ==========================================================================
   Shared type devices
   ========================================================================== */

.eyebrow,
.section__kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 95, 162, 0.11);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.eyebrow::before,
.section__kicker::before { content: none; }

.eyebrow .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--grad);
  vertical-align: middle;
}

h1, h2, h3, h4 { margin-top: 0; color: var(--ink); }

.hero__lede {
  max-width: 56ch;
  margin: 22px 0 0;
  font-size: clamp(17px, 2vw, 19.5px);
  line-height: 1.68;
  color: var(--ink-2);
}

.grad {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
              background-color 0.18s ease, color 0.18s ease;
}

.btn--primary {
  background: var(--grad);
  color: #fff;
  border: 0;
  box-shadow: 0 16px 32px -14px rgba(255, 79, 176, 0.6);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -14px rgba(163, 63, 224, 0.58);
}

.btn--ghost {
  background: #fff;
  color: var(--violet-deep);
  border: 1px solid rgba(163, 63, 224, 0.20);
  box-shadow: var(--shadow-sm);
}

.btn--ghost::after { content: none; }

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(163, 63, 224, 0.4);
  color: var(--accent-ink);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { padding: clamp(44px, 6vw, 88px) 0 clamp(24px, 3vw, 40px); }

.hero h1 {
  margin: 0;
  font-size: clamp(33px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.034em;
}

.hero--front > .container {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(0, 0.85fr);
  gap: clamp(30px, 4.4vw, 60px);
  align-items: start;
}

.hero__standfirst {
  max-width: min(48ch, 100%);
  margin: 24px 0 0;
  font-size: clamp(17px, 2vw, 19.5px);
  line-height: 1.68;
  color: var(--ink-2);
}

/* "In numbers" column — a floating card */
.aside {
  background: var(--card);
  border: var(--hairline);
  border-radius: 28px;
  padding: 26px 26px 20px;
  box-shadow: var(--shadow);
}

.aside__label {
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.stats { margin: 0; }

.stat {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}

.stat:last-child { border-bottom: 0; padding-bottom: 6px; }

.stat__num {
  display: block;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.aside__note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  line-height: 1.62;
  color: var(--ink-3);
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section { padding: clamp(48px, 6vw, 84px) 0; }

.section__head { max-width: 64ch; }

.section__head h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.section__head p {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}

/* Numbered editorial index → stacked cards */
.index-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: clamp(28px, 3.6vw, 44px) 0 0;
  padding: 0;
}

.index-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: clamp(16px, 2.6vw, 30px);
  padding: clamp(22px, 2.6vw, 30px) clamp(22px, 2.8vw, 34px);
  background: var(--card);
  border: var(--hairline);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.index-list li:last-child { border-bottom: var(--hairline); }

.index-list .no,
.step .no {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: var(--sans);
  font-style: normal;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 12px 24px -12px rgba(255, 79, 176, 0.7);
}

.index-list h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

.index-list p {
  margin: 0;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink-2);
}

/* Pull quote → gradient slab */
.pullquote {
  margin: clamp(52px, 6.4vw, 92px) 0;
  padding: clamp(40px, 5vw, 66px) clamp(26px, 5vw, 62px);
  background: var(--grad);
  border: 0;
  border-radius: 34px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.pullquote blockquote {
  margin: 0 auto;
  max-width: min(34ch, 100%);
  font-size: clamp(21px, 3vw, 34px);
  font-weight: 700;
  font-style: normal;
  line-height: 1.32;
  letter-spacing: -0.025em;
  color: #fff;
}

.pullquote cite {
  display: block;
  margin-top: 18px;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Catalogue — genre cards
   ========================================================================== */

.catalogue {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 3.6vw, 44px);
  border-bottom: 0;
}

.cat {
  padding: 22px clamp(20px, 2.4vw, 26px) 24px;
  background: var(--card);
  border: var(--hairline);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.cat__name {
  display: block;
  font-size: 18.5px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  white-space: normal;
}

.cat__leader { display: none; }

.cat__meta {
  display: inline-block;
  max-width: none;
  margin-top: 10px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(163, 63, 224, 0.10);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-deep);
  text-align: left;
  line-height: 1.4;
}

.cat__desc {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.66;
  color: var(--ink-3);
}

.catalogue__note {
  margin: 20px 0 0;
  font-size: 14.5px;
  color: var(--ink-3);
}

/* ==========================================================================
   Two-page spread → two cards
   ========================================================================== */

.spread {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.spread > * {
  padding: clamp(26px, 3vw, 38px);
  background: var(--card);
  border: var(--hairline);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.spread > *:last-child {
  padding-left: clamp(26px, 3vw, 38px);
  border-left: var(--hairline);
}

.spread h2 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 29px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.spread p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
}

.checklist {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.checklist li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 24px;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--ink-2);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grad);
}

/* ==========================================================================
   Process steps
   ========================================================================== */

.steps {
  display: grid;
  gap: 14px;
  margin-top: clamp(28px, 3.6vw, 44px);
  border-top: 0;
}

.step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: clamp(16px, 2.6vw, 30px);
  padding: clamp(20px, 2.4vw, 26px) clamp(22px, 2.8vw, 34px);
  background: var(--card);
  border: var(--hairline);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.step h3 {
  margin: 0 0 6px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.step p {
  margin: 0;
  max-width: 60ch;
  font-size: 15.5px;
  line-height: 1.66;
  color: var(--ink-2);
}

/* ==========================================================================
   Gradient call-to-action
   ========================================================================== */

.band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(34px, 4.4vw, 56px) clamp(26px, 4vw, 56px);
  background: var(--grad);
  border-radius: 34px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.band h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.band p {
  margin: 10px 0 0;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.84);
}

.band .btn--primary {
  background: #fff;
  border: 0;
  color: var(--accent-ink);
  box-shadow: 0 18px 34px -18px rgba(42, 20, 54, 0.6);
}

.band .btn--primary:hover {
  background: #fff2f9;
  color: var(--violet-deep);
}

/* ==========================================================================
   Correspondence
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(22px, 3vw, 34px);
  border-top: 0;
}

.contact-card {
  padding: 24px clamp(20px, 2.6vw, 28px) 26px;
  background: var(--card);
  border: var(--hairline);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  border-right: var(--hairline);
}

.contact-card:last-child { border-right: var(--hairline); padding-right: clamp(20px, 2.6vw, 28px); }

.contact-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.contact-card strong {
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.5;
  word-break: break-word;
}

.contact-card strong a {
  color: var(--ink);
  text-decoration: none;
}

.contact-card strong a:hover { color: var(--accent-ink); }

/* Single correspondent — one address for the whole house */
.contact-grid--single { grid-template-columns: minmax(0, 1fr); }

.contact-grid--single .contact-card {
  padding: 30px clamp(24px, 3vw, 36px) 32px;
}

.contact-grid--single .contact-card strong {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-grid--single .contact-card strong a { color: inherit; }
.contact-grid--single .contact-card strong a:hover { color: inherit; }

/* ==========================================================================
   Legal pages
   ========================================================================== */

.page-hero {
  padding: clamp(40px, 5.4vw, 72px) 0 clamp(26px, 3.4vw, 40px);
  border-bottom: 0;
}

.page-hero h1 {
  margin: 16px 0 0;
  font-size: clamp(33px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.chip {
  display: inline-flex;
  gap: 7px;
  padding: 8px 15px;
  border: var(--hairline);
  border-radius: 999px;
  background: var(--card);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  box-shadow: var(--shadow-sm);
}

.chip b {
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

.legal-layout {
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(30px, 3.4vw, 46px) 0 clamp(40px, 5vw, 70px);
  align-items: start;
}

.toc {
  position: sticky;
  top: 104px;
  align-self: start;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding: 22px 22px 6px;
  background: var(--card);
  border: var(--hairline);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.toc h4 {
  margin: 0 0 14px;
  padding: 0;
  border-bottom: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.toc li {
  counter-increment: toc;
  border-bottom: 1px solid var(--rule);
}

.toc li:last-child { border-bottom: 0; }

.toc a {
  position: relative;
  display: block;
  padding: 10px 0 10px 26px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.16s ease;
}

.toc a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-3);
}

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

.toc a.is-active { color: var(--violet-deep); font-weight: 700; }
.toc a.is-active::before { color: var(--violet-deep); }

.legal-body {
  min-width: 0;
  padding: clamp(26px, 3.2vw, 46px);
  background: var(--card);
  border: var(--hairline);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  line-height: 1.78;
  color: var(--ink-2);
}

.legal-intro {
  margin: 0 0 36px;
  padding: 20px 22px;
  border-left: 0;
  border-radius: 18px;
  background: rgba(255, 95, 162, 0.07);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
}

.legal-section {
  padding-top: 8px;
  margin-bottom: clamp(34px, 4.2vw, 52px);
}

.legal-section h2 {
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  line-height: 1.26;
  letter-spacing: -0.022em;
  color: var(--ink);
}

.legal-section h2 .n {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--grad);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  vertical-align: 3px;
}

.legal-section h3 {
  margin: 30px 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-deep);
}

.legal-body p { margin: 0 0 17px; }

.legal-body strong { color: var(--ink); }

.legal-body a {
  color: var(--accent-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 33, 138, 0.28);
}

.legal-body a:hover { border-bottom-color: var(--accent); }

.legal-body ul,
.legal-body ol {
  margin: 0 0 19px;
  padding: 0 0 0 24px;
}

.legal-body ul { list-style: none; padding-left: 0; }

.legal-body ul > li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
}

.legal-body ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
}

.legal-body ol > li { margin-bottom: 10px; padding-left: 6px; }

.legal-body ol > li::marker { color: var(--accent); font-weight: 700; }

.legal-body li > ul,
.legal-body li > ol { margin-top: 10px; }

/* Tables — light, rounded, no heavy rules */
.legal-body table {
  width: 100%;
  margin: 24px 0 26px;
  border-collapse: separate;
  border-spacing: 0;
  border: var(--hairline);
  border-radius: 18px;
  overflow: hidden;
  font-size: 15px;
}

.legal-body thead th {
  padding: 13px 16px;
  border-bottom: 1px solid var(--rule);
  background: rgba(163, 63, 224, 0.06);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-deep);
  text-align: left;
  vertical-align: bottom;
}

.legal-body tbody th {
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.legal-body tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  line-height: 1.62;
  vertical-align: top;
}

.legal-body tbody tr:last-child th,
.legal-body tbody tr:last-child td { border-bottom: 0; }

.legal-body thead th:last-child,
.legal-body tbody td:last-child,
.legal-body tbody th:last-child { padding-right: 16px; }

/* Callouts */
.callout {
  margin: 26px 0;
  padding: 20px 22px;
  border-left: 0;
  border-radius: 18px;
  background: rgba(255, 95, 162, 0.08);
}

.callout__title {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.callout p {
  margin: 0;
  font-size: 15.5px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.66;
  color: var(--ink);
}

.callout--warn { background: rgba(124, 58, 237, 0.08); }
.callout--warn .callout__title { color: var(--violet-deep); }

/* Fill-in placeholders — deliberately visible */
.ph {
  background: var(--mark);
  border-bottom: 1px dashed var(--mark-line);
  border-radius: 4px;
  padding: 1px 5px;
  color: var(--mark-text);
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}

.legal-footnote {
  margin-top: clamp(34px, 4.4vw, 56px);
  padding: 22px 24px;
  border-top: 0;
  border-radius: 18px;
  background: rgba(163, 63, 224, 0.06);
}

.legal-footnote p {
  margin: 0;
  font-size: 15px;
  font-style: normal;
  color: var(--ink-2);
}

/* ==========================================================================
   Colophon (footer)
   ========================================================================== */

.site-footer {
  margin-top: clamp(48px, 6vw, 88px);
  padding-top: clamp(38px, 4.6vw, 58px);
  background: linear-gradient(165deg, #33184a 0%, #2a1436 58%, #3a1650 100%);
  border-top: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 52px);
}

.footer-grid .brand { justify-content: flex-start; }

.footer-grid .brand__mark { width: 34px; height: 34px; }

.footer-grid .brand__name { font-size: 20px; color: #fff; }

.footer-grid .brand__name em {
  background: linear-gradient(118deg, #ff9ecb 0%, #d9a4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-about {
  margin: 16px 0 0;
  max-width: 34ch;
  font-size: 14.5px;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid h4 {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid ul { margin: 0; padding: 0; list-style: none; }

.footer-grid li { margin-bottom: 10px; }

.footer-grid a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-grid a:hover { color: #ffb3dc; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 46px);
  padding: 20px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a { color: rgba(255, 255, 255, 0.6); text-decoration: none; }

.footer-bottom a:hover { color: #ffb3dc; }

/* ==========================================================================
   Reveal
   ========================================================================== */

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

.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .cat { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1000px) {
  .hero--front > .container { grid-template-columns: 1fr; }
  .aside { margin-top: 6px; }
  .spread { grid-template-columns: 1fr; }
  .spread > * { padding: clamp(24px, 3vw, 32px); }
  .spread > *:last-child {
    padding: clamp(24px, 3vw, 32px);
    border-left: var(--hairline);
  }
  .legal-layout { grid-template-columns: 1fr; }
  .toc {
    position: static;
    max-height: none;
    padding-bottom: 18px;
  }
  .toc ol {
    column-count: 2;
    column-gap: 30px;
  }
  .toc li { break-inside: avoid; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav {
    flex-wrap: wrap;
    align-items: center;
  }
  .nav__links {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding-bottom: 6px;
  }
  .nav__links:not(.is-open) { display: none; }
  .nav__links a { padding: 11px 14px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  html { scroll-padding-top: 88px; }
  .catalogue { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card {
    padding: 22px clamp(20px, 3vw, 26px) 24px;
    border-right: var(--hairline);
  }
  .index-list li,
  .step { grid-template-columns: 44px minmax(0, 1fr); }
  .index-list .no,
  .step .no { width: 40px; height: 40px; font-size: 13.5px; }
  .legal-section { overflow-x: auto; }
  .legal-body table { font-size: 14px; }
  .legal-body thead th,
  .legal-body tbody th,
  .legal-body tbody td { padding: 11px 12px; }
  .legal-body { padding: clamp(22px, 4vw, 28px); border-radius: 24px; }
  .band { display: block; }
  .band .btn--primary { margin-top: 22px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -0.026em; }
}
