:root {
  --ivory: #f4efe7;
  --porcelain: #fffaf2;
  --sand: #e7dccd;
  --champagne: #c8aa72;
  --graphite: #1b1a18;
  --charcoal: #2a2723;
  --muted: #766f66;
  --red: #f01822;
  --red-deep: #b80f18;
  --rose: #fff1ef;
  --line: rgba(42, 39, 35, 0.12);
  --glass: rgba(255, 250, 242, 0.68);
  --shadow: 0 26px 70px rgba(50, 34, 20, 0.16);
  --radius: 26px;
  --max: 1180px;
  --z-loader: 10000;
  --z-header: 9000;
  --z-floating: 8000;
}

* {
  box-sizing: border-box;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

/* Shared notice used by protection.js for blocked copy/right-click shortcuts. */
.protection-notice {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(112px, calc(24px + env(safe-area-inset-bottom)));
  z-index: 20000;
  width: max-content;
  max-width: calc(100vw - 44px);
  padding: 12px 15px;
  border: 1px solid rgba(42, 39, 35, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(244, 239, 231, 0.92)),
    var(--porcelain);
  color: var(--graphite);
  box-shadow: 0 18px 46px rgba(42, 39, 35, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.24s ease, transform 0.24s ease;
  white-space: normal;
}

.protection-notice.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  font-family: Manrope, system-ui, sans-serif;
  background:
    radial-gradient(circle at 14% 6%, rgba(240, 24, 34, 0.13), transparent 26rem),
    radial-gradient(circle at 88% 18%, rgba(200, 170, 114, 0.22), transparent 28rem),
    linear-gradient(135deg, var(--porcelain), var(--ivory) 42%, #efe5d8);
  overflow-x: hidden;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background-image: url("./assets/favicon-b.png");
  background-size: 112px 112px;
  background-position: -22px -18px;
  background-repeat: repeat;
  opacity: 0.022;
  filter: grayscale(1) sepia(0.25);
  transform: translateZ(0);
}

body.menu-open {
  overflow: hidden;
}

body.is-loading .site-header,
body.is-loading .to-top {
  opacity: 0;
  pointer-events: none;
}

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

@media (pointer: fine) {
  body {
    cursor: crosshair;
  }

  a,
  button,
  .magnet,
  .elevated,
  input,
  textarea {
    cursor: pointer;
  }

  input,
  textarea {
    cursor: text;
  }
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--red);
  color: white;
}

body > *:not(.loader):not(.site-header):not(.to-top) {
  position: relative;
  z-index: 1;
}

main,
footer {
  position: relative;
  z-index: 1;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 26px;
  background:
    linear-gradient(rgba(42, 39, 35, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 39, 35, 0.035) 1px, transparent 1px),
    var(--ivory);
  background-size: 52px 52px;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.precision-loader {
  position: relative;
  width: min(78vw, 480px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.precision-grid {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(42, 39, 35, 0.12);
  border-radius: 32px;
  background: rgba(255, 250, 242, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.precision-grid::before,
.precision-grid::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(42, 39, 35, 0.11);
  border-radius: 50%;
  transform: scale(0.75);
  opacity: 0;
  animation: constructCircle 2.6s ease-in-out infinite;
}

.precision-grid::after {
  inset: 24%;
  animation-delay: 0.28s;
}

.line {
  position: absolute;
  display: block;
  background: rgba(42, 39, 35, 0.2);
  transform-origin: center;
  opacity: 0;
}

.line-h {
  left: 8%;
  right: 8%;
  height: 1px;
  animation: drawHorizontal 2.6s ease-in-out infinite;
}

.line-v {
  top: 8%;
  bottom: 8%;
  width: 1px;
  animation: drawVertical 2.6s ease-in-out infinite;
}

.line-h-a { top: 34%; }
.line-h-b { bottom: 34%; animation-delay: 0.16s; }
.line-v-a { left: 38%; animation-delay: 0.3s; }
.line-v-b { right: 38%; animation-delay: 0.46s; }

.measure {
  position: absolute;
  display: block;
  border: 1px solid rgba(240, 24, 34, 0.62);
  opacity: 0;
  animation: measureLock 2.6s ease-in-out infinite;
}

.measure-a {
  left: 21%;
  top: 18%;
  width: 58%;
  height: 16%;
  border-bottom: 0;
}

.measure-b {
  right: 18%;
  bottom: 18%;
  width: 22%;
  height: 48%;
  border-left: 0;
  animation-delay: 0.28s;
}

.precision-mark {
  position: relative;
  z-index: 1;
  width: 48%;
  filter: drop-shadow(0 18px 36px rgba(240, 24, 34, 0.18));
  clip-path: inset(0 100% 0 0);
  animation: revealMark 2.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.precision-mark img {
  width: 100%;
}

.precision-copy {
  position: absolute;
  left: 50%;
  bottom: 9%;
  z-index: 2;
  width: max-content;
  text-align: center;
  transform: translateX(-50%);
}

.precision-copy p {
  margin: 0 0 7px;
  color: var(--graphite);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loader-words {
  position: relative;
  width: 190px;
  height: 18px;
  margin: 0 auto;
  overflow: hidden;
}

.loader-words span {
  position: absolute;
  inset: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(100%);
  animation: loaderWords 4.8s ease-in-out infinite;
}

.loader-words span:nth-child(2) { animation-delay: 1.2s; }
.loader-words span:nth-child(3) { animation-delay: 2.4s; }
.loader-words span:nth-child(4) { animation-delay: 3.6s; }

.precision-track {
  width: min(72vw, 430px);
  height: 2px;
  overflow: hidden;
  background: rgba(42, 39, 35, 0.12);
}

.precision-track span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--red), var(--graphite));
  animation: loaderBar 1.35s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: var(--z-floating);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 250, 242, 0.95), rgba(231, 220, 205, 0.74));
  color: var(--red-deep);
  box-shadow: 0 18px 42px rgba(50, 34, 20, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.92);
  transition: opacity 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.to-top::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translateY(4px) rotate(45deg);
}

.to-top span {
  position: absolute;
  inset: auto 0 10px;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.to-top:hover {
  box-shadow: 0 26px 58px rgba(50, 34, 20, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-4px) scale(1.03);
}

.site-header {
  position: fixed !important;
  top: 18px;
  left: 50%;
  z-index: var(--z-header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  width: min(calc(100% - 40px), 1180px);
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(28, 26, 23, 0.88);
  box-shadow: 0 20px 50px rgba(34, 22, 14, 0.18);
  backdrop-filter: blur(18px);
  isolation: isolate;
  transform: translateX(-50%);
  will-change: width, top, border-radius, background, box-shadow;
  transition:
    width 0.42s cubic-bezier(0.65, 0, 0.35, 1),
    top 0.42s cubic-bezier(0.65, 0, 0.35, 1),
    padding 0.42s cubic-bezier(0.65, 0, 0.35, 1),
    border-radius 0.42s cubic-bezier(0.65, 0, 0.35, 1),
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.site-header.is-scrolled {
  top: 0;
  width: 100%;
  max-width: none;
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
  background: #1f1d1a;
  box-shadow: 0 26px 70px rgba(34, 22, 14, 0.26);
}

.scroll-progress {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.12);
}

.scroll-progress span {
  display: block;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--champagne));
}

.brand img {
  width: 180px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav a,
.header-cta {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  color: white;
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--porcelain);
  color: var(--graphite);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: white;
  border-radius: 999px;
  transition: transform 0.24s ease, opacity 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(184, 15, 24, 0.26);
}

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

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

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  align-items: center;
  gap: 54px;
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  padding: 142px 0 72px;
}

.hero > *,
.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  font-size: 0.96rem;
  line-height: 1.56;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: min(100%, 920px);
  margin-bottom: 26px;
  font-size: clamp(3.1rem, 6.1vw, 6rem);
  line-height: 0.98;
}

