/* Wasyra — Premium legal site · dark hero + white canvas */

:root {
  --ink: #17120d;
  --obsidian: #0c0906;
  --espresso: #2d2118;
  --mahogany: #3b2417;
  --brass: #c9923e;
  --brass-deep: #9e6d24;
  --antique-gold: #e9b45d;
  --champagne: #ffe8b0;
  --ivory: #fffbf3;
  --white: #ffffff;
  --pearl: #fdf5ea;
  --porcelain: #fffcf7;
  --mist: #f4efe7;
  --sand: #e8dbc8;
  --taupe: #6b5a4d;
  --taupe-light: #9a8778;
  --stroke-dark: rgba(255, 255, 255, 0.1);
  --stroke-light: rgba(23, 18, 13, 0.08);
  --glass-dark: rgba(12, 9, 6, 0.55);
  --glass-border: rgba(233, 180, 93, 0.28);
  --danger: #b42318;
  --warning: #b7791f;
  --font-display: "Instrument Serif", "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --radius-sm: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-2xl: 2.25rem;
  --nav-h: 4.25rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-wide: 76rem;
  --shadow-soft: 0 4px 24px rgba(23, 18, 13, 0.06);
  --shadow-lift: 0 24px 64px rgba(23, 18, 13, 0.1);
  --shadow-gold: 0 20px 60px rgba(201, 146, 62, 0.22);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  touch-action: manipulation;
}

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

a {
  color: var(--brass-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: var(--brass);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--brass);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* Cursor glow (desktop) */
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(201, 146, 62, 0.14) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: multiply;
}

body.is-pointer-fine .cursor-glow.is-active {
  opacity: 1;
}

/* Dark zone ambient */
.ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient__mesh {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(201, 146, 62, 0.28), transparent 50%),
    radial-gradient(ellipse 45% 40% at 95% 30%, rgba(233, 180, 93, 0.12), transparent 45%),
    linear-gradient(155deg, var(--obsidian) 0%, #14100c 50%, var(--ink) 100%);
  animation: mesh-drift 32s ease-in-out infinite alternate;
}

.ambient__lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 80px,
    rgba(255, 255, 255, 0.02) 80px,
    rgba(255, 255, 255, 0.02) 81px
  );
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: orb-float 20s ease-in-out infinite;
}

.ambient__orb--1 {
  width: min(480px, 80vw);
  height: min(480px, 80vw);
  top: -15%;
  right: -10%;
  background: rgba(201, 146, 62, 0.4);
}

.ambient__orb--2 {
  width: min(280px, 50vw);
  height: min(280px, 50vw);
  bottom: 5%;
  left: 5%;
  background: rgba(255, 255, 255, 0.06);
  animation-delay: -8s;
}

.ambient__ring {
  position: absolute;
  top: 12%;
  right: clamp(1rem, 8vw, 6rem);
  width: min(340px, 55vw);
  aspect-ratio: 1;
  border: 1px solid rgba(233, 180, 93, 0.15);
  border-radius: 50%;
  animation: ring-spin 60s linear infinite;
}

.ambient__ring::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

@keyframes mesh-drift {
  from { transform: scale(1) rotate(0deg); }
  to { transform: scale(1.06) rotate(1deg); }
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-16px, 20px); }
}

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

/* Shell */
.shell {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

/* Header — adapts on scroll */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 9, 6, 0.5), transparent);
  opacity: 1;
  transition: opacity 0.35s;
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--stroke-light);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-height: 44px;
  color: var(--white);
  transition: color 0.35s;
}

.site-header.is-scrolled .brand {
  color: var(--ink);
}

.brand__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease-spring);
}

.brand:hover .brand__icon {
  transform: scale(1.06) rotate(-3deg);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.brand__tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.65;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--stroke-dark);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  transition: background 0.35s, border-color 0.35s;
}

.site-header.is-scrolled .site-nav {
  background: var(--porcelain);
  border-color: var(--stroke-light);
}

