:root {
  --ink: #080808;
  --obsidian: #030303;
  --black-luxe: #0e0d0a;
  --ink-soft: #171717;
  --paper: #f4ead7;
  --paper-strong: #fff7e5;
  --muted: #7c766d;
  --line: rgba(8, 8, 8, 0.14);
  --gold: #f6ce45;
  --gold-strong: #ffbf00;
  --gold-deep: #9f6a08;
  --amber: #c98218;
  --cream: #fff3c4;
  --champagne: #f8e4ac;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  --shadow-heavy: 0 34px 120px rgba(0, 0, 0, 0.48);
  --radius-large: 38px;
  --radius-medium: 24px;
  --radius-small: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

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

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 2%, rgba(246, 206, 69, 0.22), transparent 28rem),
    radial-gradient(circle at 96% 16%, rgba(255, 255, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, var(--obsidian) 0, #0a0907 41rem, var(--paper) 41rem);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1210px, calc(100% - 32px));
  padding: 14px 16px 14px 22px;
  color: var(--white);
  border: 1px solid rgba(246, 206, 69, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 5, 0.82);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
}

.site-header.scrolled {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.014)),
    rgba(5, 5, 5, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-mark {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--gold-strong) 48%, var(--champagne));
  padding: 8px 4px 7px 10px;
  border-radius: 12px 0 0 12px;
}

.brand-dot {
  color: var(--gold);
  padding: 0 2px;
  font-size: 1.45rem;
}

.brand-tail {
  color: var(--champagne);
  border: 1px solid rgba(246, 206, 69, 0.5);
  border-left: 0;
  padding: 8px 10px 7px 2px;
  border-radius: 0 12px 12px 0;
  background: rgba(246, 206, 69, 0.035);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.desktop-nav a,
.mobile-nav a,
.footer-grid nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-grid nav a:hover {
  color: var(--gold);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(246, 206, 69, 0.28);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 2px;
  border-radius: 9px;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease;
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  top: 28px;
}

.menu-open .menu-toggle span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 82px;
  right: 16px;
  left: 16px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  color: var(--white);
  background: rgba(8, 8, 8, 0.96);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  padding: 15px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-open .mobile-nav {
  display: flex;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(246, 206, 69, 0.16), transparent 23rem),
    radial-gradient(circle at 20% 85%, rgba(255, 191, 0, 0.1), transparent 20rem),
    linear-gradient(140deg, var(--obsidian), var(--black-luxe) 58%, #050505);
}

.section-light {
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 148px 0 48px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 85%);
}

.hero::after {
  content: "WORK.DOC";
  position: absolute;
  right: -0.08em;
  bottom: 18px;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 206, 69, 0.13);
  font-size: clamp(6rem, 19vw, 20rem);
  font-weight: 950;
  letter-spacing: -0.16em;
  line-height: 0.72;
  pointer-events: none;
}

.orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.6;
  pointer-events: none;
}

.orb-one {
  right: -130px;
  top: 120px;
  background: radial-gradient(circle, rgba(246, 206, 69, 0.36), transparent 62%);
}

.orb-two {
  left: -180px;
  bottom: 30px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 64%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 52px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-overline::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.client-copy h2,
.review-aside h2,
.blog-head h2,
.cta-grid h2,
.contact-copy h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(4.2rem, 8.7vw, 8.85rem);
  letter-spacing: -0.12em;
  line-height: 0.82;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 .title-line {
  display: block;
  color: var(--white);
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.hero h1 .title-accent {
  color: var(--gold);
  background: linear-gradient(100deg, var(--gold), var(--champagne) 45%, var(--gold-strong));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 20px 42px rgba(246, 206, 69, 0.16));
}

.hero h1 .title-line:last-child {
  word-spacing: 0.1em;
}

.hero-text {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.72;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(246, 206, 69, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(246, 206, 69, 0.055);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

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

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--champagne), var(--gold) 42%, var(--gold-strong));
  box-shadow: 0 18px 44px rgba(246, 206, 69, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(246, 206, 69, 0.22);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  border-color: rgba(246, 206, 69, 0.46);
  background: rgba(246, 206, 69, 0.08);
}

.hero-art {
  position: relative;
}

.art-frame {
  position: relative;
  min-height: 640px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 50% 8%, rgba(246, 206, 69, 0.48), transparent 15rem),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.12), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(246, 206, 69, 0.16);
  box-shadow: var(--shadow-heavy), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.art-frame::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px -80px;
  height: 330px;
  border-radius: 50% 50% 0 0;
  background:
    linear-gradient(135deg, rgba(248, 228, 172, 0.96), rgba(255, 191, 0, 0.48)),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.16) 0 8px, transparent 8px 16px);
}

.art-grid {
  position: absolute;
  inset: 26px;
  border-radius: 30px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.54;
}

.art-emblem {
  position: absolute;
  top: 38px;
  right: 34px;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(246, 206, 69, 0.22);
  border-radius: 50%;
  color: rgba(246, 206, 69, 0.52);
  background:
    radial-gradient(circle, rgba(246, 206, 69, 0.12), transparent 62%),
    rgba(0, 0, 0, 0.16);
  font-size: 2.2rem;
  font-weight: 950;
  letter-spacing: -0.16em;
}

.art-emblem::before,
.art-emblem::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(246, 206, 69, 0.16);
}

.art-emblem::after {
  inset: -16px;
  border-color: rgba(255, 255, 255, 0.07);
}

.art-person {
  position: absolute;
  right: 50%;
  bottom: 76px;
  width: 260px;
  height: 440px;
  transform: translateX(50%);
}

.person-head {
  position: absolute;
  top: 0;
  left: 84px;
  width: 96px;
  height: 108px;
  border-radius: 48% 48% 44% 44%;
  background: linear-gradient(160deg, #f1c18d, #a85b2a);
  box-shadow: inset -18px -6px 0 rgba(0, 0, 0, 0.18);
}

.person-head::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 7px;
  width: 92px;
  height: 52px;
  border-radius: 50% 50% 28% 30%;
  background: #15110c;
}

.person-body {
  position: absolute;
  top: 112px;
  left: 22px;
  width: 220px;
  height: 306px;
  border-radius: 110px 110px 34px 34px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(246, 206, 69, 0.8) 49% 51%, transparent 52%),
    linear-gradient(145deg, #151515, #34302a);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.person-body::before,
.person-body::after {
  content: "";
  position: absolute;
  top: 40px;
  width: 68px;
  height: 190px;
  border-radius: 999px;
  background: #191919;
}

.person-body::before {
  left: -42px;
  transform: rotate(13deg);
}

.person-body::after {
  right: -42px;
  transform: rotate(-13deg);
}

.person-document {
  position: absolute;
  right: -4px;
  bottom: 44px;
  width: 130px;
  height: 170px;
  border-radius: 12px;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 18px 44px / 84px 19px no-repeat,
    linear-gradient(var(--line) 1px, transparent 1px) 18px 76px / 70px 19px no-repeat,
    linear-gradient(var(--line) 1px, transparent 1px) 18px 108px / 88px 19px no-repeat,
    linear-gradient(135deg, var(--paper-strong), #e8d5a5);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.24);
  transform: rotate(-8deg);
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: 150px;
  padding: 16px;
  border: 1px solid rgba(246, 206, 69, 0.18);
  border-radius: 24px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(5, 5, 5, 0.66);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.floating-card span {
  display: block;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.floating-card small {
  color: rgba(255, 255, 255, 0.7);
}

.card-law {
  top: 110px;
  left: 26px;
}

.card-speed {
  right: 26px;
  bottom: 130px;
}

.ticker {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 22px;
  width: min(1180px, calc(100% - 40px));
  margin: 56px auto 0;
  padding: 18px 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(246, 206, 69, 0.14);
  border-bottom: 1px solid rgba(246, 206, 69, 0.14);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker span {
  min-width: max-content;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.ticker span::after {
  content: "•";
  margin-left: 18px;
  color: var(--gold);
}

.intro-strip {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.35), transparent 18% 82%, rgba(255, 255, 255, 0.22)),
    linear-gradient(135deg, var(--champagne), var(--gold) 54%, var(--gold-strong));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.intro-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 112px;
  text-align: center;
}

.intro-strip p {
  margin: 0;
  font-size: clamp(1.55rem, 3.25vw, 3.25rem);
  font-weight: 950;
  letter-spacing: -0.08em;
}

.strip-icon {
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--gold);
  background: var(--ink);
  font-size: 0.86rem;
  font-weight: 950;
}

.about {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
}

.luxury-watermark {
  position: absolute;
  top: 32px;
  right: -0.12em;
  color: rgba(8, 8, 8, 0.035);
  font-size: clamp(4rem, 17vw, 18rem);
  font-weight: 950;
  letter-spacing: -0.18em;
  line-height: 0.75;
  pointer-events: none;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 7vw, 110px);
}

.section-heading h2,
.client-copy h2,
.review-aside h2,
.blog-head h2,
.cta-grid h2,
.contact-copy h2 {
  font-size: clamp(3.15rem, 6.5vw, 7.2rem);
  letter-spacing: -0.105em;
}

.copy-block p,
.client-copy p,
.services-intro p,
.contact-copy p,
.blog-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.82;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.mini-stats article {
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.08)),
    var(--paper-strong);
  box-shadow: 0 18px 54px rgba(73, 52, 12, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mini-stats article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(73, 52, 12, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.mini-stats strong {
  display: block;
  color: var(--gold-deep);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.09em;
}

.mini-stats span {
  display: block;
  margin-top: 18px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.inline-actions a {
  font-weight: 900;
  color: var(--ink);
  border-bottom: 2px solid var(--gold);
}

.signature-card {
  position: relative;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 96% 0, rgba(246, 206, 69, 0.28), transparent 9rem),
    linear-gradient(135deg, #111, #050505);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.signature-card::after {
  content: "WD";
  position: absolute;
  right: -6px;
  bottom: -22px;
  color: rgba(246, 206, 69, 0.12);
  font-size: 6.8rem;
  font-weight: 950;
  letter-spacing: -0.18em;
}

.signature-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signature-card strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 560px;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.section-image {
  position: relative;
  padding: 150px 0;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.bg-building {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px) 0 0 / 64px 100%,
    linear-gradient(180deg, transparent 0 22%, rgba(246, 206, 69, 0.2) 22% 23%, transparent 23% 100%) 0 0 / 100% 86px,
    radial-gradient(circle at 77% 28%, rgba(246, 206, 69, 0.32), transparent 23rem),
    linear-gradient(135deg, #221c0f, #070707 62%);
}

.section-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.42));
}

.client-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: end;
  gap: 70px;
}

.client-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 26px;
}

.client-copy .btn {
  margin-top: 34px;
}

.client-list {
  display: grid;
  gap: 14px;
}

.client-list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 28px;
  border: 1px solid rgba(246, 206, 69, 0.13);
  border-radius: 999px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.client-list a::after {
  content: "→";
  color: var(--gold);
}

.client-list a:hover {
  transform: translateX(8px);
  border-color: rgba(246, 206, 69, 0.52);
  background: rgba(246, 206, 69, 0.09);
}

.services {
  position: relative;
  padding: 130px 0 118px;
  overflow: hidden;
}

.section-watermark {
  position: absolute;
  top: 44px;
  left: 50%;
  width: max-content;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 206, 69, 0.09);
  font-size: clamp(4.8rem, 15vw, 15rem);
  font-weight: 950;
  letter-spacing: -0.14em;
  line-height: 0.8;
  transform: translateX(-50%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 62px;
}

.services-intro p {
  color: rgba(255, 255, 255, 0.72);
}

.chess-card {
  position: relative;
  min-height: 430px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(246, 206, 69, 0.15);
  border-radius: 44px;
  background:
    radial-gradient(circle at 82% 16%, rgba(246, 206, 69, 0.18), transparent 13rem),
    linear-gradient(45deg, rgba(255, 255, 255, 0.065) 25%, transparent 25% 75%, rgba(255, 255, 255, 0.065) 75%) 0 0 /
      62px 62px,
    linear-gradient(45deg, transparent 25%, rgba(246, 206, 69, 0.13) 25% 75%, transparent 75%) 31px 31px / 62px 62px,
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-heavy), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.chess-card::after {
  content: "WD";
  position: absolute;
  right: -22px;
  bottom: -34px;
  color: rgba(246, 206, 69, 0.12);
  font-size: 14rem;
  font-weight: 950;
  letter-spacing: -0.14em;
}