h1 em,
h2 em {
  font-style: italic;
  font-weight: 500;
}

.word-pill {
  display: inline-block;
  padding: 0 0.13em 0.08em;
  border-radius: 0.24em;
  background: linear-gradient(115deg, rgba(240, 24, 34, 0.13), rgba(200, 170, 114, 0.22));
  box-shadow: inset 0 -0.1em 0 rgba(240, 24, 34, 0.16);
}

.phrase-lock {
  display: inline-block;
  white-space: nowrap;
}

.punct {
  display: inline-block;
  margin-left: 0.02em;
}

.hero-second {
  display: block;
}

.soft-highlight,
.title-highlight {
  display: inline;
  padding: 0.02em 0.16em 0.1em;
  border-radius: 0.28em;
  background: linear-gradient(115deg, rgba(240, 24, 34, 0.12), rgba(200, 170, 114, 0.2));
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-lead {
  max-width: 620px;
  color: rgba(42, 39, 35, 0.84);
  font-size: clamp(0.98rem, 1.12vw, 1.06rem);
  line-height: 1.58;
  font-weight: 500;
  overflow-wrap: break-word;
}

.hero-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 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 18px 34px rgba(240, 24, 34, 0.24);
}

.btn-secondary {
  border-color: rgba(42, 39, 35, 0.18);
  background: rgba(255, 250, 242, 0.72);
  color: var(--graphite);
}