.site-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 251, 243, 0.85);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.site-header.is-scrolled .site-nav a {
  color: var(--taupe);
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .site-nav a:hover {
  color: var(--ink);
  background: var(--white);
}

.site-nav a.is-active {
  color: var(--obsidian);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.site-header.is-scrolled .site-nav a.is-active {
  color: var(--white);
  background: var(--ink);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--stroke-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  transition: background 0.35s, border-color 0.35s, color 0.35s;
}

.site-header.is-scrolled .nav-toggle {
  border-color: var(--stroke-light);
  background: var(--porcelain);
  color: var(--ink);
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.nav-toggle__bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 199;
  padding: 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--stroke-light);
  box-shadow: var(--shadow-lift);
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  border-radius: var(--radius-lg);
}

.mobile-drawer a.is-active,
.mobile-drawer a:hover {
  background: var(--pearl);
  color: var(--brass-deep);
}

@media (min-width: 768px) {
  .site-nav { display: flex; }
  .nav-toggle,
  .mobile-drawer { display: none !important; }
}

/* Hero stage (dark) */
.hero-stage {
  position: relative;
  padding-top: var(--nav-h);
  min-height: min(92vh, 820px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ivory);
}

.hero-stage__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  gap: 2.5rem;
  align-items: end;
  max-width: var(--max-wide);
  margin: 0 auto;
  width: 100%;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem) clamp(5rem, 12vw, 8rem);
}

@media (min-width: 900px) {
  .hero-stage__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.hero-stage__content {
  max-width: 36rem;
}

.hero-stage__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem 0.4rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--antique-gold);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-stage__eyebrow svg {
  width: 1rem;
  height: 1rem;
}

.hero-stage__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-stage__title .line {
  display: block;
  overflow: hidden;
}

.hero-stage__title .line-inner {
  display: block;
  transform: translateY(110%);
  animation: title-rise 0.9s var(--ease-out) forwards;
}

.hero-stage__title .line:nth-child(2) .line-inner {
  animation-delay: 0.1s;
}

.hero-stage__title em {
  font-style: italic;
  color: var(--antique-gold);
}

.hero-stage__lead {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 251, 243, 0.72);
  max-width: 34ch;
}

.hero-stage__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 251, 243, 0.9);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.meta-pill a {
  color: var(--champagne);
  text-decoration: none;
}

.meta-pill a:hover {
  color: var(--white);
}

/* Hero visual bento */
.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: 280px;
}

@media (min-width: 900px) {
  .hero-visual {
    min-height: 360px;
  }
}

.bento {
  position: relative;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}

.bento:hover {
  border-color: rgba(233, 180, 93, 0.35);
  transform: translateY(-4px);
}

.bento--main {
  grid-column: 1 / -1;
  padding: 1.5rem;
}

.bento__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--antique-gold);
  margin-bottom: 0.5rem;
}

.bento__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.1;
  color: var(--white);
}

.bento__sub {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 251, 243, 0.55);
}

.bento-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bento--accent {
  background: linear-gradient(135deg, rgba(201, 146, 62, 0.25), rgba(255, 255, 255, 0.06));
}

.bento__icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  color: var(--antique-gold);
}

/* Marquee */
.marquee-band {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  flex-shrink: 0;
  padding: 0 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 251, 243, 0.45);
  white-space: nowrap;
}

.marquee-track span::after {
  content: "◆";
  margin-left: 2rem;
  color: var(--brass);
  font-size: 0.5rem;
  vertical-align: middle;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes title-rise {
  to { transform: translateY(0); }
}

/* White canvas — overlaps hero */
.light-canvas {
  position: relative;
  z-index: 5;
  margin-top: -4.5rem;
  background: var(--white);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  box-shadow: 0 -32px 80px rgba(0, 0, 0, 0.12);
}

.light-canvas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: var(--sand);
  margin-top: 1rem;
}

.page-main {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 8vw, 5rem);
}

.content-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 960px) {
  .content-grid--split {
    grid-template-columns: 1fr min(300px, 28%);
    align-items: start;
    gap: 2rem;
  }
}

/* White cards */
.surface-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--stroke-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.surface-card:hover {
  box-shadow: var(--shadow-lift);
}

.surface-card--elevated {
  background: linear-gradient(180deg, var(--porcelain) 0%, var(--white) 100%);
}

.surface-card--gold {
  border-color: rgba(201, 146, 62, 0.2);
  background: linear-gradient(135deg, var(--pearl) 0%, var(--white) 60%);
}