.chess-card strong {
  position: relative;
  display: block;
  max-width: 620px;
  margin: 38px 0 30px;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 26px;
  border: 1px solid rgba(246, 206, 69, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -48px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(246, 206, 69, 0.12);
  border-radius: 50%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(246, 206, 69, 0.5);
  background:
    radial-gradient(circle at 82% 18%, rgba(246, 206, 69, 0.16), transparent 12rem),
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(246, 206, 69, 0.055);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(246, 206, 69, 0.22);
}

.service-card h3 {
  margin: 32px 0 14px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.service-card p {
  min-height: 90px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.service-card a {
  color: var(--gold);
  font-weight: 900;
}

.reviews {
  position: relative;
  padding: 124px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(246, 206, 69, 0.16), transparent 20rem),
    var(--paper);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.review-aside ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}

.review-aside li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 850;
}

.review-aside li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(246, 206, 69, 0.18);
}

.review-panel {
  position: relative;
  min-height: 462px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 20% 20%, rgba(246, 206, 69, 0.25), transparent 16rem),
    radial-gradient(circle at 88% 74%, rgba(255, 255, 255, 0.09), transparent 13rem),
    linear-gradient(135deg, #17130a, #050505 66%);
  border: 1px solid rgba(8, 8, 8, 0.08);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.review-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(246, 206, 69, 0.18) 0 2px, transparent 3px);
  background-size: 80px 80px, 110px 110px;
}

.review-comet {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 50%, rgba(248, 228, 172, 0.82), rgba(246, 206, 69, 0.18) 36%, transparent 62%),
    conic-gradient(from 210deg, transparent, rgba(246, 206, 69, 0.24), transparent 42%);
  filter: blur(0.2px);
  opacity: 0.72;
}

.review-comet::after {
  content: "";
  position: absolute;
  right: 170px;
  top: 140px;
  width: 260px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(246, 206, 69, 0.32), transparent);
  transform: rotate(-28deg);
}

.review-track {
  position: relative;
  z-index: 1;
  min-height: 462px;
}

.review-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  color: var(--white);
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.review-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
}

.review-card p {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.18rem, 2vw, 1.85rem);
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.review-card p.collapsed {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.text-button {
  align-self: flex-start;
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  color: var(--gold);
  background: transparent;
  font-weight: 900;
}

.review-card strong {
  font-size: 1.08rem;
}

.review-card span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
}

.review-controls {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.review-controls button {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, color 0.2s ease;
}

.review-controls button:hover {
  color: var(--ink);
  background: var(--gold);
}

.blog {
  position: relative;
  padding: 124px 0;
  overflow: hidden;
}

.blog::before {
  content: "LAB";
  position: absolute;
  left: -0.1em;
  top: 54px;
  color: rgba(246, 206, 69, 0.055);
  font-size: clamp(7rem, 22vw, 22rem);
  font-weight: 950;
  letter-spacing: -0.16em;
  line-height: 0.72;
}

.blog-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: end;
}

.blog-lab {
  display: inline-grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
  border: 1px solid rgba(246, 206, 69, 0.28);
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  box-shadow: 0 24px 60px rgba(246, 206, 69, 0.2);
  letter-spacing: -0.06em;
}

.blog-head p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.blog-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.blog-card {
  min-height: 360px;
  padding: 30px;
  border: 1px solid rgba(246, 206, 69, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(246, 206, 69, 0.46);
  background:
    radial-gradient(circle at 78% 18%, rgba(246, 206, 69, 0.16), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.05);
}

.blog-card span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 58px 0 18px;
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.blog-card p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.blog-card small {
  display: block;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.46);
}

.cta-band {
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.38), transparent 14rem),
    linear-gradient(135deg, var(--champagne), var(--gold) 55%, var(--gold-strong));
  overflow: hidden;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 260px;
}

.cta-grid .kicker {
  color: rgba(8, 8, 8, 0.62);
}

.cta-grid .btn-primary {
  background: var(--ink);
  color: var(--gold);
  box-shadow: none;
}

.contact {
  position: relative;
  padding: 122px 0;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.contact-marquee {
  position: absolute;
  right: -18vw;
  bottom: 18px;
  display: flex;
  gap: 34px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 206, 69, 0.12);
  font-size: clamp(4rem, 10vw, 11rem);
  font-weight: 950;
  letter-spacing: -0.13em;
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 66px;
}