.brand-orbit {
  perspective: 1200px;
}

.orbit-shell {
  position: relative;
  min-height: 620px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 45%, rgba(240, 24, 34, 0.14), transparent 16rem),
    linear-gradient(145deg, rgba(255, 250, 242, 0.78), rgba(231, 220, 205, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform-style: preserve-3d;
  overflow: hidden;
}

.orbit-shell::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 34px;
  border: 1px solid rgba(42, 39, 35, 0.08);
  transform: translateZ(26px);
}

.orbit-halo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 15, 24, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(66deg);
  animation: orbitSpin 12s linear infinite;
}

.orbit-halo-b {
  width: 55%;
  border-color: rgba(200, 170, 114, 0.45);
  animation-duration: 8s;
  animation-direction: reverse;
}

.beaumont-b {
  position: absolute;
  inset: 13%;
  display: grid;
  place-items: center;
  border-radius: 36px;
  transform: translateZ(72px);
}

.beaumont-b img {
  width: min(80%, 360px);
  filter: drop-shadow(0 26px 36px rgba(240, 24, 34, 0.24));
  animation: softBreathe 4.8s ease-in-out infinite;
}

.authority-core {
  position: absolute;
  left: 51%;
  top: 56%;
  width: 19%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 250, 242, 0.78);
  background: rgba(231, 220, 205, 0.18);
  box-shadow:
    inset -12px -14px 24px rgba(27, 26, 24, 0.28),
    inset 10px 8px 18px rgba(255, 250, 242, 0.34),
    0 0 28px rgba(200, 170, 114, 0.38);
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.authority-core::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 250, 242, 0.42), transparent 28%),
    radial-gradient(circle at 75% 72%, rgba(27, 26, 24, 0.26), transparent 58%);
  z-index: 2;
  mix-blend-mode: screen;
}

.authority-core::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, transparent 0 11px, rgba(255, 250, 242, 0.16) 12px, transparent 13px),
    repeating-linear-gradient(90deg, transparent 0 13px, rgba(255, 250, 242, 0.1) 14px, transparent 15px);
  mask-image: radial-gradient(circle, black 0 67%, transparent 68%);
  z-index: 3;
  opacity: 0.38;
  transform: rotate(-18deg);
}

.earth-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.authority-core span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132%;
  height: 1px;
  z-index: 4;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 242, 0.78), transparent);
  transform-origin: center;
  animation: coreOrbit 5.4s linear infinite;
}

.authority-core span:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); }
.authority-core span:nth-child(2) { transform: translate(-50%, -50%) rotate(60deg); animation-delay: -1.3s; }
.authority-core span:nth-child(3) { transform: translate(-50%, -50%) rotate(120deg); animation-delay: -2.6s; }

.orbit-label {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.75);
  color: var(--graphite);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(50, 34, 20, 0.12);
  animation: labelFloat 4s ease-in-out infinite;
}

.label-a { left: 38px; top: 82px; }
.label-b { right: 44px; top: 150px; animation-delay: -1s; }
.label-c { left: 54px; bottom: 142px; animation-delay: -2s; }
.label-d { right: 48px; bottom: 84px; animation-delay: -3s; }

.soft-panel,
.human-proof,
.authority,
.services,
.work,
.experience-feature,
.authority-image,
.brands-proof,
.media-proof,
.memory,
.contact {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
}

.intro {
  position: relative;
  display: block;
  padding: clamp(36px, 5.2vw, 72px) clamp(30px, 6vw, 86px);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 15%, rgba(240, 24, 34, 0.08), transparent 18rem),
    radial-gradient(circle at 84% 74%, rgba(200, 170, 114, 0.1), transparent 18rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.88), rgba(239, 230, 216, 0.58)),
    var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 70px rgba(50, 34, 20, 0.12);
}

.intro::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 25px;
  border: 1px solid rgba(200, 170, 114, 0.16);
  pointer-events: none;
}

.intro::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14rem;
  width: 42rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 24, 34, 0.08), transparent 68%);
  filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.intro p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 1220px;
  color: rgba(27, 26, 24, 0.95);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 4.15vw, 5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  text-align: center;
  text-wrap: balance;
}