.surface-card h2,
.surface-card h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.surface-card h2 {
  margin: 2.25rem 0 0.85rem;
  font-size: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.surface-card h2:first-child {
  margin-top: 0;
}

.surface-card h2 .section-num {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--brass);
  letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem;
  background: rgba(201, 146, 62, 0.12);
  border-radius: 0.35rem;
  flex-shrink: 0;
}

.surface-card h3 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.15rem;
}

.surface-card p,
.surface-card li {
  color: #4a4038;
}

.surface-card ul,
.surface-card ol {
  padding-left: 1.25rem;
}

.surface-card li + li {
  margin-top: 0.4rem;
}

.surface-card strong {
  color: var(--ink);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.07s; }
.reveal-delay-2 { transition-delay: 0.14s; }
.reveal-delay-3 { transition-delay: 0.21s; }

/* Sidebar sticky */
.side-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 960px) {
  .side-panel {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
  }
}

.toc-card {
  padding: 1.5rem;
}

.toc-card__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
}

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

.toc a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.4rem 0 0.4rem 1rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--taupe);
  border-left: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s, padding-left 0.2s;
}

.toc a:hover,
.toc a.is-active {
  color: var(--brass-deep);
  border-left-color: var(--brass);
  padding-left: 1.15rem;
}

/* Contact chip */
.contact-chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--pearl);
  border: 1px solid rgba(201, 146, 62, 0.2);
  border-radius: var(--radius-lg);
}

.contact-chip__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  color: var(--brass);
  box-shadow: var(--shadow-soft);
}

.contact-chip a {
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.65rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--ink) 0%, var(--mahogany) 100%);
  box-shadow: 0 12px 32px rgba(23, 18, 13, 0.2);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(23, 18, 13, 0.28);
  color: var(--white);
}

.btn--gold {
  color: var(--obsidian);
  background: linear-gradient(135deg, var(--antique-gold), var(--brass));
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-3px);
  color: var(--obsidian);
}

.btn--outline {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--stroke-light);
  box-shadow: var(--shadow-soft);
}

.btn--outline:hover {
  border-color: var(--brass);
  color: var(--brass-deep);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Feature strip */
.feature-strip {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-tile {
  padding: 1.25rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--porcelain);
  border: 1px solid var(--stroke-light);
}

.feature-tile__icon {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto 0.65rem;
  color: var(--brass);
}

.feature-tile strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.feature-tile span {
  font-size: 0.75rem;
  color: var(--taupe-light);
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  position: relative;
  padding: 0 0 1.75rem 3.5rem;
  border-left: 2px solid var(--sand);
  margin-left: 1.1rem;
}

.steps li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.steps li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: -1.1rem;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--brass), var(--brass-deep));
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.steps {
  counter-reset: step;
}

.steps li strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

/* FAQ */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--stroke-light);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item.is-open {
  border-color: rgba(201, 146, 62, 0.35);
  box-shadow: var(--shadow-soft);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
  padding: 1rem 1.25rem;
  border: none;
  background: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
}

.faq-trigger__chevron {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pearl);
  border-radius: 50%;
  transition: transform 0.3s var(--ease-out), background 0.3s;
}

.faq-item.is-open .faq-trigger__chevron {
  transform: rotate(180deg);
  background: rgba(201, 146, 62, 0.15);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel__inner {
  overflow: hidden;
}

.faq-panel p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--taupe);
}

/* Alerts */
.alert {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  line-height: 1.55;
}

.alert__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.alert--warning {
  background: #fff8eb;
  border: 1px solid rgba(183, 121, 31, 0.25);
  color: #7a5a12;
}

.alert--danger {
  background: #fef3f2;
  border: 1px solid rgba(180, 35, 24, 0.2);
  color: #912018;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--stroke-light);
  background: var(--porcelain);
}

.site-footer__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 2.5rem clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.site-footer__brand {
  max-width: 20rem;
}

.site-footer__brand .brand {
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.site-footer__brand p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--taupe);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.site-footer__links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}

.site-footer__links a:hover {
  color: var(--brass);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--taupe-light);
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stroke-light);
}

@media (min-width: 768px) {
  .site-footer__copy {
    text-align: right;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ambient__mesh,
  .ambient__orb,
  .ambient__ring,
  .marquee-track { animation: none; }
  .hero-stage__title .line-inner {
    transform: none;
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .cursor-glow { display: none; }
}