.contact-copy p {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-facts {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.contact-facts article {
  padding: 24px;
  border: 1px solid rgba(246, 206, 69, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 900;
}

.contact-facts a,
.contact-facts p {
  margin: 0;
  color: var(--white);
  font-weight: 820;
}

.contact-facts a {
  display: block;
}

.contact-facts a + a {
  margin-top: 7px;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(246, 206, 69, 0.18);
  border-radius: 44px;
  background:
    radial-gradient(circle at 90% 10%, rgba(246, 206, 69, 0.2), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow-heavy), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-form h3 {
  margin: 0 0 28px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(246, 206, 69, 0.13);
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.006)),
    rgba(0, 0, 0, 0.26);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 54px;
  padding: 0 16px;
}

.contact-form textarea {
  resize: vertical;
  padding: 16px;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(246, 206, 69, 0.82);
  box-shadow: 0 0 0 4px rgba(246, 206, 69, 0.13);
}

.contact-form input.invalid,
.contact-form textarea.invalid,
.contact-form select.invalid {
  border-color: #ff766e;
}

.contact-form small {
  min-height: 16px;
  color: #ffb3ad;
}

.checkbox {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px !important;
  margin: 18px 0 0;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.privacy-error {
  display: block;
  margin: 8px 0 16px;
}

.contact-form .btn {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--gold);
  font-weight: 850;
  text-align: center;
}

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(circle at 12% 10%, rgba(246, 206, 69, 0.09), transparent 18rem),
    #050505;
  border-top: 1px solid rgba(246, 206, 69, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 22px;
}

.footer-grid p {
  max-width: 520px;
  margin: 0;
  line-height: 1.72;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact a {
  color: var(--white);
  font-weight: 850;
}

.footer-contact span {
  margin-top: 4px;
}

.footer-contact span:last-child {
  margin-top: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1), transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1060px) {
  .desktop-nav,
  .phone-link {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .split,
  .client-grid,
  .services-grid,
  .reviews-layout,
  .blog-head,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .art-frame {
    min-height: 560px;
  }

  .service-cards,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero::after,
  .section-watermark,
  .contact-marquee {
    opacity: 0.72;
  }
}

@media (max-width: 760px) {
  .container,
  .hero-grid,
  .ticker {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 10px 10px 14px;
  }

  .hero {
    padding-top: 122px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
    letter-spacing: -0.105em;
  }

  .hero-overline {
    align-items: flex-start;
    font-size: 0.72rem;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof span {
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.74rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .art-frame {
    min-height: 490px;
    border-radius: 30px;
  }

  .art-emblem {
    top: 28px;
    right: 22px;
    width: 84px;
    height: 84px;
    font-size: 1.5rem;
  }

  .art-person {
    bottom: 48px;
    transform: translateX(50%) scale(0.78);
    transform-origin: bottom center;
  }

  .floating-card {
    width: 126px;
    padding: 13px;
  }

  .card-law {
    top: 72px;
    left: 14px;
  }

  .card-speed {
    right: 14px;
    bottom: 84px;
  }

  .intro-strip .container {
    gap: 12px;
    min-height: 96px;
  }

  .strip-icon {
    flex-basis: 42px;
    height: 42px;
    font-size: 0.72rem;
  }

  .about,
  .reviews,
  .blog,
  .contact {
    padding: 84px 0;
  }

  .section-image,
  .services {
    padding: 94px 0;
  }

  .mini-stats,
  .service-cards,
  .blog-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .signature-card {
    padding: 20px;
  }

  .section-watermark,
  .luxury-watermark,
  .blog::before,
  .contact-marquee {
    display: none;
  }

  .client-list a {
    min-height: 66px;
  }

  .review-panel,
  .review-track {
    min-height: 520px;
  }

  .review-controls {
    right: 22px;
    bottom: 22px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }

  .contact-form {
    border-radius: 28px;
  }
}

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

/* AttorneyX-style poster pass */
body {
  color: var(--white);
  background: #000;
}

.page-shell {
  background: #000;
}

.container,
.hero-grid {
  width: min(1660px, calc(100% - 170px));
}

.site-header {
  top: 0;
  left: 0;
  width: 100%;
  min-height: 142px;
  padding: 34px min(5.4vw, 108px) 24px;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  border: 0;
  border-radius: 0;
  background: #000;
  box-shadow: none;
  transform: none;
  backdrop-filter: none;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, #c90000, #ffb900 34%, #f58200 62%, #d50000);
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.desktop-nav {
  display: none;
}

.brand {
  display: grid;
  gap: 8px;
  min-width: 260px;
  text-transform: uppercase;
}

.brand-row {
  display: inline-flex;
  align-items: center;
  line-height: 0.8;
}

.brand-mark,
.brand-tail,
.brand-dot {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.brand-mark {
  color: #fff;
  font-size: clamp(2rem, 2.7vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.085em;
}

.brand-dot {
  color: #fff;
  padding: 0 0.04em;
  font-size: clamp(2rem, 2.7vw, 3.6rem);
}

.brand-tail {
  position: relative;
  color: var(--gold-strong);
  font-size: clamp(2rem, 2.7vw, 3.6rem);
  font-weight: 950;
  letter-spacing: -0.11em;
}

.brand-tail::before {
  content: "";
  position: absolute;
  right: -0.42em;
  top: 0.48em;
  width: 1.34em;
  height: 0.08em;
  background: linear-gradient(90deg, var(--gold-strong), #ef1500);
  transform: rotate(-48deg);
  transform-origin: center;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.7rem, 0.9vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.48em;
  line-height: 1;
}

.header-actions {
  grid-column: 3;
  gap: 30px;
}

.phone-link {
  color: #fff;
  font-size: clamp(1.45rem, 2.1vw, 2.45rem);
  font-weight: 950;
  letter-spacing: -0.05em;
}

.menu-toggle {
  display: block;
  width: 54px;
  height: 44px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
}

.menu-toggle span {
  left: 4px;
  width: 46px;
  height: 3px;
}

.menu-toggle span:first-child {
  top: 13px;
}

.menu-toggle span:last-child {
  top: 29px;
}

.mobile-nav {
  top: 116px;
  right: min(5.4vw, 108px);
  left: auto;
  width: min(420px, calc(100% - 36px));
  border-color: rgba(255, 184, 0, 0.28);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.98);
}

.section-dark {
  background: #000;
}

.hero {
  min-height: 100svh;
  padding: 142px 0 0;
  background:
    radial-gradient(circle at 62% 36%, rgba(255, 255, 255, 0.08), transparent 22rem),
    linear-gradient(#000, #000);
}

.hero::before {
  opacity: 0;
}

.hero::after,
.orb,
.hero-glove-shadow {
  display: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(580px, 1.1fr);
  min-height: calc(100svh - 142px);
  align-items: center;
  gap: 40px;
  isolation: isolate;
}

.hero-art {
  position: absolute;
  left: max(-145px, -8vw);
  bottom: max(-140px, -10vw);
  z-index: -1;
  width: min(58vw, 1000px);
  min-width: 690px;
  pointer-events: none;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 42%, transparent 0 22%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.7) 86%),
    linear-gradient(90deg, transparent 45%, rgba(0, 0, 0, 0.35));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.boxer-statue {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
  filter: brightness(0.78) contrast(1.36) saturate(0.92) drop-shadow(0 38px 45px rgba(0, 0, 0, 0.78));
}

.hero-x-mark {
  position: absolute;
  left: -80px;
  top: 42%;
  width: 320px;
  height: 320px;
  opacity: 0.72;
  transform: translateY(-50%);
}

.hero-x-mark::before,
.hero-x-mark::after {
  content: "";
  position: absolute;
  inset: 48px 0;
  border: 11px solid transparent;
  border-image: linear-gradient(135deg, #ffb900, #ff6500, #d90000) 1;
  transform: skew(-10deg) rotate(45deg);
}

.hero-x-mark::after {
  transform: skew(-10deg) rotate(-45deg);
}

.hero-copy {
  grid-column: 2;
  max-width: 850px;
  padding-top: 40px;
}

.hero-overline {
  display: none;
}

.eyebrow,
.kicker {
  color: var(--gold-strong);
  font-size: clamp(0.95rem, 1.45vw, 1.7rem);
  font-weight: 950;
  letter-spacing: 0.42em;
}

.hero .eyebrow {
  margin-bottom: 34px;
}

.hero h1 {
  max-width: none;
  color: #fff;
  font-size: clamp(5.2rem, 8.4vw, 11.5rem);
  line-height: 0.88;
  letter-spacing: -0.095em;
  text-transform: uppercase;
}

.hero h1 .title-line {
  color: #fff;
  text-shadow: none;
}

.hero h1 .title-accent {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  filter: none;
}

.hero h1 .title-line:last-child {
  letter-spacing: -0.075em;
  word-spacing: normal;
}

.hero h1 .title-combo {
  display: flex;
  gap: 0.16em;
  white-space: nowrap;
}

.hero-text {
  display: none;
}

.hero-actions {
  margin-top: 46px;
}

.btn {
  min-width: 360px;
  min-height: 80px;
  padding: 0 34px;
  justify-content: space-between;
  border-radius: 0;
  color: #fff;
  font-size: clamp(0.95rem, 1.25vw, 1.28rem);
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(105deg, #ffbf00 0%, #ff8700 48%, #df1300 100%);
  box-shadow: none;
}

.btn-primary span {
  margin-left: 28px;
  font-size: 1.45em;
}

.btn:hover {
  transform: translateX(6px);
}

.about {
  min-height: 100svh;
  padding: 190px 0 130px;
  background: #000;
}

.about-logo {
  position: absolute;
  top: 64px;
  left: min(5.4vw, 108px);
  display: grid;
  gap: 8px;
  transform: scale(0.88);
  transform-origin: left top;
}

.about-grid {
  grid-template-columns: minmax(620px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
}

.about .section-heading {
  max-width: 920px;
  padding-left: 0;
}

.about .section-heading::before {
  content: "";
  position: absolute;
  left: -9.5vw;
  top: -46px;
  width: 1px;
  height: 92vh;
  background: linear-gradient(#e11b00, rgba(225, 27, 0, 0));
}

.about .section-heading h2 {
  color: #fff;
  font-size: clamp(4.2rem, 6.8vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  word-spacing: 0.08em;
  text-transform: uppercase;
}

.about .section-heading p:not(.kicker) {
  max-width: 620px;
  margin: 44px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.15rem, 1.55vw, 1.65rem);
  line-height: 1.32;
}

.inline-actions {
  align-items: center;
  gap: 82px;
  margin-top: 84px;
}

.inline-actions .btn {
  min-width: 312px;
  min-height: 80px;
}

.review-link {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  color: var(--gold-strong) !important;
  border: 0 !important;
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.growth-arrow {
  position: relative;
  min-height: 520px;
}

.growth-arrow::before {
  content: "";
  position: absolute;
  right: 2%;
  top: 50%;
  width: min(34vw, 650px);
  height: min(25vw, 480px);
  border-right: 74px solid;
  border-top: 74px solid;
  border-image: linear-gradient(135deg, #ffbd00, #ff6d00 52%, #d90600) 1;
  transform: translateY(-44%) rotate(-3deg) skew(-7deg);
}

.growth-arrow::after {
  content: "";
  position: absolute;
  right: -1%;
  top: 15%;
  width: 0;
  height: 0;
  border-left: 145px solid #df1200;
  border-top: 88px solid transparent;
  border-bottom: 88px solid transparent;
  transform: rotate(-42deg);
}

.section-image {
  min-height: 100svh;
  padding: 150px 0 0;
  background: #000;
}

.bg-building {
  opacity: 1;
  background:
    linear-gradient(180deg, #000 0, rgba(0, 0, 0, 0.16) 18%, rgba(0, 0, 0, 0.1) 62%, #000 100%),
    url("assets/workdoc-city.svg") center / cover no-repeat;
}

.section-image::after {
  background: rgba(0, 0, 0, 0.34);
}

.client-grid {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 84px;
}

.client-copy {
  max-width: 1120px;
}

.client-copy h2 {
  color: #fff;
  font-size: clamp(4.4rem, 7.2vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  word-spacing: 0.1em;
  text-transform: uppercase;
}

.client-copy p {
  max-width: 990px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.15rem, 1.5vw, 1.6rem);
  line-height: 1.34;
}

.client-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(380px, 1fr));
  gap: 28px;
  margin-left: 270px;
  padding-bottom: 44px;
}

.client-list::before {
  content: "";
  position: absolute;
  left: -250px;
  top: 10px;
  width: 170px;
  height: 170px;
  border-right: 32px solid;
  border-top: 32px solid;
  border-image: linear-gradient(135deg, #ffbf00, #ff7000, #e11200) 1;
  transform: rotate(45deg) skew(-8deg);
}

.client-list a {
  justify-content: center;
  min-height: 188px;
  padding: 0 44px;
  border: 4px solid transparent;
  border-radius: 30px;
  border-image: linear-gradient(135deg, #ffbf00, #ff7b00, #d90600) 1;
  color: var(--gold-strong);
  background: #000;
  font-size: clamp(1.2rem, 1.45vw, 1.7rem);
  letter-spacing: 0.34em;
  text-align: center;
  text-transform: uppercase;
}

.client-list a::after {
  display: none;
}

.client-list a:hover {
  transform: translateY(-8px);
  background: #050505;
}

@media (max-width: 1180px) {
  .container,
  .hero-grid {
    width: min(100% - 56px, 1660px);
  }

  .site-header {
    min-height: 112px;
    padding: 26px 28px 18px;
  }

  .brand {
    min-width: 205px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 112px);
  }

  .hero-copy {
    grid-column: 1;
    margin-left: clamp(260px, 36vw, 440px);
  }

  .hero-art {
    width: 65vw;
    min-width: 520px;
  }

  .client-list {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    margin-left: 0;
  }

  .client-list::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .container,
  .hero-grid {
    width: min(100% - 28px, 1660px);
  }

  .site-header {
    min-height: 92px;
    padding: 20px 16px 14px;
  }

  .brand {
    min-width: 150px;
  }

  .brand-mark,
  .brand-dot,
  .brand-tail {
    font-size: 1.55rem;
  }

  .brand-subtitle {
    font-size: 0.55rem;
    letter-spacing: 0.34em;
  }

  .phone-link {
    display: none;
  }

  .hero {
    min-height: 830px;
    padding-top: 92px;
  }

  .hero-grid {
    min-height: 738px;
    align-items: start;
    padding-top: 120px;
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero-art {
    left: -150px;
    bottom: -75px;
    width: 760px;
    min-width: 0;
    opacity: 0.62;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 20vw, 6.4rem);
  }

  .hero .eyebrow,
  .kicker {
    font-size: 0.82rem;
    letter-spacing: 0.28em;
  }

  .btn,
  .inline-actions .btn {
    min-width: 0;
    width: 100%;
    min-height: 66px;
  }

  .about {
    min-height: auto;
    padding: 130px 0 86px;
  }

  .about-logo {
    top: 28px;
    left: 16px;
    transform: scale(0.72);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about .section-heading::before,
  .growth-arrow {
    display: none;
  }

  .about .section-heading h2,
  .client-copy h2 {
    font-size: clamp(3.4rem, 16vw, 5.6rem);
  }

  .about .section-heading p:not(.kicker),
  .client-copy p {
    font-size: 1.05rem;
  }

  .inline-actions {
    gap: 26px;
    margin-top: 42px;
  }

  .section-image {
    min-height: auto;
    padding: 100px 0 70px;
  }

  .client-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .client-list a {
    min-height: 112px;
    border-width: 3px;
    letter-spacing: 0.22em;
  }
}

/* Full-site poster tightening */
html {
  scrollbar-color: #e02100 #070707;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: 5px;
  height: 100vh;
  background: linear-gradient(#ffbf00, #e01a00);
  opacity: 0.75;
  pointer-events: none;
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#ffbf00, #e01a00);
  border-radius: 999px;
}

.section-heading,
.client-copy,
.review-aside,
.blog-head,
.contact-copy {
  position: relative;
}

.section-heading h2,
.review-aside h2,
.blog-head h2,
.contact-copy h2,
.cta-grid h2 {
  color: #fff;
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.services {
  min-height: 100svh;
  padding: 160px 0 120px;
  background:
    radial-gradient(circle at 92% 16%, rgba(255, 94, 0, 0.13), transparent 25rem),
    #000;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 80%, transparent);
}

.section-watermark {
  top: 72px;
  left: auto;
  right: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 184, 0, 0.16);
  font-size: clamp(5rem, 13vw, 17rem);
  letter-spacing: -0.1em;
  transform: none;
}

.services-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  gap: 54px;
}

.services .section-heading {
  max-width: 1180px;
}

.services .section-heading h2 {
  font-size: clamp(4.5rem, 7.6vw, 10rem);
  word-spacing: 0.08em;
}

.services-intro {
  width: min(780px, 100%);
  margin-left: auto;
}

.chess-card {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.chess-card::after {
  display: none;
}

.chess-card p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  line-height: 1.35;
}

.chess-card strong {
  margin: 28px 0 34px;
  color: #fff;
  font-size: clamp(1.6rem, 2.4vw, 3rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.service-cards {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 78px;
  border-top: 2px solid rgba(255, 184, 0, 0.88);
  border-left: 2px solid rgba(255, 184, 0, 0.88);
}

.service-card {
  min-height: 420px;
  padding: 34px 30px;
  border: 0;
  border-right: 2px solid rgba(255, 184, 0, 0.88);
  border-bottom: 2px solid rgba(255, 184, 0, 0.88);
  border-radius: 0;
  background: #000;
  box-shadow: none;
}

.service-card::after {
  right: 18px;
  bottom: 18px;
  width: 82px;
  height: 82px;
  border-color: rgba(255, 184, 0, 0.18);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 184, 0, 0.88);
  background:
    linear-gradient(145deg, rgba(255, 184, 0, 0.08), rgba(226, 24, 0, 0.07)),
    #050505;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.55);
}

.service-card span {
  display: block;
  width: auto;
  height: auto;
  color: var(--gold-strong);
  background: transparent;
  box-shadow: none;
  font-size: clamp(2.5rem, 4vw, 5rem);
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.service-card h3 {
  margin: 92px 0 20px;
  color: #fff;
  font-size: clamp(1.65rem, 2.2vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.service-card p {
  min-height: 120px;
  color: rgba(255, 255, 255, 0.74);
}

.service-card a {
  color: var(--gold-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews {
  padding: 150px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(224, 24, 0, 0.12) 0 1px, transparent 1px) 10vw 0 / 1px 100% no-repeat,
    radial-gradient(circle at 78% 18%, rgba(255, 184, 0, 0.12), transparent 24rem),
    #000;
}

.reviews-layout {
  grid-template-columns: minmax(420px, 0.8fr) minmax(560px, 1.2fr);
  gap: 90px;
}

.review-aside h2 {
  font-size: clamp(4rem, 6.2vw, 8.8rem);
}

.review-aside li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.review-panel {
  min-height: 560px;
  border: 3px solid transparent;
  border-radius: 0;
  border-image: linear-gradient(135deg, #ffbf00, #ff6d00, #d90600) 1;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 184, 0, 0.16), transparent 16rem),
    #020202;
  box-shadow: none;
}

.review-panel::before {
  content: "CLIENTS";
  inset: auto 22px 4px auto;
  opacity: 1;
  color: rgba(255, 255, 255, 0.055);
  background: none;
  font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 0.8;
}

.review-comet {
  right: -70px;
  top: -80px;
  opacity: 0.95;
}

.review-track {
  min-height: 560px;
}

.review-card {
  padding: clamp(34px, 5vw, 76px);
}

.stars {
  font-size: 1.6rem;
}

.review-card p {
  max-width: 780px;
  font-size: clamp(1.5rem, 2.3vw, 3rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.text-button {
  color: var(--gold-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-controls button {
  width: 64px;
  height: 64px;
  border-color: rgba(255, 184, 0, 0.86);
  border-radius: 0;
  color: var(--gold-strong);
  background: #000;
  font-size: 1.45rem;
}

.blog {
  padding: 150px 0;
  background: #000;
}

.blog::before {
  left: auto;
  right: -0.12em;
  top: 60px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 184, 0, 0.14);
}

.blog-head {
  grid-template-columns: 1fr;
  max-width: 1180px;
}

.blog-lab {
  width: auto;
  height: auto;
  place-items: start;
  border: 0;
  border-radius: 0;
  color: var(--gold-strong);
  background: transparent;
  box-shadow: none;
  letter-spacing: 0.42em;
}

.blog-head h2 {
  font-size: clamp(4rem, 6.6vw, 9rem);
}

.blog-head p:last-child {
  max-width: 780px;
  margin-top: 30px;
  font-size: clamp(1.1rem, 1.4vw, 1.5rem);
  line-height: 1.35;
}

.blog-grid {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 72px;
  border-top: 2px solid rgba(255, 184, 0, 0.7);
}

.blog-card {
  display: grid;
  grid-template-columns: 0.22fr 0.72fr 1fr 0.28fr;
  align-items: center;
  min-height: 176px;
  padding: 32px 0;
  border: 0;
  border-bottom: 2px solid rgba(255, 184, 0, 0.7);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.blog-card:hover {
  transform: none;
  background: linear-gradient(90deg, rgba(255, 184, 0, 0.06), rgba(224, 24, 0, 0.06), transparent);
}

.blog-card span {
  color: var(--gold-strong);
  letter-spacing: 0.2em;
}

.blog-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 3.3rem);
  text-transform: uppercase;
}

.blog-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.blog-card small {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  text-align: right;
}

.cta-band {
  background: linear-gradient(100deg, #ffbf00 0%, #ff7600 50%, #d90700 100%);
}

.cta-grid {
  min-height: 330px;
}

.cta-grid h2 {
  color: #000;
  font-size: clamp(4rem, 7vw, 9.5rem);
}

.cta-grid .kicker {
  color: rgba(0, 0, 0, 0.66);
}

.cta-grid .btn-primary {
  color: #fff;
  background: #000;
}

.contact {
  padding: 160px 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 184, 0, 0.12), transparent 23rem),
    #000;
}

.contact-grid {
  grid-template-columns: minmax(480px, 0.92fr) minmax(560px, 1.08fr);
  gap: 90px;
}

.contact-copy h2 {
  font-size: clamp(4rem, 6.2vw, 8.6rem);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.35vw, 1.45rem);
  line-height: 1.35;
}

.contact-facts article {
  border: 0;
  border-left: 2px solid rgba(255, 184, 0, 0.85);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form {
  border: 3px solid transparent;
  border-radius: 0;
  border-image: linear-gradient(135deg, #ffbf00, #ff6d00, #d90600) 1;
  background: #020202;
  box-shadow: none;
}

.contact-form h3 {
  font-size: clamp(2.8rem, 4.6vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border-color: rgba(255, 184, 0, 0.34);
  border-radius: 0;
  background: #000;
}

.site-footer {
  padding: 74px 0;
  background: #000;
}

.footer-grid {
  align-items: start;
  border-top: 2px solid rgba(255, 184, 0, 0.58);
  padding-top: 40px;
}

.footer-brand {
  min-width: 240px;
}

@media (max-width: 1180px) {
  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    grid-template-columns: 0.35fr 1fr;
    gap: 18px 34px;
  }

  .blog-card p,
  .blog-card small {
    grid-column: 2;
  }

  .blog-card small {
    text-align: left;
  }
}

@media (max-width: 760px) {
  body::before {
    width: 3px;
  }

  .services,
  .reviews,
  .blog,
  .contact {
    padding: 88px 0;
  }

  .services .section-heading h2,
  .review-aside h2,
  .blog-head h2,
  .contact-copy h2,
  .cta-grid h2 {
    font-size: clamp(3rem, 14vw, 5rem);
    letter-spacing: -0.045em;
  }

  .service-cards {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .service-card {
    min-height: 300px;
  }

  .service-card h3 {
    margin-top: 46px;
  }

  .review-panel,
  .review-track {
    min-height: 520px;
  }

  .blog-card {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 14px;
  }

  .blog-card p,
  .blog-card small {
    grid-column: auto;
  }

  .cta-grid {
    min-height: 260px;
  }

  .contact-form {
    padding: 24px;
  }
}

/* Motion polish pass */
:root {
  --pointer-x: 0;
  --pointer-y: 0;
}

.site-header {
  transition: min-height 0.28s ease, padding 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.site-header.scrolled {
  min-height: 104px;
  padding-top: 22px;
  padding-bottom: 18px;
}

.brand-tail::before {
  animation: xPulse 3.8s ease-in-out infinite;
}

.boxer-statue {
  transform: translate3d(calc(var(--pointer-x) * -16px), calc(var(--pointer-y) * -12px), 0);
  transition: transform 0.24s ease-out;
  animation: statueBreath 7s ease-in-out infinite;
}

.hero-x-mark {
  transform: translateY(-50%) translate3d(calc(var(--pointer-x) * 22px), calc(var(--pointer-y) * 16px), 0);
  transition: transform 0.3s ease-out;
  animation: xDrift 9s ease-in-out infinite;
}

.hero-copy {
  transform: translate3d(calc(var(--pointer-x) * 8px), calc(var(--pointer-y) * 5px), 0);
  transition: transform 0.28s ease-out;
}

.hero h1 .title-line {
  will-change: transform, opacity;
}

.hero h1 .title-line:nth-child(1) {
  animation: titleSnap 0.9s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 .title-line:nth-child(2) {
  animation: titleSnap 0.9s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 .title-line:nth-child(3) {
  animation: titleSnap 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.34) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn span,
.review-link span,
.service-card a,
.client-list a {
  transition: transform 0.24s ease, color 0.24s ease;
}

.btn:hover span,
.review-link:hover span {
  transform: translateX(8px);
}

.growth-arrow::before,
.growth-arrow::after {
  animation: arrowFloat 4.6s ease-in-out infinite;
}

.growth-arrow::after {
  animation-delay: 0.18s;
}

.client-list a,
.service-card,
.blog-card,
.contact-facts article {
  will-change: transform;
}

.client-list a:hover {
  color: #fff;
}

.client-list a::before,
.service-card::before,
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 184, 0, 0.18), rgba(224, 24, 0, 0.12), transparent);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 0.28s ease, transform 0.38s ease;
}

.client-list a:hover::before,
.service-card:hover::before,
.blog-card:hover::before {
  opacity: 1;
  transform: translateX(18%);
}

.service-card span {
  transition: transform 0.24s ease, text-shadow 0.24s ease;
}

.service-card:hover span {
  transform: translateY(-6px);
  text-shadow: 0 0 26px rgba(255, 184, 0, 0.34);
}

.review-comet {
  animation: cometOrbit 8s ease-in-out infinite;
}

.review-card.active .stars {
  animation: starsPop 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.review-card.active p {
  animation: quoteLift 0.55s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-marquee {
  animation: marqueeSlide 28s linear infinite;
}

.contact-form {
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 12%;
  width: 22%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffbf00, #e01600, transparent);
  animation: borderScan 4.8s ease-in-out infinite;
}

.reveal {
  filter: blur(8px);
  transform: translate3d(0, 44px, 0) scale(0.985);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    filter 0.82s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal.visible {
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes titleSnap {
  from {
    opacity: 0;
    transform: translate3d(0, 0.32em, 0) skewY(3deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) skewY(0);
  }
}

@keyframes statueBreath {
  0%,
  100% {
    filter: brightness(0.78) contrast(1.36) saturate(0.92) drop-shadow(0 38px 45px rgba(0, 0, 0, 0.78));
  }

  50% {
    filter: brightness(0.88) contrast(1.42) saturate(0.96) drop-shadow(0 44px 52px rgba(0, 0, 0, 0.82));
  }
}

@keyframes xDrift {
  0%,
  100% {
    opacity: 0.58;
  }

  50% {
    opacity: 0.82;
  }
}

@keyframes xPulse {
  0%,
  100% {
    opacity: 0.82;
    transform: rotate(-48deg) scaleX(1);
  }

  50% {
    opacity: 1;
    transform: rotate(-48deg) scaleX(1.08);
  }
}

@keyframes arrowFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 12px -10px;
  }
}

@keyframes cometOrbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-18px, 14px, 0) rotate(8deg);
  }
}

@keyframes starsPop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes quoteLift {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marqueeSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-18%);
  }
}

@keyframes borderScan {
  0%,
  100% {
    left: 5%;
    opacity: 0.25;
  }

  50% {
    left: 72%;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-tail::before,
  .boxer-statue,
  .hero-x-mark,
  .hero h1 .title-line,
  .growth-arrow::before,
  .growth-arrow::after,
  .review-comet,
  .review-card.active .stars,
  .review-card.active p,
  .contact-marquee,
  .contact-form::before {
    animation: none !important;
  }

  .boxer-statue,
  .hero-x-mark,
  .hero-copy {
    transform: none !important;
  }
}

/* Mobile-only proportion fix — keep desktop untouched */
@media (max-width: 760px) {
  .container,
  .hero-grid {
    width: calc(100% - 28px);
    max-width: 100%;
  }

  .site-header {
    min-height: 92px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-grid {
    min-height: 698px;
    padding-top: 150px;
    overflow: hidden;
  }

  .hero-copy,
  .section-heading,
  .client-copy,
  .review-aside,
  .blog-head,
  .contact-copy {
    max-width: 100%;
    min-width: 0;
  }

  .hero-art {
    left: -185px;
    bottom: -68px;
    width: 700px;
    opacity: 0.52;
  }

  .hero-x-mark {
    left: -38px;
    width: 220px;
    height: 220px;
    opacity: 0.45;
  }

  .hero .eyebrow,
  .kicker,
  .blog-lab {
    max-width: 100%;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.45rem, 15.4vw, 4.55rem);
    line-height: 0.88;
    letter-spacing: -0.062em;
  }

  .hero h1 .title-combo {
    display: block;
    white-space: normal;
  }

  .hero h1 .title-combo span {
    display: block;
  }

  .btn,
  .inline-actions .btn,
  .contact-form .btn {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 64px;
    padding: 0 18px;
    font-size: 0.84rem;
    letter-spacing: 0.01em;
  }

  .about .section-heading h2,
  .client-copy h2,
  .services .section-heading h2,
  .review-aside h2,
  .blog-head h2,
  .contact-copy h2,
  .cta-grid h2 {
    max-width: 100%;
    font-size: clamp(2.78rem, 11.6vw, 4.18rem);
    line-height: 0.94;
    letter-spacing: -0.035em;
    word-spacing: 0.02em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .client-copy h2,
  .services .section-heading h2 {
    font-size: clamp(2.3rem, 9.55vw, 3.52rem);
    letter-spacing: -0.03em;
  }

  .about .section-heading p:not(.kicker),
  .client-copy p,
  .chess-card p,
  .contact-copy p,
  .blog-head p:last-child {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.42;
  }

  .services {
    padding-top: 112px;
  }

  .services-intro {
    width: 100%;
    margin-left: 0;
  }

  .chess-card strong {
    font-size: clamp(1.36rem, 6vw, 2rem);
    line-height: 1.03;
    letter-spacing: -0.035em;
  }

  .service-card {
    padding: 26px 22px;
  }

  .service-card h3 {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
    line-height: 1;
  }

  .review-card p {
    font-size: clamp(1.22rem, 6.2vw, 1.86rem);
    line-height: 1.16;
  }

  .contact-form h3 {
    font-size: clamp(2.15rem, 10vw, 3.3rem);
    letter-spacing: -0.052em;
  }

  .form-grid {
    gap: 12px;
  }

  .contact-form input,
  .contact-form select {
    height: 50px;
  }

  .footer-grid {
    gap: 28px;
  }
}


/* Donor-mobile alignment pass — desktop untouched */
@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 13px 14px 9px;
  }

  .site-header.scrolled {
    min-height: 64px;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .brand {
    min-width: 118px;
    gap: 5px;
  }

  .brand-mark,
  .brand-dot,
  .brand-tail {
    font-size: 1.18rem;
  }

  .brand-subtitle {
    font-size: 0.44rem;
    letter-spacing: 0.34em;
  }

  .menu-toggle {
    width: 44px;
    height: 34px;
  }

  .menu-toggle span {
    left: 3px;
    width: 38px;
    height: 2px;
  }

  .menu-toggle span:first-child {
    top: 9px;
  }

  .menu-toggle span:last-child {
    top: 23px;
  }

  .hero {
    min-height: 690px;
    padding-top: 70px;
  }

  .hero-grid {
    min-height: 620px;
    padding-top: 70px;
  }

  .hero-art {
    left: -120px;
    bottom: -58px;
    width: 590px;
    opacity: 0.62;
  }

  .hero-x-mark {
    left: -22px;
    top: 42%;
    width: 210px;
    height: 210px;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 13.2vw, 4.15rem);
    line-height: 0.87;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-actions .btn {
    min-height: 58px;
  }

  .about {
    min-height: auto;
    padding: 56px 0 72px;
  }

  .about-logo {
    top: 18px;
    left: 50%;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    transform: translateX(-50%);
  }

  .about-logo .brand-row,
  .about-logo .brand-subtitle {
    display: none;
  }

  .about-logo::before,
  .about-logo::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 4px;
    background: linear-gradient(90deg, #ffbf00, #ff6d00, #e01800);
    transform: rotate(45deg);
    box-shadow: 0 0 16px rgba(255, 111, 0, 0.34);
  }

  .about-logo::after {
    transform: rotate(-45deg);
  }

  .about .section-heading {
    padding-top: 34px;
  }

  .section-image {
    padding-top: 76px;
  }

  .clients {
    min-height: auto;
  }

  .reveal {
    filter: blur(3px);
    transform: translate3d(0, 22px, 0) scale(0.995);
    transition-duration: 0.46s;
  }
}

/* Galaxy hero backdrop pass */
.hero-copy {
  position: relative;
  isolation: isolate;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -6.8rem -8.5rem -5.5rem -5.5rem;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.18) 24%, rgba(0, 0, 0, 0.1) 62%, #000 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.04) 38%, #000 100%),
    url("assets/workdoc-hero-galaxy-desktop.jpg") center / cover no-repeat;
  opacity: 0.96;
  filter: brightness(1.08) contrast(1.22) saturate(1.02);
  mask-image: radial-gradient(ellipse at 52% 45%, #000 0 48%, rgba(0, 0, 0, 0.9) 64%, transparent 88%);
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -4rem -4.5rem -3rem -3.5rem;
  border: 1px solid rgba(255, 184, 0, 0.14);
  opacity: 0.5;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 78%, transparent);
  pointer-events: none;
}

.hero-x-mark {
  display: none;
}

.hero-art {
  left: max(-260px, -16vw);
  width: min(48vw, 820px);
  min-width: 600px;
  opacity: 0.68;
}

.hero-art::after {
  background:
    linear-gradient(90deg, transparent 0 38%, rgba(0, 0, 0, 0.78) 66%, #000 92%),
    radial-gradient(circle at 48% 42%, transparent 0 20%, rgba(0, 0, 0, 0.36) 44%, rgba(0, 0, 0, 0.86) 86%);
}

.boxer-statue {
  filter: brightness(0.58) contrast(1.42) saturate(0.82) drop-shadow(0 38px 45px rgba(0, 0, 0, 0.84));
}

@media (max-width: 760px) {
  .hero-copy::before {
    inset: -3.4rem -1.4rem -2.6rem -1.4rem;
    background:
      linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.08) 42%, #000 100%),
      linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.04) 44%, #000 100%),
      url("assets/workdoc-hero-galaxy-mobile.jpg") center / cover no-repeat;
    opacity: 1;
    filter: brightness(1.08) contrast(1.2) saturate(1.02);
    mask-image: radial-gradient(ellipse at 48% 43%, #000 0 46%, rgba(0, 0, 0, 0.92) 66%, transparent 90%);
  }

  .hero-copy::after {
    inset: -2.4rem -0.6rem -1.7rem -0.6rem;
  }

  .hero-art {
    left: -210px;
    bottom: -84px;
    width: 620px;
    opacity: 0.38;
  }

  .hero-art::after {
    background:
      linear-gradient(90deg, transparent 0 22%, rgba(0, 0, 0, 0.48) 46%, #000 88%),
      radial-gradient(circle at 52% 42%, transparent 0 18%, rgba(0, 0, 0, 0.44) 46%, rgba(0, 0, 0, 0.92) 86%);
  }
}

@media (min-width: 761px) {
  .hero {
    background:
      linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.74) 20%, rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0.16) 73%, #000 100%),
      linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.1) 29%, rgba(0, 0, 0, 0.08) 62%, #000 100%),
      url("assets/workdoc-hero-galaxy-desktop.jpg") center / cover no-repeat,
      #000;
  }

  .hero-art,
  .hero-art::after,
  .boxer-statue,
  .hero-x-mark,
  .hero-copy::before,
  .hero-copy::after {
    content: none;
    display: none;
  }

  .section-watermark {
    letter-spacing: -0.082em;
  }

  .blog::before {
    letter-spacing: -0.145em;
  }

  .contact-marquee {
    letter-spacing: -0.112em;
  }
}

.mobile-call {
  display: none;
  position: relative;
}

.mobile-call-toggle {
  display: grid;
  place-items: center;
  width: 54px;
  height: 44px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  opacity: 0.96;
}

.mobile-call-toggle svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-call-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: -58px;
  z-index: 30;
  display: none;
  width: max-content;
  min-width: 248px;
  padding: 10px;
  border: 1px solid rgba(246, 206, 69, 0.28);
  border-radius: 20px;
  background: rgba(3, 3, 3, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.mobile-call-menu a {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 14px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: rgba(255, 255, 255, 0.045);
}

.mobile-call-menu a + a {
  margin-top: 7px;
}

.mobile-call-menu span {
  color: var(--gold-strong);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.call-open .mobile-call-menu {
  display: grid;
}

.mobile-call:focus-within .mobile-call-menu {
  display: grid;
}

@media (max-width: 760px) {
  .header-actions {
    gap: 9px;
  }

  .mobile-call {
    display: block;
  }

  .call-open .mobile-call-toggle {
    color: var(--gold-strong);
    opacity: 1;
  }

  .mobile-call:focus-within .mobile-call-toggle {
    color: var(--gold-strong);
    opacity: 1;
  }
}

/* Mobile spacing micro-pass — tiny compression only */
@media (max-width: 760px) {
  .about {
    padding-top: 50px;
    padding-bottom: 64px;
  }

  .services {
    padding-top: 102px;
    padding-bottom: 80px;
  }

  .reviews,
  .blog,
  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .service-cards,
  .blog-grid {
    margin-top: 42px;
  }

  .contact-facts {
    margin-top: 32px;
  }
}

/* Mobile refinement pass — balanced, not aggressive */
@media (max-width: 760px) {
  .header-actions {
    gap: 8px;
  }

  .mobile-call-toggle {
    width: 44px;
    height: 34px;
  }

  .mobile-call-toggle svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.25;
  }

  .mobile-call-menu {
    top: calc(100% + 10px);
    right: -50px;
    min-width: 238px;
  }

  .hero {
    min-height: 670px;
  }

  .hero-grid {
    min-height: 600px;
    padding-top: 64px;
  }

  .hero-art.reveal,
  .hero-art.reveal.visible {
    left: -245px;
    bottom: -52px;
    width: 560px;
    opacity: 0.28;
  }

  .boxer-statue {
    opacity: 0.78;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .about {
    padding-top: 46px;
    padding-bottom: 58px;
  }

  .about .section-heading {
    padding-top: 28px;
  }

  .clients.section-image {
    padding-top: 66px;
    padding-bottom: 62px;
  }

  .services {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 72px;
  }

  .services-grid {
    gap: 46px;
  }

  .service-cards {
    margin-top: 36px;
  }

  .service-card {
    min-height: 286px;
  }

  .service-card h3 {
    margin-top: 38px;
  }

  .reviews,
  .blog,
  .contact {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .reviews-layout,
  .contact-grid {
    gap: 58px;
  }

  .review-panel,
  .review-track {
    min-height: 492px;
  }

  .review-comet {
    right: -26px;
  }

  .review-card {
    width: 100%;
    max-width: 100%;
  }

  .blog-head p:last-child {
    margin-top: 24px;
  }

  .blog-grid {
    margin-top: 36px;
  }

  .blog-card {
    min-height: 158px;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .cta-grid {
    min-height: 232px;
  }

  .contact-facts {
    margin-top: 28px;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .footer-grid {
    gap: 22px;
    padding-top: 32px;
  }
}

/* Mobile heading gap trim */
@media (max-width: 760px) {
  .about-logo {
    display: none;
  }

  .about {
    padding-top: 18px;
  }

  .about .section-heading {
    padding-top: 0;
  }

  .clients.section-image {
    padding-top: 30px;
  }

  .services {
    padding-top: 48px;
  }

  .services-grid {
    gap: 36px;
  }
}

/* Mobile inter-block compression */
@media (max-width: 760px) {
  .about {
    padding-top: 10px;
    padding-bottom: 36px;
  }

  .clients.section-image {
    padding-top: 18px;
    padding-bottom: 38px;
  }

  .services {
    padding-top: 34px;
    padding-bottom: 52px;
  }

  .reviews,
  .blog,
  .contact {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .services-grid,
  .reviews-layout,
  .contact-grid {
    gap: 40px;
  }

  .service-cards,
  .blog-grid {
    margin-top: 28px;
  }

  .review-panel,
  .review-track {
    min-height: 456px;
  }

  .cta-grid {
    min-height: 210px;
  }

  .site-footer {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}

/* Mobile hero-to-about gap trim */
@media (max-width: 760px) {
  .hero {
    min-height: 585px;
  }

  .hero-grid {
    min-height: 515px;
    padding-top: 54px;
  }

  .hero-actions {
    margin-top: 18px;
  }
}

/* Mobile galaxy backdrop lift */
@media (max-width: 760px) {
  .hero-copy::before {
    inset: -5.15rem -2rem -3rem -2rem;
    background:
      linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.05) 42%, #000 100%),
      linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.02) 34%, rgba(0, 0, 0, 0.1) 72%, #000 100%),
      url("assets/workdoc-hero-galaxy-mobile.jpg") center 38% / cover no-repeat;
    filter: brightness(1.14) contrast(1.24) saturate(1.06);
    mask-image: radial-gradient(ellipse at 48% 35%, #000 0 54%, rgba(0, 0, 0, 0.94) 69%, transparent 92%);
  }

  .hero-copy::after {
    inset: -4.2rem -1.1rem -2rem -1.1rem;
  }
}

/* Partner articles handoff */
.blog-partner {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: clamp(32px, 4.2vw, 64px);
  padding-top: clamp(26px, 3.2vw, 42px);
  border-top: 2px solid rgba(255, 184, 0, 0.68);
}

.blog-partner-link {
  width: min(100%, 760px);
}

@media (max-width: 760px) {
  .blog-partner {
    margin-top: 26px;
    padding-top: 22px;
  }

  .blog-partner-link {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 18px;
    font-size: 0.76rem;
    line-height: 1.16;
    text-align: left;
  }
}

/* LAB spacing refinement */
@media (min-width: 761px) {
  .blog {
    padding-top: 60px;
  }
}

@media (max-width: 760px) {
  .blog {
    padding-top: 42px;
    padding-bottom: 42px;
    border-top: 1px solid rgba(255, 184, 0, 0.34);
  }

  .blog::before {
    top: 18px;
    opacity: 0.72;
  }

  .blog-lab {
    margin-bottom: 10px;
  }

  .blog-head h2 {
    font-size: clamp(2.55rem, 11.2vw, 4.05rem);
    line-height: 0.92;
  }

  .blog-head p:last-child {
    display: none;
  }

  .blog-partner {
    margin-top: 20px;
    padding-top: 0;
    border-top: 0;
  }

  .blog-partner-link {
    min-height: 54px;
    font-size: 0.72rem;
  }
}

/* Desktop reviews spacing micro-trim */
@media (min-width: 761px) {
  .reviews {
    padding-top: 126px;
  }
}

/* Desktop clients spacing micro-trim */
@media (min-width: 761px) {
  .clients.section-image {
    padding-top: 76px;
  }
}

/* Standalone team page */
.team-page {
  background: #000;
}

.team-page .site-header .brand,
.team-page .footer-brand {
  text-decoration: none;
}

.team-hero {
  position: relative;
  min-height: 100svh;
  padding: 170px 0 110px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.28) 48%, #000 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.05) 42%, #000 100%),
    url("assets/workdoc-hero-galaxy-desktop.jpg") center / cover no-repeat,
    #000;
}

.team-hero::before {
  content: "TEAM";
  position: absolute;
  right: -0.08em;
  bottom: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 184, 0, 0.16);
  font-size: clamp(9rem, 22vw, 25rem);
  font-weight: 950;
  letter-spacing: -0.13em;
  line-height: 0.72;
  pointer-events: none;
}

.team-orbit {
  position: absolute;
  left: min(6vw, 90px);
  top: 24%;
  width: clamp(180px, 22vw, 370px);
  height: clamp(180px, 22vw, 370px);
  border: 2px solid rgba(255, 184, 0, 0.34);
  transform: rotate(45deg);
  opacity: 0.72;
  animation: teamOrbit 12s ease-in-out infinite;
}

.team-orbit::before,
.team-orbit::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(224, 24, 0, 0.45);
}

.team-orbit::after {
  inset: 58px;
  border-color: rgba(255, 184, 0, 0.18);
}

.team-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.55fr);
  gap: clamp(44px, 7vw, 120px);
  align-items: end;
  min-height: calc(100svh - 280px);
}

.team-hero-copy {
  max-width: 1040px;
}

.team-hero h1,
.team-section-head h2,
.network-copy h2,
.team-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(4.8rem, 8.8vw, 12rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.team-hero-copy p:not(.kicker),
.network-copy p {
  max-width: 820px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.06rem, 1.5vw, 1.55rem);
  line-height: 1.42;
}

.team-hero-actions {
  display: flex;
  margin-top: 46px;
}

.team-hero-panel {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 460px;
  padding: 34px;
  border: 3px solid transparent;
  border-image: linear-gradient(135deg, #ffbf00, #ff6d00, #d90600) 1;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 184, 0, 0.14), transparent 16rem),
    rgba(0, 0, 0, 0.78);
  overflow: hidden;
}

.team-hero-panel::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 184, 0, 0.15);
  transform: skew(-7deg);
}

.team-hero-panel span,
.team-hero-panel em {
  position: relative;
  color: var(--gold-strong);
  font-weight: 950;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.team-hero-panel strong {
  position: relative;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.58);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.13em;
  text-transform: uppercase;
}

.team-hero-panel em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.72);
}

.team-founders {
  position: relative;
  padding: 140px 0 132px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 184, 0, 0.12), transparent 26rem),
    #000;
}

.team-section-head {
  position: relative;
  z-index: 1;
  max-width: 1160px;
}

.team-section-head h2,
.network-copy h2,
.team-cta h2 {
  font-size: clamp(4rem, 7vw, 9.5rem);
}

.founders-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 74px;
  border-top: 2px solid rgba(255, 184, 0, 0.86);
  border-left: 2px solid rgba(255, 184, 0, 0.86);
}

.founder-card {
  position: relative;
  min-height: 520px;
  padding: clamp(32px, 4.6vw, 70px);
  border-right: 2px solid rgba(255, 184, 0, 0.86);
  border-bottom: 2px solid rgba(255, 184, 0, 0.86);
  background: #000;
  overflow: hidden;
}

.founder-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -92px;
  width: 240px;
  height: 240px;
  border: 2px solid rgba(255, 184, 0, 0.18);
  transform: rotate(45deg);
}

.founder-card span {
  display: block;
  color: var(--gold-strong);
  font-size: clamp(3rem, 5vw, 6.8rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.founder-card h3 {
  position: relative;
  margin: 116px 0 24px;
  color: #fff;
  font-size: clamp(2.1rem, 3.2vw, 4.3rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.founder-card p {
  position: relative;
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.28vw, 1.22rem);
  line-height: 1.48;
}

.team-network {
  position: relative;
  padding: 150px 0;
  background:
    linear-gradient(90deg, rgba(224, 24, 0, 0.12) 0 1px, transparent 1px) 10vw 0 / 1px 100% no-repeat,
    #000;
  overflow: hidden;
}

.team-network::before {
  content: "NETWORK";
  position: absolute;
  left: -0.08em;
  top: 0.22em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 184, 0, 0.1);
  font-size: clamp(7rem, 15vw, 17rem);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 0.72;
}

.network-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.8fr) minmax(580px, 1.2fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: start;
}

.network-cards {
  display: grid;
  gap: 0;
  border-top: 2px solid rgba(255, 184, 0, 0.72);
}

.network-cards article {
  display: grid;
  grid-template-columns: 0.28fr 0.72fr 1fr;
  gap: 28px;
  align-items: center;
  min-height: 168px;
  padding: 28px 0;
  border-bottom: 2px solid rgba(255, 184, 0, 0.72);
}

.network-cards span {
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.network-cards strong {
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 2.55rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.network-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.team-cta {
  background: linear-gradient(100deg, #ffbf00 0%, #ff7600 50%, #d90700 100%);
}

.team-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  min-height: 330px;
}

.team-cta .kicker {
  color: rgba(0, 0, 0, 0.66);
}

.team-cta h2 {
  color: #000;
}

.team-cta .btn-primary {
  color: #fff;
  background: #000;
}

@keyframes teamOrbit {
  0%,
  100% {
    transform: rotate(45deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(48deg) translate3d(18px, -12px, 0);
  }
}

@media (max-width: 1060px) {
  .team-hero-grid,
  .network-grid,
  .team-cta-grid {
    grid-template-columns: 1fr;
  }

  .team-hero-panel {
    min-height: 360px;
  }

  .network-cards article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .team-hero {
    min-height: auto;
    padding: 116px 0 58px;
    background:
      linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.18) 48%, #000 100%),
      linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.02) 38%, #000 100%),
      url("assets/workdoc-hero-galaxy-mobile.jpg") center 26% / cover no-repeat,
      #000;
  }

  .team-hero::before {
    right: -0.16em;
    bottom: 0.2em;
    font-size: clamp(5.6rem, 28vw, 8rem);
    opacity: 0.7;
  }

  .team-orbit {
    left: -74px;
    top: 128px;
    width: 190px;
    height: 190px;
    opacity: 0.34;
  }

  .team-hero-grid {
    min-height: 0;
    gap: 30px;
  }

  .team-hero h1,
  .team-section-head h2,
  .network-copy h2,
  .team-cta h2 {
    font-size: clamp(3rem, 13vw, 4.4rem);
    line-height: 0.9;
    letter-spacing: -0.052em;
  }

  .team-hero-copy p:not(.kicker),
  .network-copy p {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.44;
  }

  .team-hero-actions {
    margin-top: 26px;
  }

  .team-hero-panel {
    min-height: 230px;
    padding: 22px;
  }

  .team-hero-panel strong {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .team-founders,
  .team-network {
    padding: 58px 0;
  }

  .team-page .section-watermark {
    top: 22px;
    right: -0.18em;
    font-size: clamp(4.4rem, 24vw, 7rem);
    opacity: 0.7;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .founder-card {
    min-height: 360px;
    padding: 26px 22px;
  }

  .founder-card h3 {
    margin-top: 68px;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .network-grid {
    gap: 34px;
  }

  .network-cards article {
    min-height: 0;
    gap: 12px;
    padding: 22px 0;
  }

  .network-cards strong {
    font-size: clamp(1.42rem, 7vw, 2.15rem);
  }

  .team-cta-grid {
    min-height: 250px;
    gap: 24px;
    padding: 36px 0;
  }

  .team-cta-grid .btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 18px;
    font-size: 0.82rem;
  }
}

/* Team page cleanup pass */
.team-page .team-hero {
  min-height: auto;
  padding: 168px 0 92px;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.18) 48%, #000 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.04) 45%, #000 100%),
    url("assets/workdoc-hero-galaxy-desktop.jpg") center 42% / cover no-repeat,
    #000;
}

.team-page .team-hero::before {
  opacity: 0.42;
  right: -0.14em;
  bottom: 0.08em;
}

.team-page .team-orbit,
.team-page .team-hero-panel {
  display: none;
}

.team-page .team-hero-grid {
  display: block;
  min-height: 0;
}

.team-page .team-hero-copy {
  max-width: 1120px;
}

.team-page .team-hero h1 {
  max-width: 1040px;
  font-size: clamp(4.6rem, 7.7vw, 10.4rem);
}

.team-page .team-founders {
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 184, 0, 0.1), transparent 22rem),
    #000;
}

.team-page .team-founders .section-watermark {
  opacity: 0.48;
}

.team-page .team-section-head h2 {
  max-width: 980px;
  font-size: clamp(3.7rem, 6.2vw, 8.2rem);
}

.team-page .founders-grid {
  gap: 28px;
  margin-top: 56px;
  border: 0;
}

.team-page .founder-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(255, 184, 0, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #030303;
}

.team-page .founder-card::before {
  display: none;
}

.team-page .founder-photo {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), #000 100%),
    radial-gradient(circle at 50% 22%, rgba(255, 184, 0, 0.22), transparent 16rem),
    linear-gradient(135deg, #1a1a1a, #050505 64%);
}

.team-page .founder-photo::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 184, 0, 0.18);
}

.team-page .founder-photo::after {
  content: "Фото засновника";
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.team-page .founder-photo span {
  position: absolute;
  left: 50%;
  top: 50%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 184, 0, 0.36);
  font-size: clamp(5.8rem, 8vw, 9rem);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 0.8;
  transform: translate(-50%, -50%);
}

.team-page .founder-body {
  padding: clamp(28px, 3.2vw, 48px) clamp(24px, 3vw, 44px);
  align-self: end;
}

.team-page .founder-number {
  display: block;
  color: var(--gold-strong);
  font-size: clamp(2.4rem, 4vw, 5rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.team-page .founder-card h3 {
  margin: 74px 0 20px;
  font-size: clamp(1.85rem, 2.65vw, 3.7rem);
}

.team-page .founder-card p {
  max-width: 560px;
}

.team-page .team-network {
  padding: 96px 0;
}

.team-page .team-network::before {
  opacity: 0.42;
}

.team-page .network-grid {
  gap: clamp(40px, 5vw, 76px);
}

.team-page .network-cards {
  border-top-color: rgba(255, 184, 0, 0.44);
}

.team-page .network-cards article {
  min-height: 138px;
  border-bottom-color: rgba(255, 184, 0, 0.44);
}

@media (max-width: 1060px) {
  .team-page .founder-card {
    grid-template-columns: 1fr;
  }

  .team-page .founder-photo {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .team-page .team-hero {
    padding: 100px 0 48px;
    background:
      linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.12) 48%, #000 100%),
      linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.02) 40%, #000 100%),
      url("assets/workdoc-hero-galaxy-mobile.jpg") center 28% / cover no-repeat,
      #000;
  }

  .team-page .team-hero::before {
    opacity: 0.35;
  }

  .team-page .team-hero h1,
  .team-page .team-section-head h2,
  .team-page .network-copy h2,
  .team-page .team-cta h2 {
    font-size: clamp(2.8rem, 12vw, 4rem);
    letter-spacing: -0.045em;
  }

  .team-page .team-hero-copy p:not(.kicker),
  .team-page .network-copy p {
    margin-top: 18px;
  }

  .team-page .team-hero-actions {
    margin-top: 22px;
  }

  .team-page .team-founders,
  .team-page .team-network {
    padding: 46px 0;
  }

  .team-page .team-founders .section-watermark,
  .team-page .team-network::before {
    opacity: 0.26;
  }

  .team-page .founders-grid {
    gap: 18px;
    margin-top: 28px;
  }

  .team-page .founder-card {
    gap: 0;
  }

  .team-page .founder-photo {
    min-height: 310px;
  }

  .team-page .founder-photo::after {
    left: 18px;
    bottom: 16px;
    font-size: 0.62rem;
  }

  .team-page .founder-body {
    padding: 24px 20px 28px;
  }

  .team-page .founder-number {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .team-page .founder-card h3 {
    margin-top: 34px;
    font-size: clamp(1.85rem, 8.2vw, 2.65rem);
  }

  .team-page .network-grid {
    gap: 26px;
  }

  .team-page .network-cards article {
    padding: 18px 0;
  }
}

/* Founder photos */
.team-page .founder-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  filter: saturate(0.88) contrast(1.08) brightness(0.9);
  transform: scale(1.02);
}

.team-page .founder-photo.has-photo::before {
  z-index: 2;
}

.team-page .founder-photo.has-photo::after {
  content: "Онисько Данило";
  z-index: 3;
  color: rgba(255, 255, 255, 0.72);
}

.team-page .founder-photo.has-photo span {
  z-index: 3;
  opacity: 0.18;
}

.team-page .founder-photo.has-photo {
  background: #000;
}

.team-page .founder-photo.has-photo::selection {
  background: transparent;
}

/* Team founder photo/copy polish */
.team-page .founder-photo.has-photo::after {
  display: none;
  content: none;
}

.team-page .founder-photo.has-photo span {
  display: none;
}

@media (min-width: 1061px) {
  .team-page .founder-card {
    grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1fr);
    gap: 0;
  }

  .team-page .founder-photo {
    min-height: 520px;
  }

  .team-page .founder-body {
    align-self: center;
  }

  .team-page .founder-card h3 {
    margin-top: 56px;
    font-size: clamp(1.75rem, 2.25vw, 3.15rem);
  }
}

@media (max-width: 760px) {
  .team-page .founder-photo img {
    object-position: 50% 18%;
  }

  .team-page .founder-photo {
    min-height: 340px;
  }
}

/* Team network desktop overlap fix */
@media (min-width: 1061px) {
  .team-page .network-grid {
    grid-template-columns: minmax(360px, 0.72fr) minmax(640px, 1.28fr);
    gap: clamp(78px, 8vw, 132px);
  }

  .team-page .network-copy {
    max-width: 520px;
  }

  .team-page .network-copy h2 {
    font-size: clamp(3.1rem, 4.8vw, 6.7rem);
    line-height: 0.9;
  }

  .team-page .network-cards {
    min-width: 0;
  }

  .team-page .network-cards article {
    grid-template-columns: 0.22fr 0.78fr 1.08fr;
    gap: 24px;
  }
}

/* Team network copy micro-lift */
@media (min-width: 1061px) {
  .team-page .network-copy {
    position: relative;
    top: -10px;
  }

  .team-page .team-network {
    padding-bottom: 86px;
  }
}

/* Team founders spacing trim */
.team-page .team-founders {
  padding-top: 76px;
}

@media (max-width: 760px) {
  .team-page .team-founders {
    padding-top: 34px;
  }
}

/* Mobile team network spacing trim */
@media (max-width: 760px) {
  .team-page .team-network {
    padding-top: 34px;
  }
}

/* Coffee page */
.coffee-page {
  color: #2f2922;
  background: #f4ecdf;
}

.coffee-page .site-header {
  color: #2f2922;
  background: rgba(249, 244, 235, 0.88);
  border-color: rgba(73, 54, 39, 0.16);
  box-shadow: 0 18px 60px rgba(82, 58, 34, 0.12);
}

.coffee-page .desktop-nav a,
.coffee-page .mobile-nav a,
.coffee-page .phone-link,
.coffee-page .brand-mark,
.coffee-page .brand-dot {
  color: #2f2922;
}

.coffee-page .brand-tail {
  color: #8f6b45;
}

.coffee-page .brand-subtitle {
  color: rgba(47, 41, 34, 0.66);
}

.coffee-page .menu-toggle,
.coffee-page .mobile-call-toggle {
  color: #2f2922;
}

.coffee-page .mobile-nav,
.coffee-page .mobile-call-menu {
  color: #2f2922;
  background: rgba(249, 244, 235, 0.97);
  border-color: rgba(73, 54, 39, 0.14);
}

.coffee-page .mobile-nav a,
.coffee-page .mobile-call-menu a {
  color: #2f2922;
  background: rgba(73, 54, 39, 0.055);
}

.coffee-hero {
  position: relative;
  min-height: 100svh;
  padding: 170px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.9), transparent 23rem),
    radial-gradient(circle at 86% 18%, rgba(160, 120, 78, 0.18), transparent 25rem),
    linear-gradient(135deg, #fffaf2 0%, #f2e5d0 52%, #e5d2b8 100%);
}

.coffee-hero::before {
  content: "QUATTRO";
  position: absolute;
  right: -0.08em;
  bottom: 0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(74, 52, 35, 0.16);
  font-size: clamp(7rem, 17vw, 19rem);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 0.72;
  pointer-events: none;
}

.coffee-bean-field {
  position: absolute;
  left: min(7vw, 110px);
  top: 28%;
  width: clamp(170px, 21vw, 360px);
  height: clamp(170px, 21vw, 360px);
  border: 1px solid rgba(74, 52, 35, 0.15);
  border-radius: 50%;
  opacity: 0.72;
}

.coffee-bean-field::before,
.coffee-bean-field::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(74, 52, 35, 0.13);
  transform: rotate(-28deg);
}

.coffee-bean-field::before {
  left: 28%;
  top: 18%;
  width: 78px;
  height: 130px;
}

.coffee-bean-field::after {
  right: 20%;
  bottom: 20%;
  width: 54px;
  height: 92px;
}

.coffee-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  min-height: calc(100svh - 262px);
}

.coffee-kicker {
  margin: 0 0 24px;
  color: #8f6b45;
  font-size: clamp(0.82rem, 1vw, 1.05rem);
  font-weight: 950;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.coffee-hero h1,
.coffee-story h2,
.coffee-section-head h2,
.coffee-address h2 {
  margin: 0;
  color: #2f2922;
  font-size: clamp(4rem, 8.2vw, 10rem);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.coffee-hero-copy p:not(.coffee-kicker),
.coffee-story p,
.coffee-address p {
  max-width: 760px;
  margin: 32px 0 0;
  color: rgba(47, 41, 34, 0.72);
  font-size: clamp(1.04rem, 1.35vw, 1.34rem);
  line-height: 1.5;
}

.coffee-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 320px;
  min-height: 70px;
  margin-top: 42px;
  padding: 0 28px;
  color: #fffaf2;
  background: #2f2922;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coffee-logo-card {
  display: grid;
  place-items: center;
  min-height: 470px;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid rgba(74, 52, 35, 0.16);
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.95), transparent 17rem),
    rgba(255, 255, 255, 0.42);
  box-shadow: 0 34px 90px rgba(83, 59, 36, 0.15);
}

.coffee-logo-card img {
  width: min(100%, 340px);
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(47, 41, 34, 0.12));
}

.coffee-story,
.coffee-menu-section,
.coffee-location {
  position: relative;
  padding: 118px 0;
  background: #fffaf2;
}

.coffee-story-grid,
.coffee-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.coffee-story h2,
.coffee-section-head h2,
.coffee-address h2 {
  font-size: clamp(3.2rem, 6vw, 7.6rem);
}

.coffee-menu-section {
  background:
    linear-gradient(90deg, rgba(74, 52, 35, 0.08) 0 1px, transparent 1px) 10vw 0 / 1px 100% no-repeat,
    #f4ecdf;
}

.coffee-section-head {
  max-width: 960px;
}

.coffee-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid rgba(74, 52, 35, 0.28);
  border-left: 1px solid rgba(74, 52, 35, 0.28);
}

.coffee-menu-card {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid rgba(74, 52, 35, 0.28);
  border-bottom: 1px solid rgba(74, 52, 35, 0.28);
  background: rgba(255, 250, 242, 0.58);
}

.coffee-menu-card span {
  color: #8f6b45;
  font-size: 2.4rem;
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.coffee-menu-card h3 {
  margin: 86px 0 16px;
  color: #2f2922;
  font-size: clamp(1.55rem, 2.1vw, 2.6rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.coffee-menu-card p {
  margin: 0;
  color: rgba(47, 41, 34, 0.66);
  line-height: 1.44;
}

.coffee-map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(74, 52, 35, 0.18);
  background:
    linear-gradient(90deg, rgba(74, 52, 35, 0.12) 1px, transparent 1px) 0 0 / 58px 100%,
    linear-gradient(rgba(74, 52, 35, 0.1) 1px, transparent 1px) 0 0 / 100% 58px,
    radial-gradient(circle at 50% 50%, rgba(143, 107, 69, 0.24), transparent 12rem),
    #efe0ca;
}

.coffee-map::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(47, 41, 34, 0.26);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.coffee-map span,
.coffee-map strong {
  position: relative;
  z-index: 1;
}

.coffee-map span {
  color: rgba(47, 41, 34, 0.28);
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 0.72;
}

.coffee-map strong {
  position: absolute;
  bottom: 34px;
  color: #2f2922;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.coffee-address span {
  color: rgba(47, 41, 34, 0.48);
}

.coffee-page .site-footer {
  color: rgba(47, 41, 34, 0.72);
  background: #f4ecdf;
  border-top-color: rgba(74, 52, 35, 0.14);
}

.coffee-page .footer-grid {
  border-top-color: rgba(74, 52, 35, 0.18);
}

.coffee-page .footer-grid a,
.coffee-page .footer-contact a {
  color: #2f2922;
}

@media (max-width: 1060px) {
  .coffee-hero-grid,
  .coffee-story-grid,
  .coffee-location-grid {
    grid-template-columns: 1fr;
  }

  .coffee-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .coffee-hero {
    min-height: auto;
    padding: 102px 0 50px;
  }

  .coffee-hero-grid {
    min-height: 0;
    gap: 28px;
  }

  .coffee-hero h1,
  .coffee-story h2,
  .coffee-section-head h2,
  .coffee-address h2 {
    font-size: clamp(2.9rem, 13vw, 4.35rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
  }

  .coffee-hero-copy p:not(.coffee-kicker),
  .coffee-story p,
  .coffee-address p {
    margin-top: 20px;
    font-size: 1rem;
  }

  .coffee-link {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    margin-top: 28px;
    padding: 0 18px;
    font-size: 0.8rem;
  }

  .coffee-logo-card {
    min-height: 280px;
  }

  .coffee-logo-card img {
    width: min(100%, 230px);
  }

  .coffee-story,
  .coffee-menu-section,
  .coffee-location {
    padding: 54px 0;
  }

  .coffee-menu-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .coffee-menu-card {
    min-height: 210px;
    padding: 22px;
  }

  .coffee-menu-card h3 {
    margin-top: 44px;
  }

  .coffee-map {
    min-height: 320px;
  }
}

/* Footer coffee transition */
.footer-kava-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 24px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 184, 0, 0.22);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-kava-link img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  padding: 4px;
  background: #000;
}

.footer-kava-link:hover {
  border-color: rgba(255, 184, 0, 0.48);
  transform: translateY(-1px);
}

.coffee-page .footer-kava-link {
  border-color: rgba(74, 52, 35, 0.2);
  color: #2f2922;
  background: rgba(255, 255, 255, 0.42);
}

.coffee-map {
  color: inherit;
  text-decoration: none;
}

.coffee-map-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  color: #2f2922;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .footer-kava-link {
    margin-top: 18px;
    padding: 8px 12px 8px 8px;
    font-size: 0.68rem;
  }

  .footer-kava-link img {
    width: 40px;
    height: 40px;
  }

  .coffee-map-link {
    margin-top: 22px;
    font-size: 0.76rem;
  }
}

/* Coffee menu list refinement */
.coffee-menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coffee-menu-card {
  min-height: 210px;
}

.coffee-menu-card h3 {
  margin-top: 72px;
}

@media (max-width: 760px) {
  .coffee-menu-card {
    min-height: 148px;
  }

  .coffee-menu-card h3 {
    margin-top: 34px;
  }
}

/* Coffee drinks menu board */
.coffee-menu-section {
  overflow: hidden;
  padding-top: clamp(88px, 9vw, 132px);
}

.coffee-menu-section::before {
  content: "MENU";
  position: absolute;
  right: -0.04em;
  top: 0.18em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(74, 52, 35, 0.085);
  font-size: clamp(7rem, 17vw, 18rem);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 0.72;
}

.coffee-menu-section .coffee-section-head {
  position: relative;
  z-index: 1;
  max-width: 1040px;
}

.coffee-menu-heading {
  display: flex;
  align-items: flex-end;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(74, 52, 35, 0.26);
}

.coffee-menu-heading h2 {
  font-size: clamp(3.2rem, 5.6vw, 6.4rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.coffee-menu-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 1040px;
  margin-top: 42px;
  padding: clamp(16px, 2vw, 26px);
  border: 1px solid rgba(74, 52, 35, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 250, 242, 0.4)),
    rgba(255, 250, 242, 0.62);
  box-shadow: 0 28px 90px rgba(83, 59, 36, 0.12);
}

.coffee-menu-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  min-height: 94px;
  padding: 0 24px;
  border: 0;
  border-bottom: 1px solid rgba(74, 52, 35, 0.16);
  background: transparent;
  transition: background-color 220ms ease, transform 220ms ease;
}

.coffee-menu-card:nth-child(odd) {
  border-right: 1px solid rgba(74, 52, 35, 0.16);
}

.coffee-menu-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.coffee-menu-card:last-child {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(74, 52, 35, 0.16);
  border-right: 0;
  border-bottom: 0;
}

.coffee-menu-card:hover {
  z-index: 1;
  background: rgba(143, 107, 69, 0.07);
  transform: translateX(4px);
}

.coffee-menu-card span {
  color: rgba(143, 107, 69, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
}

.coffee-menu-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.25vw, 2.7rem);
}

.coffee-menu-card::after {
  content: none;
  display: none;
}

.coffee-map {
  display: block;
  padding: 12px;
  background: rgba(255, 250, 242, 0.72);
}

.coffee-map::before,
.coffee-map span,
.coffee-map strong {
  display: none;
}

.coffee-map iframe {
  display: block;
  width: 100%;
  min-height: 476px;
  border: 0;
  filter: sepia(0.14) saturate(0.86) contrast(0.98);
}

@media (max-width: 760px) {
  .coffee-menu-section {
    padding-top: 72px;
  }

  .coffee-menu-section::before {
    top: 0.25em;
    right: -0.12em;
    font-size: clamp(5.5rem, 29vw, 8rem);
  }

  .coffee-menu-heading {
    padding-bottom: 22px;
  }

  .coffee-menu-heading h2 {
    font-size: clamp(2.9rem, 13vw, 4.4rem);
  }

  .coffee-menu-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
    padding: 10px 14px;
  }

  .coffee-menu-card {
    grid-template-columns: 48px 1fr;
    min-height: 68px;
    padding: 0 4px;
    border-right: 0;
  }

  .coffee-menu-card:nth-child(odd) {
    border-right: 0;
  }

  .coffee-menu-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(74, 52, 35, 0.16);
  }

  .coffee-menu-card:last-child {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }

  .coffee-menu-card h3 {
    font-size: clamp(1.22rem, 6.1vw, 1.7rem);
  }

  .coffee-menu-card::after {
    display: none;
  }

  .coffee-map {
    padding: 8px;
  }

  .coffee-map iframe {
    min-height: 312px;
  }
}

/* Main-site footer bottom micro-trim */
body:not(.coffee-page) .site-footer {
  padding-bottom: 62px;
}

@media (max-width: 760px) {
  body:not(.coffee-page) .site-footer {
    padding-bottom: 38px;
  }
}

/* Responsive 404 page */
.error-page {
  min-width: 320px;
  color: #fff;
  background: #000;
}

.error-page .page-shell {
  min-height: 100svh;
}

.error-main {
  min-height: calc(100svh - 72px);
}

.error-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: 176px 0 92px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.74) 43%, rgba(0, 0, 0, 0.28) 72%, #000 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.14) 42%, #000 100%),
    url("assets/404-james-webb-desktop.jpg") center / cover no-repeat,
    #000;
}