.human-proof {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 42px;
  padding: 110px 0 0;
}

.human-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.human-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.2vw, 4.55rem);
  line-height: 1.02;
}

.human-copy p:last-child {
  color: var(--muted);
  line-height: 1.58;
}

.human-gallery {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 24px;
  align-items: end;
}

.human-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
}

.human-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 34px;
  transform: scale(1.08);
}

.human-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(27, 26, 24, 0.58);
  color: var(--porcelain);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.human-card-lift {
  transform: translateY(74px);
}

.authority,
.services,
.work,
.experience-feature,
.authority-image,
.brands-proof,
.media-proof,
.memory,
.contact {
  padding: 110px 0 0;
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(34px, 4vw, 52px);
}

.section-heading-center {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.memory h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 3.9vw, 4.05rem);
  line-height: 1.06;
}

.authority-stage,
.service-grid,
.work-grid {
  display: grid;
  gap: 22px;
}

.authority-stage {
  grid-template-columns: repeat(4, 1fr);
}

.elevated {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.elevated:hover {
  box-shadow: 0 34px 90px rgba(50, 34, 20, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.authority-card {
  min-height: 300px;
  padding: 26px;
}

.authority-card span {
  color: var(--red);
  font-weight: 900;
}

.authority-card h3,
.service-card h3,
.work-card h3 {
  margin: 54px 0 14px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.authority-card p,
.service-card p,
.work-card p,
.memory p {
  color: var(--muted);
  line-height: 1.52;
}

.service-marquee {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  overflow: hidden;
  color: rgba(184, 15, 24, 0.16);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5.6vw, 5.7rem);
  font-weight: 700;
  white-space: nowrap;
}

.service-marquee div {
  display: flex;
  gap: 26px;
  animation: marquee 16s linear infinite;
}

.service-marquee span {
  flex: 0 0 auto;
}

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

.service-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 24px 22px 24px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--champagne));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
  transition: color 0.2s ease;
}

.service-card:hover h3 {
  color: var(--red-deep);
}

.seo-depth {
  display: grid;
  grid-template-columns: minmax(290px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
  padding: 26px;
  margin-top: 40px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 10%, rgba(240, 24, 34, 0.08), transparent 14rem),
    radial-gradient(circle at 88% 18%, rgba(200, 170, 114, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(231, 220, 205, 0.5));
}

.seo-depth-copy {
  display: grid;
  align-content: end;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(27, 26, 24, 0.96), rgba(42, 39, 35, 0.94));
  color: var(--porcelain);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 42px rgba(50, 34, 20, 0.14);
}

.seo-depth-copy h2 {
  margin-bottom: 0;
  color: var(--porcelain);
  font-size: clamp(2.05rem, 3.15vw, 3.35rem);
  line-height: 1.07;
}

.seo-depth-copy p:not(.eyebrow) {
  max-width: 46ch;
  margin: 22px 0 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.96rem;
  line-height: 1.56;
}