.error-hero::before {
  content: "ERROR";
  position: absolute;
  left: -0.08em;
  bottom: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 184, 0, 0.11);
  font-size: clamp(8rem, 19vw, 22rem);
  font-weight: 950;
  letter-spacing: -0.11em;
  line-height: 0.7;
}

.error-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(52px, 7vw, 120px);
  align-items: center;
}

.error-copy {
  max-width: 700px;
}

.error-copy h1 {
  margin: 0;
  font-size: clamp(4.2rem, 6.8vw, 9rem);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.error-copy > p:not(.kicker) {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.28vw, 1.26rem);
  line-height: 1.52;
}

.error-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.error-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-strong);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.error-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 470px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.88);
  font-size: clamp(8.5rem, 14vw, 17rem);
  font-weight: 950;
  letter-spacing: -0.14em;
  line-height: 0.72;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.62));
}

.error-visual span {
  position: relative;
  z-index: 2;
}

.error-zero {
  color: transparent;
  -webkit-text-stroke-color: var(--gold-strong);
  animation: errorPulse 4.8s ease-in-out infinite;
}

.error-file {
  position: absolute;
  z-index: 1;
  top: 4%;
  left: 17%;
  display: flex;
  flex-direction: column;
  width: clamp(210px, 22vw, 340px);
  aspect-ratio: 0.76;
  padding: clamp(24px, 2.5vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.64);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  transform: rotate(-9deg);
  animation: errorFileFloat 6s ease-in-out infinite;
}