.authority-map {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.map-card {
  position: relative;
  display: grid;
  grid-column: span 2;
  align-content: space-between;
  min-height: 152px;
  padding: 20px;
  border: 1px solid rgba(42, 39, 35, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.98), rgba(244, 239, 231, 0.76));
  box-shadow: 0 14px 30px rgba(50, 34, 20, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.map-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(50, 34, 20, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.map-card::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(240, 24, 34, 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(240, 24, 34, 0.18) 0 3px, transparent 4px),
    rgba(255, 250, 242, 0.72);
}

.map-card span {
  color: var(--red-deep);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.map-card strong {
  max-width: 13.5em;
  margin-top: 34px;
  color: var(--charcoal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.28rem, 1.65vw, 1.68rem);
  line-height: 1.14;
  text-wrap: balance;
}

.map-card.primary {
  background:
    radial-gradient(circle at 88% 14%, rgba(240, 24, 34, 0.16), transparent 10rem),
    rgba(255, 250, 242, 0.98);
}

.map-card.wide {
  grid-column: span 4;
  min-height: 132px;
}

.map-card.region {
  grid-column: span 2;
  background:
    radial-gradient(circle at 90% 20%, rgba(200, 170, 114, 0.28), transparent 10rem),
    rgba(255, 250, 242, 0.94);
}

.map-card.wide strong {
  max-width: 27em;
}

.work-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.work-card {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto 1fr auto;
  min-height: 286px;
  padding: 26px;
  overflow: hidden;
}

.work-card.large {
  grid-column: span 2;
  min-height: 430px;
  padding: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 24, 34, 0.16), transparent 16rem),
    var(--glass);
}

.work-card.large > img {
  width: 100%;
  height: 218px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.work-card-body {
  padding: 24px 26px 26px;
}

.work-card span {
  color: var(--red-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 2.45vw, 2.65rem);
  font-weight: 700;
  line-height: 1.08;
}

.work-card p {
  margin: 14px 0 0;
  font-size: 0.9rem;
}

.work-card strong {
  display: inline-flex;
  align-self: end;
  width: fit-content;
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--graphite);
  color: white;
}

.work-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.case-compact {
  min-height: 430px;
}

.case-wide {
  grid-column: span 4;
  min-height: 0;
  grid-template-columns: minmax(0, 0.7fr) minmax(220px, 0.6fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 24px;
}

.case-wide span {
  grid-column: 1;
  grid-row: 1;
}

.case-wide h3 {
  grid-column: 1;
  grid-row: 2;
}

.case-wide p {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.case-wide strong {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.case-wide h3,
.case-wide p,
.case-wide strong {
  margin-top: 0;
}

.work-stats strong {
  margin-top: 0;
  background: rgba(27, 26, 24, 0.9);
}

.experience-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 32px;
}

.feature-image {
  overflow: hidden;
  border-radius: 34px;
}

.feature-image img {
  width: 100%;
  height: min(58vw, 560px);
  object-fit: cover;
  border-radius: inherit;
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

.feature-image:hover img {
  transform: scale(1.1);
}

.feature-copy {
  padding: 32px;
}

.feature-copy h2,
.authority-image h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.1vw, 4.4rem);
  line-height: 1.03;
}

.feature-copy p,
.authority-image p {
  color: var(--muted);
  line-height: 1.58;
}

.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-points span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.8);
  color: var(--graphite);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(50, 34, 20, 0.08);
}

.authority-image {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 42px;
  align-items: center;
  padding: 30px;
  margin-top: 110px;
}

.authority-image img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(50, 34, 20, 0.16);
}

.brand-roster {
  display: grid;
  padding: clamp(14px, 2.4vw, 24px);
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 0%, rgba(240, 24, 34, 0.1), transparent 22rem),
    radial-gradient(circle at 88% 18%, rgba(200, 170, 114, 0.18), transparent 24rem),
    linear-gradient(120deg, rgba(255, 250, 242, 0.96), rgba(231, 220, 205, 0.5)),
    var(--glass);
}

.online-logo-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 2.8vw, 30px);
  border: 1px solid rgba(42, 39, 35, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(rgba(42, 39, 35, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 39, 35, 0.035) 1px, transparent 1px),
    rgba(255, 250, 242, 0.72);
  background-size: 46px 46px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 24px 58px rgba(50, 34, 20, 0.12);
  overflow: hidden;
}

.online-logo-wall article {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 0;
  min-height: 98px;
  padding: 16px 14px;
  border: 1px solid rgba(42, 39, 35, 0.08);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 12px 26px rgba(50, 34, 20, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.online-logo-wall article:hover {
  transform: translateY(-6px);
  background: #fffdf8;
  border-color: rgba(200, 170, 114, 0.3);
  box-shadow: 0 24px 44px rgba(50, 34, 20, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.online-logo-wall img {
  width: 100%;
  height: 62px;
  object-fit: contain;
  filter: saturate(0.94) contrast(1.04);
}

.online-logo-wall span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
}

.media-lanes {
  display: grid;
  gap: 22px;
  padding: 30px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 10%, rgba(240, 24, 34, 0.09), transparent 18rem),
    radial-gradient(circle at 78% 80%, rgba(200, 170, 114, 0.14), transparent 20rem),
    var(--glass);
}

.media-lane {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.media-lane img {
  width: 156px;
  height: 78px;
  object-fit: contain;
  padding: 15px 18px;
  border: 1px solid rgba(42, 39, 35, 0.1);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.8);
  box-shadow: 0 12px 28px rgba(50, 34, 20, 0.09);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.media-lane img:hover {
  transform: translateY(-8px) rotateX(7deg) rotateY(-5deg) scale(1.04);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 24px 48px rgba(50, 34, 20, 0.17);
}

.lane-a {
  animation: mediaDriftA 30s linear infinite alternate;
}

.lane-b {
  margin-left: -90px;
  animation: mediaDriftB 34s linear infinite alternate;
}

.lane-c {
  margin-left: -24px;
  animation: mediaDriftC 28s linear infinite alternate;
}

.memory {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  padding: 50px;
  margin-top: 110px;
  border-radius: 38px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.9), rgba(231, 220, 205, 0.62)),
    var(--glass);
}

.memory-mark {
  display: grid;
  place-items: center;
  min-height: 240px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(240, 24, 34, 0.13), rgba(255, 250, 242, 0.7));
  box-shadow: inset 12px 12px 28px rgba(50, 34, 20, 0.07), inset -12px -12px 28px rgba(255, 255, 255, 0.8);
}