.error-file::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #ffbf00, #ff6a00, #d90700);
}

.error-file > span {
  z-index: auto;
  margin-bottom: clamp(34px, 4vw, 62px);
  color: var(--gold-strong);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.28em;
}

.error-file i {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 17px;
  background: rgba(255, 255, 255, 0.16);
}

.error-file i:nth-of-type(2) {
  width: 72%;
}

.error-file i:nth-of-type(3) {
  width: 46%;
}

.error-file strong {
  align-self: flex-end;
  margin-top: auto;
  padding: 10px 12px 8px;
  border: 2px solid rgba(224, 24, 0, 0.88);
  color: rgba(255, 73, 44, 0.92);
  font-size: clamp(0.72rem, 1vw, 0.95rem);
  letter-spacing: 0.16em;
  transform: rotate(-7deg);
}

.error-visual small {
  position: absolute;
  right: 4%;
  bottom: 16%;
  color: rgba(255, 255, 255, 0.74);
  -webkit-text-stroke: 0;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  line-height: 1;
}

.error-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 184, 0, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.error-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-strong);
  box-shadow: 0 0 28px rgba(255, 184, 0, 0.84);
}

.error-orbit-one {
  right: 6vw;
  top: 23%;
  width: clamp(280px, 34vw, 620px);
  aspect-ratio: 1;
  animation: errorOrbit 18s linear infinite;
}