.memory-mark img {
  width: 150px;
  animation: softBreathe 4.8s ease-in-out infinite;
}

.memory-rhythm {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.memory-rhythm span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(27, 26, 24, 0.9);
  color: var(--porcelain);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(50, 34, 20, 0.12);
}

.contact {
  padding-bottom: 94px;
}

.contact-suite {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 34px;
  padding: 34px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 18% 8%, rgba(240, 24, 34, 0.12), transparent 17rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(231, 220, 205, 0.58));
}

.contact-copy {
  padding: 26px;
  border-radius: 30px;
  background: rgba(27, 26, 24, 0.94);
  color: var(--porcelain);
}

.contact-copy h2 {
  color: var(--porcelain);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.68);
  line-height: 1.58;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-details a {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.08);
  color: var(--porcelain);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 900;
  overflow-wrap: anywhere;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-details a:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 58px rgba(50, 34, 20, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.contact-details span {
  color: var(--champagne);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.form-guard {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(42, 39, 35, 0.12);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.84);
  color: var(--graphite);
  padding: 16px;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(240, 24, 34, 0.52);
  box-shadow: 0 0 0 4px rgba(240, 24, 34, 0.1);
}

.contact-form button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

.form-status {
  display: none;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(42, 39, 35, 0.1);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.86);
  color: rgba(42, 39, 35, 0.76);
  line-height: 1.5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.form-status.is-visible {
  display: grid;
}

.form-status strong {
  color: var(--graphite);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.05;
}

.form-status span {
  color: rgba(42, 39, 35, 0.68);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.form-status a {
  width: fit-content;
  color: var(--red-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-status.is-success {
  border-color: rgba(42, 128, 74, 0.22);
  background: linear-gradient(135deg, rgba(246, 255, 249, 0.92), rgba(255, 250, 242, 0.84));
}

.form-status.is-error {
  border-color: rgba(184, 15, 24, 0.24);
  background: linear-gradient(135deg, rgba(255, 238, 236, 0.92), rgba(255, 250, 242, 0.84));
}

/* Footer hierarchy is intentionally quieter than the main conversion sections. */
.footer {
  padding: 0 max(22px, calc((100vw - var(--max)) / 2)) 0;
  background: linear-gradient(180deg, transparent 0, rgba(27, 26, 24, 0.03) 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(140px, 0.48fr) minmax(260px, 0.85fr);
  column-gap: clamp(38px, 7vw, 118px);
  row-gap: 30px;
  padding: clamp(36px, 4vw, 52px) clamp(34px, 4vw, 48px) 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 38px 38px 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 10% 18%, rgba(240, 24, 34, 0.11), transparent 23rem),
    linear-gradient(135deg, rgba(34, 30, 26, 0.98), rgba(25, 24, 22, 0.985));
  background-size: 56px 56px, 56px 56px, auto, auto;
  color: rgba(255, 250, 242, 0.72);
  box-shadow: 0 -20px 70px rgba(50, 34, 20, 0.08);
}

.footer img {
  width: clamp(168px, 14vw, 206px);
}

.footer p {
  margin: 22px 0 0;
  max-width: 390px;
  color: rgba(255, 250, 242, 0.62);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column span {
  margin-bottom: 14px;
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer a {
  width: fit-content;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer a:hover {
  color: rgba(255, 250, 242, 1);
  transform: translateX(2px);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 242, 0.1);
}

.footer-bottom span {
  color: rgba(255, 250, 242, 0.46);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.45;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.footer-bottom nav a {
  color: rgba(255, 250, 242, 0.5);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.legal-main {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  padding: 150px 0 90px;
}

.legal-panel {
  display: grid;
  grid-template-columns: 0.46fr 1fr;
  gap: 30px;
  padding: 30px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 8%, rgba(240, 24, 34, 0.11), transparent 16rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.94), rgba(231, 220, 205, 0.58));
}

.legal-aside {
  position: sticky;
  top: 122px;
  align-self: start;
  padding: 30px;
  border-radius: 30px;
  background: rgba(27, 26, 24, 0.94);
  color: var(--porcelain);
  overflow: hidden;
}

.legal-aside::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  height: 120px;
  border: 1px solid rgba(200, 170, 114, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.legal-aside img {
  width: 180px;
  margin-bottom: 42px;
}

.legal-aside p {
  color: rgba(255, 250, 242, 0.68);
}

.legal-aside h1 {
  color: var(--porcelain);
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  line-height: 1.05;
  overflow-wrap: break-word;
}

.legal-content {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 250, 242, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.legal-panel h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5.7vw, 4.8rem);
  line-height: 1.02;
}

.legal-panel h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.55rem, 2.65vw, 2.35rem);
  line-height: 1.08;
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 26px 0;
}

.legal-note-grid span {
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(42, 39, 35, 0.08);
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.84);
  color: var(--charcoal);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(50, 34, 20, 0.08);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.hero [data-reveal] {
  opacity: 1;
  transform: none;
}

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

@keyframes loaderBar {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

@keyframes loaderWords {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  10%, 22% {
    opacity: 1;
    transform: translateY(0);
  }
  34%, 100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}

@keyframes constructCircle {
  12%, 72% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes drawHorizontal {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  18%, 78% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes drawVertical {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  18%, 78% {
    opacity: 1;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform: scaleY(1);
  }
}

@keyframes measureLock {
  18%, 70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes revealMark {
  0% {
    clip-path: inset(0 100% 0 0);
    transform: translateY(6px);
  }
  38%, 78% {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes orbitSpin {
  to { transform: translate(-50%, -50%) rotateX(66deg) rotateZ(360deg); }
}

@keyframes softBreathe {
  50% { transform: translateY(-10px) scale(1.025); }
}

@keyframes coreOrbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes labelFloat {
  50% { transform: translateY(-10px); }
}

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

@keyframes mediaDriftA {
  to { transform: translateX(-180px); }
}

@keyframes mediaDriftB {
  to { transform: translateX(160px); }
}

@keyframes mediaDriftC {
  to { transform: translateX(-130px); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: calc(var(--z-header) + 1);
    display: grid;
    width: min(292px, calc(100vw - 40px));
    padding: 10px;
    border: 1px solid rgba(255, 250, 242, 0.1);
    border-radius: 24px;
    background:
      linear-gradient(rgba(255, 250, 242, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 250, 242, 0.035) 1px, transparent 1px),
      linear-gradient(145deg, rgba(32, 29, 25, 0.98), rgba(24, 23, 21, 0.98));
    background-size: 36px 36px, 36px 36px, auto;
    box-shadow: 0 26px 70px rgba(34, 22, 14, 0.26);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.96);
    transform-origin: top right;
    transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    color: rgba(255, 250, 242, 0.82);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  }

  .nav a + a {
    margin-top: 4px;
  }

  .nav a:hover {
    background: rgba(255, 250, 242, 0.08);
    color: white;
    transform: translateX(2px);
  }

  .hero,
  .intro,
  .memory,
  .human-proof,
  .experience-feature,
  .authority-image {
    grid-template-columns: 1fr;
  }

  .brand-roster,
  .contact-suite,
  .legal-panel,
  .footer-inner,
  .seo-depth,
  .authority-map {
    grid-template-columns: 1fr;
  }

  .authority-map {
    grid-auto-rows: auto;
  }

  .map-card,
  .map-card.wide,
  .map-card.region {
    grid-column: auto;
  }

  .human-copy {
    position: static;
  }

  .human-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .human-card-lift {
    transform: none;
  }

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

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

  .work-card.large,
  .case-compact {
    min-height: auto;
  }

  .case-wide {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .case-wide span,
  .case-wide h3,
  .case-wide p,
  .case-wide strong {
    grid-column: auto;
    grid-row: auto;
  }

  .work-card.large > img {
    height: 220px;
  }

}

@media (max-width: 640px) {
  body::before {
    background-size: 96px 96px;
    opacity: 0.018;
  }

  .to-top {
    right: 14px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 64px;
    padding: 10px 10px 10px 14px;
    border-radius: 18px;
  }

  .site-header.is-scrolled {
    top: 0;
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
    border-radius: 0;
  }

  .nav {
    right: 14px;
    width: min(286px, calc(100vw - 28px));
    border-radius: 22px;
  }

  .site-header.is-scrolled .nav {
    top: calc(100% + 8px);
    right: 14px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .brand img,
  .footer img {
    width: 150px;
  }

  .hero,
  .soft-panel,
  .human-proof,
  .authority,
  .services,
  .work,
  .experience-feature,
  .authority-image,
  .brands-proof,
  .media-proof,
  .memory,
  .contact {
    width: calc(100% - 28px);
  }

  .hero {
    display: block;
    width: calc(100% - 28px);
    margin-right: auto;
    margin-left: auto;
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(2.48rem, 10.1vw, 3.55rem);
    line-height: 0.98;
    overflow-wrap: normal;
  }

  .hero-second {
    display: block;
  }

  .hero-copy,
  .hero-lead {
    width: 100%;
    max-width: 100%;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .brand-orbit {
    margin-top: 28px;
  }

  .hero-actions {
    width: min(100%, 316px);
    padding-right: 0;
  }

  .btn {
    width: 100%;
    max-width: 100%;
  }

  .orbit-shell {
    min-height: 430px;
    border-radius: 30px;
  }

  .orbit-label {
    font-size: 0.68rem;
  }

  .label-a { left: 18px; top: 56px; }
  .label-b { right: 18px; top: 94px; }
  .label-c { left: 18px; bottom: 94px; }
  .label-d { right: 18px; bottom: 56px; }

  .intro,
  .memory {
    padding: 24px;
  }

  .intro {
    border-radius: 24px;
  }

  .intro::before {
    inset: 12px;
    border-radius: 18px;
  }

  .intro p {
    font-size: clamp(2rem, 8.2vw, 2.9rem);
    line-height: 1.05;
  }

  .section-heading h2,
  .memory h2,
  .contact h2,
  .human-copy h2,
  .feature-copy h2,
  .authority-image h2,
  .seo-depth-copy h2 {
    font-size: clamp(1.92rem, 8.2vw, 2.86rem);
    line-height: 1.05;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .authority,
  .services,
  .work,
  .human-proof,
  .experience-feature,
  .authority-image,
  .brands-proof,
  .media-proof,
  .contact {
    padding-top: 78px;
  }

  .authority-stage,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .authority-card {
    min-height: 240px;
  }

  .contact-form {
    padding: 20px;
  }

  .feature-copy,
  .authority-image {
    padding: 22px;
  }

  .human-gallery {
    grid-template-columns: 1fr;
  }

  .human-card img {
    height: 76vw;
    min-height: 300px;
  }

  .feature-image img,
  .authority-image img {
    min-height: 300px;
    height: 76vw;
  }

  .brand-roster {
    padding: 18px;
    border-radius: 28px;
  }

  .online-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border-radius: 22px;
  }

  .online-logo-wall article {
    min-height: 82px;
    padding: 12px 10px;
    border-radius: 18px;
  }

  .online-logo-wall img {
    height: 48px;
  }

  .map-card.wide {
    grid-column: auto;
  }

  .media-lanes {
    padding: 14px;
    gap: 12px;
  }

  .media-lane {
    gap: 12px;
  }

  .media-lane img {
    width: 124px;
    height: 64px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .footer {
    padding: 0 14px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 28px 24px 24px;
    border-radius: 28px 28px 0 0;
  }

  .footer-bottom {
    margin-top: 12px;
    gap: 12px;
  }

  .footer-bottom {
    display: grid;
  }

  .legal-panel {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .legal-aside {
    position: relative;
    top: auto;
  }

  .legal-note-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .site-header {
    width: calc(100% - 18px);
    padding-left: 12px;
  }

  .brand img,
  .footer img {
    width: 136px;
  }

  .hero,
  .soft-panel,
  .human-proof,
  .authority,
  .services,
  .experience-feature,
  .authority-image,
  .brands-proof,
  .media-proof,
  .memory,
  .contact {
    width: calc(100% - 22px);
  }

  h1 {
    font-size: clamp(2.36rem, 11.2vw, 3rem);
  }

  .word-pill {
    padding-right: 0.11em;
    padding-left: 0.11em;
  }

  .eyebrow {
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .hero-actions {
    width: 100%;
  }

  .section-heading h2,
  .memory h2,
  .contact h2,
  .human-copy h2,
  .feature-copy h2,
  .authority-image h2,
  .seo-depth-copy h2 {
    font-size: clamp(1.78rem, 8.7vw, 2.48rem);
  }

  .online-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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