.error-orbit-two {
  right: 15vw;
  top: 34%;
  width: clamp(180px, 20vw, 360px);
  aspect-ratio: 1;
  border-color: rgba(224, 24, 0, 0.24);
  animation: errorOrbit 13s linear infinite reverse;
}

.error-footer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 max(5vw, 28px);
  border-top: 1px solid rgba(255, 184, 0, 0.22);
  color: rgba(255, 255, 255, 0.58);
  background: #000;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.error-footer a {
  color: rgba(255, 255, 255, 0.78);
}

@keyframes errorOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes errorPulse {
  0%,
  100% {
    opacity: 0.72;
    filter: drop-shadow(0 0 0 rgba(255, 184, 0, 0));
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 24px rgba(255, 184, 0, 0.42));
  }
}

@keyframes errorFileFloat {
  0%,
  100% {
    transform: rotate(-9deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-6deg) translate3d(12px, -16px, 0);
  }
}

@media (max-width: 1060px) {
  .error-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .error-copy {
    max-width: 780px;
  }

  .error-visual {
    justify-content: flex-start;
    min-height: 270px;
    font-size: clamp(8rem, 22vw, 13rem);
  }

  .error-file {
    top: -14%;
    left: 26%;
    width: clamp(180px, 29vw, 260px);
  }

  .error-visual small {
    right: auto;
    left: 3px;
    bottom: 4%;
  }
}

@media (max-width: 760px) {
  .error-main,
  .error-hero {
    min-height: calc(100svh - 60px);
  }

  .error-hero {
    padding: 122px 0 54px;
    background:
      linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.46) 38%, #000 100%),
      url("assets/404-james-webb-mobile.jpg") center 38% / cover no-repeat,
      #000;
  }

  .error-hero::before {
    bottom: 0.12em;
    font-size: clamp(6rem, 34vw, 9rem);
  }

  .error-grid {
    gap: 28px;
  }

  .error-copy h1 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
    line-height: 0.9;
  }

  .error-copy > p:not(.kicker) {
    margin-top: 22px;
    font-size: 0.96rem;
  }

  .error-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
  }

  .error-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 20px;
  }

  .error-contact-link {
    font-size: 0.76rem;
  }

  .error-visual {
    min-height: 190px;
    font-size: clamp(7rem, 33vw, 10rem);
  }

  .error-file {
    top: -28%;
    left: 31%;
    width: 142px;
    padding: 17px;
  }

  .error-file > span {
    margin-bottom: 20px;
    font-size: 0.48rem;
  }

  .error-file i {
    margin-top: 10px;
  }

  .error-file strong {
    padding: 6px 7px 5px;
    font-size: 0.48rem;
  }

  .error-visual small {
    bottom: 0;
    font-size: 0.55rem;
    letter-spacing: 0.22em;
  }

  .error-orbit-one {
    right: -34vw;
    top: 54%;
    width: 92vw;
  }

  .error-orbit-two {
    right: -3vw;
    top: 62%;
    width: 48vw;
  }

  .error-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
    padding: 24px;
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-zero,
  .error-file,
  .error-orbit-one,
  .error-orbit-two {
    animation: none;
  }
}

/* Mobile proportional refinement — desktop untouched */
@media (max-width: 760px) {
  .hero {
    min-height: 500px;
  }

  .hero-grid {
    min-height: 430px;
    padding-top: 34px;
  }

  body:not(.coffee-page):not(.error-page) .site-header,
  body:not(.coffee-page):not(.error-page) .site-header.scrolled {
    top: 0;
    background:
      linear-gradient(90deg, #c90000, #ffb900 34%, #f58200 62%, #d50000) top / 100% 8px no-repeat,
      rgba(0, 0, 0, 0.96);
  }

  body:not(.coffee-page):not(.error-page) .site-header::before {
    display: none;
  }

  .inline-actions {
    margin-top: 32px;
  }

  .team-page .team-network {
    padding-bottom: 34px;
  }

  .blog-lab {
    margin-bottom: 7px;
  }

  .blog-partner.reveal {
    --reveal-delay: 0ms !important;
  }

  .contact-form label,
  .form-grid {
    min-width: 0;
    max-width: 100%;
  }

  .form-grid > label {
    width: 100%;
    overflow: hidden;
  }

  .contact-form input[type="date"] {
    display: block;
    width: 100%;
    inline-size: 100%;
    min-width: 0;
    min-inline-size: 0;
    max-width: 100%;
    max-inline-size: 100%;
    box-sizing: border-box;
    overflow: hidden;
    -webkit-appearance: none;
    appearance: none;
  }

  .contact-form input[type="date"]::-webkit-date-and-time-value {
    min-width: 0;
    text-align: left;
  }

  .contact-form input[type="date"]::-webkit-datetime-edit {
    min-width: 0;
    padding: 0;
    overflow: hidden;
  }

  .contact-form input[type="date"]::-webkit-calendar-picker-indicator {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
  }
}

/* Legal footer mobile rebuild — desktop untouched */
.footer-menu-title,
.footer-mobile-meta {
  display: none;
}

@media (max-width: 760px) {
  .legal-footer {
    padding: 34px 0 24px;
  }

  .legal-footer .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 184, 0, 0.48);
  }

  .legal-footer .footer-grid > div:first-child {
    display: contents;
  }

  .legal-footer .footer-brand {
    order: 1;
    justify-self: center;
    min-width: 0;
    margin: 0 auto 36px;
    text-align: center;
  }

  .legal-footer .footer-brand .brand-row {
    justify-content: center;
  }

  .legal-footer .footer-brand .brand-mark,
  .legal-footer .footer-brand .brand-dot,
  .legal-footer .footer-brand .brand-tail {
    font-size: 1.55rem;
  }

  .legal-footer .footer-brand .brand-subtitle {
    font-size: 0.5rem;
    letter-spacing: 0.38em;
  }

  .legal-footer .footer-grid nav {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    width: 100%;
    padding: 0 4px;
    text-align: center;
  }

  .legal-footer .footer-menu-title {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-strong);
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.32em;
    text-transform: uppercase;
  }

  .legal-footer .footer-grid nav a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .legal-footer .footer-grid > div:first-child > p {
    order: 3;
    max-width: none;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.76rem;
    line-height: 1.58;
    text-align: left;
  }

  .legal-footer .footer-kava-link,
  .legal-footer .footer-contact {
    display: none;
  }

  .legal-footer .footer-mobile-meta {
    order: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 184, 0, 0.32);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .legal-footer .privacy-placeholder {
    color: rgba(255, 184, 0, 0.68);
    text-align: right;
  }
}
