:root {
  --red: #ed1c24;
  --red-dark: #c80912;
  --ink: #111111;
  --muted: #6c6c6c;
  --paper: #ffffff;
  --line: #dedede;
  --shell: min(100% - 96px, 1440px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
}

button {
  color: inherit;
  font: inherit;
}

body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  content: "";
  opacity: 0.045;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

::selection {
  color: var(--paper);
  background: var(--red);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  transition: height 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  height: 74px;
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-logo {
  position: relative;
  overflow: hidden;
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  outline: 1px solid rgba(17, 17, 17, 0.08);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.45);
  transition: transform 0.45s cubic-bezier(.2,.75,.2,1);
}

.brand:hover .brand-logo img {
  transform: scale(1.55);
}

.brand-label {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}

.brand-label small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-nav a {
  position: relative;
  padding: 10px 0;
}

.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.language-switch {
  display: inline-flex;
  gap: 8px;
}

.language-switch .active {
  color: var(--red);
}

.language-switch .disabled {
  color: #aaa;
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.language-switch a {
  color: currentColor;
  opacity: 0.55;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.language-switch a:hover,
.language-switch a:focus-visible {
  color: var(--red);
  opacity: 1;
}

.social-links {
  display: flex;
}

.social-links--header {
  gap: 6px;
}

.social-links--header .social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.3s cubic-bezier(.2,.75,.2,1);
}

.social-links--header .social-link:hover,
.social-links--header .social-link:focus-visible {
  border-color: var(--red);
  color: var(--paper);
  background: var(--red);
  transform: translateY(-2px);
}

.social-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-link-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.social-link-icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress-bar {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--red);
  box-shadow: 0 0 12px rgba(237, 28, 36, 0.45);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.hero {
  position: relative;
  min-height: 940px;
  padding: 130px 48px 58px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: var(--paper);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(to right, transparent calc(25% - 0.5px), #ddd 25%, transparent calc(25% + 0.5px)),
    linear-gradient(to right, transparent calc(50% - 0.5px), #ddd 50%, transparent calc(50% + 0.5px)),
    linear-gradient(to right, transparent calc(75% - 0.5px), #ddd 75%, transparent calc(75% + 0.5px));
  pointer-events: none;
}

.hero-kicker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.45);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(237, 28, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(237, 28, 36, 0);
  }
}

.hero-title-wrap {
  position: relative;
  z-index: 2;
  align-self: center;
}

.hero-title {
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  font-size: clamp(124px, 14.2vw, 230px);
  font-weight: 950;
  line-height: 0.69;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.hero-title span {
  width: max-content;
}

.hero-title span:nth-child(2) {
  margin-left: 14.5vw;
}

.hero-title .red-word {
  margin-left: 31.5vw;
  color: var(--red);
}

.hero-symbol {
  --mx: 0px;
  --my: 0px;
  position: absolute;
  top: 0;
  right: 11%;
  width: 260px;
  height: 260px;
  pointer-events: none;
  transform: translate(var(--mx), var(--my));
  transition: transform 0.2s linear;
}

.hero-logo-frame {
  position: absolute;
  inset: 42px;
  z-index: 3;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 18px 60px rgba(237, 28, 36, 0.18);
}

.hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.28);
  transition: transform 0.8s cubic-bezier(.2,.75,.2,1);
}

.hero-symbol:hover .hero-logo-frame img {
  transform: scale(1.36);
}

.signal {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(237, 28, 36, 0.2);
  border-radius: 50%;
}

.signal-one {
  inset: 25px;
}

.signal-two {
  inset: 6px;
  animation: signal 3s ease-out infinite;
}

.signal-three {
  inset: -18px;
  animation: signal 3s 1.2s ease-out infinite;
}

@keyframes signal {
  0% { opacity: 0; transform: scale(0.72); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.04); }
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1fr auto;
  align-items: end;
  gap: 56px;
}

.hero-lead {
  max-width: 430px;
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-primary {
  color: var(--paper);
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-text {
  padding-right: 0;
  padding-left: 0;
  border-bottom-color: var(--ink);
}

.button-outline {
  border-color: var(--ink);
}

.button-outline:hover {
  color: var(--paper);
  background: var(--ink);
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: #ccc;
}

.scroll-line::after {
  display: block;
  width: 1px;
  height: 50%;
  background: var(--red);
  content: "";
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  from { transform: translateY(-100%); }
  to { transform: translateY(210%); }
}

.ticker {
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: 21px 0 18px;
  color: var(--paper);
  background: var(--red);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  will-change: transform;
  animation: ticker 22s linear infinite;
}

.ticker-group {
  min-width: 100vw;
  padding-right: 34px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
}

.ticker-track i {
  font-size: 6px;
  font-style: normal;
}

@keyframes ticker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.manifesto {
  position: relative;
  min-height: 770px;
  padding: 150px 0 125px;
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 40px;
  color: var(--red);
}

.section-marker {
  position: relative;
  z-index: 2;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-marker span {
  color: var(--red);
  font-size: 104px;
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.085em;
}

.section-marker small {
  margin-top: 18px;
  padding-left: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-marker-row {
  margin-bottom: 58px;
  flex-direction: row;
  align-items: flex-end;
  gap: 22px;
}

.section-marker-row small {
  margin-bottom: 2px;
}

.section-marker-inverse span {
  color: var(--red);
}

.section-marker-inverse small {
  color: rgba(255, 255, 255, 0.58);
}

.background-word {
  --word-shift: 0px;
  position: absolute;
  z-index: -1;
  top: 46%;
  left: 50%;
  color: transparent;
  font-size: clamp(120px, 13vw, 245px);
  font-weight: 950;
  line-height: 0.75;
  letter-spacing: -0.075em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(17, 17, 17, 0.065);
  transform: translate3d(calc(-50% + var(--word-shift)), -50%, 0);
  pointer-events: none;
  will-change: transform;
}

.manifesto-copy,
.about-intro > div:last-child {
  position: relative;
  z-index: 1;
}

.display-copy {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(68px, 6.2vw, 102px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.display-copy span {
  color: var(--red);
}

.manifesto-foot {
  margin-top: 80px;
  display: grid;
  grid-template-columns: minmax(400px, 550px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 80px;
}

.manifesto-foot p {
  margin: 0;
  color: #333;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-pulse {
  position: relative;
  min-height: 770px;
  padding: 120px 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  text-align: center;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.65);
}

.editorial-pulse h2 {
  position: relative;
  z-index: 2;
  margin: 20px 0;
  font-size: clamp(90px, 10vw, 160px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.editorial-pulse h2 span {
  color: var(--red);
}

.editorial-pulse h2 .pulse-lead {
  color: inherit;
}

.pulse-caption {
  position: relative;
  z-index: 2;
  max-width: 530px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.6;
}

.pulse-orbit {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
}

.pulse-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(237, 28, 36, 0.3);
  border-radius: 50%;
  animation: editorialSignal 5s ease-in-out infinite;
}

.pulse-orbit span:nth-child(2) {
  inset: 75px;
  animation-delay: 0.7s;
}

.pulse-orbit span:nth-child(3) {
  inset: 150px;
  animation-delay: 1.4s;
}

@keyframes editorialSignal {
  0%, 100% { opacity: 0.3; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1); }
}

.instagram-section {
  position: relative;
  padding: 150px 0 130px;
}

.section-heading-row {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: end;
  gap: 80px;
}

.section-title {
  margin: 0;
  font-size: 70px;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.section-intro {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.instagram-card {
  position: relative;
  overflow: hidden;
  padding: 16px 16px 20px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0);
  transition:
    translate 0.55s cubic-bezier(.2,.75,.2,1),
    border-color 0.4s ease,
    box-shadow 0.55s cubic-bezier(.2,.75,.2,1);
}

.instagram-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(.2,.75,.2,1);
}

.instagram-card:hover {
  border-color: rgba(237, 28, 36, 0.65);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.14);
  translate: 0 -10px;
}

.instagram-card:hover::before {
  transform: scaleX(1);
}

.instagram-card.featured {
  margin-top: 52px;
}

.post-meta {
  height: 45px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.post-meta span:first-child {
  color: var(--red);
}

.instagram-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #f4f4f4;
}

.instagram-frame iframe {
  width: 100%;
  height: 590px;
  display: block;
  border: 0;
  background:
    linear-gradient(135deg, #f1f1f1 25%, #fafafa 25%, #fafafa 50%, #f1f1f1 50%, #f1f1f1 75%, #fafafa 75%);
  background-size: 24px 24px;
  transform: scale(1.001);
  transition: transform 0.75s cubic-bezier(.2,.75,.2,1);
}

.instagram-consent-placeholder {
  min-height: 590px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 42%, rgba(237, 28, 36, 0.22), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 48px 48px, 48px 48px, auto;
  text-align: center;
}

.instagram-consent-placeholder > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.instagram-consent-placeholder p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.instagram-consent-placeholder button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--red);
  color: var(--paper);
  background: var(--red);
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.instagram-consent-placeholder button:hover,
.instagram-consent-placeholder button:focus-visible {
  color: var(--red);
  background: var(--paper);
}

.instagram-consent-placeholder a {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-card:hover .instagram-frame iframe {
  transform: scale(1.012);
}

.instagram-card > a {
  margin-top: 18px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(17, 17, 17, 0.13);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.instagram-card > a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform 0.35s cubic-bezier(.2,.75,.2,1);
}

.instagram-card > a:hover {
  color: var(--red);
}

.instagram-card > a:hover svg {
  transform: translateX(5px);
}

.feed-footer {
  margin-top: 60px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--ink);
}

.feed-footer p {
  color: var(--muted);
  font-size: 15px;
}

.formats {
  padding: 145px 0 150px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  border-top: 1px solid var(--line);
}

.formats-lead {
  align-self: start;
}

.formats-lead .section-marker {
  margin-bottom: 70px;
}

.format-list {
  border-top: 1px solid var(--ink);
}

.format-item {
  min-height: 200px;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 60px 1fr 290px;
  gap: 28px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.format-number {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.format-item h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.format-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.contact-cta {
  position: relative;
  min-height: 800px;
  padding: 72px 6vw;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 86% 22%, rgba(237, 28, 36, 0.31), transparent 30%),
    radial-gradient(circle at 18% 100%, rgba(143, 18, 24, 0.38), transparent 34%),
    linear-gradient(145deg, #260306 0%, #111111 48%, #050505 100%);
  isolation: isolate;
}

.contact-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 84px 84px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 25%, black);
}

.final-background-word {
  position: absolute;
  z-index: -1;
  right: auto;
  bottom: 4%;
  left: 50%;
  color: transparent;
  font-size: clamp(120px, 12.5vw, 250px);
  font-weight: 950;
  line-height: 0.72;
  letter-spacing: -0.075em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.065);
  transform: translateX(-50%);
  pointer-events: none;
}

.contact-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.contact-top > span {
  margin-top: 6px;
}

.contact-main {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-main h2 {
  margin: 0;
  font-size: clamp(115px, 12vw, 190px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.085em;
}

.contact-main h2 span {
  color: var(--red);
}

.round-link {
  width: 210px;
  height: 210px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}

.round-link > span {
  display: block;
  width: 100%;
  max-width: 140px;
  line-height: 1.3;
  text-align: center;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.round-link:hover {
  transform: rotate(-8deg) scale(1.06);
}

.round-link svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.contact-note {
  position: relative;
  z-index: 2;
  max-width: 380px;
  margin: 72px 0 0;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.contact-email {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--paper);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.site-footer {
  padding: 60px 48px 30px;
  color: var(--paper);
  background: var(--ink);
}

.footer-top {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 80px;
}

.footer-brand {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.footer-top nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 70px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-social {
  width: 390px;
  justify-self: end;
}

.footer-email {
  margin-bottom: 24px;
  padding: 0 0 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-email span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-privacy-settings {
  min-height: auto;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
  text-transform: uppercase;
}

.footer-privacy-settings:hover,
.footer-privacy-settings:focus-visible,
.footer-top nav a:hover,
.footer-top nav a:focus-visible {
  color: var(--red);
}

.privacy-consent-panel {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: 24px;
  width: min(calc(100% - 48px), 940px);
  margin-inline: auto;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 3px solid var(--red);
  color: var(--paper);
  background: rgba(17, 17, 17, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.privacy-consent-label {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.privacy-consent-copy h2 {
  margin: 8px 0 10px;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.privacy-consent-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.privacy-consent-copy a {
  margin-top: 12px;
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-consent-copy small {
  margin-left: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.privacy-consent-actions {
  display: flex;
  gap: 10px;
}

.privacy-consent-actions button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.privacy-consent-actions .privacy-consent-accept {
  border-color: var(--red);
  background: var(--red);
}

.privacy-consent-actions button:hover,
.privacy-consent-actions button:focus-visible {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.footer-email strong {
  position: relative;
  color: var(--paper);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
  transition: color 0.25s ease;
}

.footer-email strong::after {
  margin-left: 10px;
  color: var(--red);
  content: "↗";
  font-size: 13px;
}

.footer-email:hover strong,
.footer-email:focus-visible strong {
  color: var(--red);
}

.footer-social-label {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-links--footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.social-links--footer .social-link {
  min-height: 48px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.3s cubic-bezier(.2,.75,.2,1);
}

.social-links--footer .social-link:hover,
.social-links--footer .social-link:focus-visible {
  border-color: var(--red);
  color: var(--paper);
  background: rgba(237, 28, 36, 0.13);
  transform: translateY(-2px);
}

.social-links--footer .social-link-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--paper);
  background: var(--red);
}

.social-links--footer .social-link-icon svg {
  width: 13px;
  height: 13px;
}

.footer-bottom {
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom > a:last-child {
  justify-self: end;
  color: var(--paper);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.06em;
  text-transform: none;
  transition: color 0.3s ease;
}

.footer-credit strong {
  color: var(--paper);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transition: color 0.3s ease;
}

.footer-credit::after {
  margin-left: 3px;
  color: var(--red);
  content: "↗";
  font-size: 11px;
}

.footer-credit:hover {
  color: var(--paper);
}

.footer-credit:hover strong {
  color: var(--red);
}

.about-page {
  padding-top: 0;
}

.about-hero {
  min-height: 940px;
  padding: 155px 48px 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
  background: var(--ink);
}

.about-code {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.about-hero h1 {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  font-size: clamp(108px, 10.5vw, 172px);
  font-weight: 800;
  line-height: 0.81;
  letter-spacing: -0.08em;
}

.about-hero h1 span:nth-child(2) {
  margin-left: 13vw;
}

.about-hero h1 .accent {
  margin-left: 25vw;
  color: var(--red);
}

.about-hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.about-hero-foot p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.5;
}

.about-hero-foot span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

body:has(.about-page) .site-header,
body:has(.privacy-page) .site-header {
  color: var(--paper);
}

body:has(.about-page) .site-header.is-scrolled,
body:has(.privacy-page) .site-header.is-scrolled {
  color: var(--ink);
}

body:has(.about-page) .social-links--header .social-link,
body:has(.privacy-page) .social-links--header .social-link {
  border-color: currentColor;
}

.privacy-page {
  background: var(--paper);
}

.privacy-hero {
  min-height: 820px;
  padding: 160px 48px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 34%, rgba(237, 28, 36, 0.18), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 12.5vw 12.5vw, 12.5vw 12.5vw, auto;
}

.privacy-code {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.privacy-hero-copy {
  width: min(100%, 1380px);
  margin-inline: auto;
}

.privacy-hero h1 {
  max-width: 1280px;
  margin: 0;
  font-size: clamp(86px, 9.5vw, 154px);
  line-height: 0.82;
  letter-spacing: -0.085em;
}

.privacy-hero h1 span {
  margin-left: 9vw;
  display: block;
  color: var(--red);
}

.privacy-hero-copy > p {
  max-width: 590px;
  margin: 50px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.55;
}

.privacy-updated {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-updated strong {
  color: var(--paper);
}

.privacy-layout {
  padding-block: 120px 150px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: clamp(60px, 8vw, 130px);
}

.privacy-index {
  position: sticky;
  top: 120px;
}

.privacy-index > span {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.privacy-index nav {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
}

.privacy-index a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #525252;
  font-size: 11px;
  line-height: 1.35;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.privacy-index a:hover,
.privacy-index a:focus-visible {
  padding-left: 6px;
  color: var(--red);
}

.privacy-prose {
  min-width: 0;
}

.privacy-intro {
  max-width: 950px;
  padding-bottom: 90px;
}

.privacy-intro h2 {
  max-width: 880px;
  margin: 16px 0 28px;
  font-size: clamp(58px, 6vw, 94px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.privacy-intro > p:last-child {
  max-width: 720px;
  margin: 0;
  color: #414141;
  font-size: 19px;
  line-height: 1.65;
}

.privacy-section {
  scroll-margin-top: 110px;
  padding: 64px 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 30px;
  border-top: 1px solid var(--line);
}

.privacy-number {
  padding-top: 7px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.privacy-section h2 {
  margin: 0 0 28px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.privacy-section h3 {
  margin: 34px 0 12px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.privacy-section p,
.privacy-section li {
  color: #353535;
  font-size: 16px;
  line-height: 1.7;
}

.privacy-section p {
  max-width: 820px;
  margin: 0 0 18px;
}

.privacy-section ul {
  max-width: 820px;
  margin: 22px 0;
  padding-left: 20px;
}

.privacy-section li + li {
  margin-top: 9px;
}

.privacy-section a:not(.text-link):not(.privacy-email) {
  color: var(--red-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.privacy-section code {
  padding: 3px 7px;
  color: var(--ink);
  background: #ece8e3;
  font-size: 13px;
}

.privacy-data-card {
  margin-top: 18px;
  padding: 30px;
  border-left: 3px solid var(--red);
  background: #f5f3ef;
}

.privacy-data-card h3 {
  margin-top: 0;
}

.privacy-data-card p:last-child {
  margin-bottom: 0;
}

.privacy-source-links {
  margin-top: 30px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.privacy-contact > div {
  padding: 40px;
  color: var(--paper);
  background: var(--ink);
}

.privacy-contact h2,
.privacy-contact p {
  color: inherit;
}

.privacy-contact p {
  color: rgba(255, 255, 255, 0.72);
}

.privacy-email {
  margin: 12px 0 30px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
  color: var(--paper);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.privacy-contact .text-link {
  color: var(--paper);
}

.about-intro {
  position: relative;
  min-height: 820px;
  padding: 150px 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  isolation: isolate;
}

.about-intro-copy {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  color: #353535;
  font-size: 18px;
  line-height: 1.65;
}

.about-intro-copy p {
  margin: 0;
}

.principles {
  padding: 130px 0 140px;
  color: var(--paper);
  background: #8f1218;
}

.principles .eyebrow.light {
  color: rgba(255, 255, 255, 0.82);
}

.principles-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.principles-heading .section-marker {
  margin-bottom: 4px;
}

.principles-heading h2 {
  margin: 0;
  color: var(--paper);
  font-size: 72px;
  letter-spacing: -0.06em;
}

.principles-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.principles-grid article {
  min-height: 330px;
  padding: 32px 42px 30px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.principles-grid article + article {
  padding-left: 42px;
}

.principles-grid article:last-child {
  border-right: 0;
}

.principles-grid span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 800;
}

.principles-grid h3 {
  max-width: 250px;
  margin: 80px 0 24px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.principles-grid p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

.team {
  padding: 150px 0;
  display: grid;
  grid-template-columns: 220px 1fr;
}

.team-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.team-card {
  min-height: 250px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  gap: 30px;
  border: 1px solid var(--line);
  background: #f8f8f8;
}

.team-monogram {
  width: 96px;
  height: 96px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--red);
  font-size: 42px;
  font-weight: 800;
}

.team-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.team-card p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 13px;
}

.team-card a {
  font-size: 15px;
  font-weight: 700;
}

.about-contact {
  padding: 110px 0;
  display: grid;
  grid-template-columns: 180px 1fr auto auto;
  align-items: end;
  gap: 60px;
  border-top: 1px solid var(--ink);
}

.about-contact h2 {
  margin: 0;
  font-size: 85px;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.about-email {
  width: max-content;
  margin-top: 18px;
  padding-bottom: 5px;
  display: block;
  border-bottom: 1px solid rgba(17, 17, 17, 0.36);
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.about-email:hover,
.about-email:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.reveal {
  opacity: 1;
  filter: none;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 38px, 0) scale(0.988);
  transition:
    opacity 0.75s ease,
    filter 0.8s ease,
    transform 0.95s cubic-bezier(.16,.75,.2,1);
  will-change: opacity, filter, transform;
}

.motion-ready .hero-title .reveal,
.motion-ready .about-hero h1 .reveal {
  filter: none;
  transform: translate3d(0, 60px, 0);
  transition:
    opacity 0.8s ease,
    transform 1s cubic-bezier(.16,.75,.2,1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.32s; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

@media (hover: none), (pointer: coarse) {
  .brand:hover .brand-logo img,
  .hero-symbol:hover .hero-logo-frame img,
  .instagram-card:hover .instagram-frame iframe {
    transform: none;
  }

  .button:hover,
  .instagram-card:hover,
  .round-link:hover,
  .social-links--footer .social-link:hover {
    transform: none;
    translate: none;
  }

  a,
  button {
    min-height: 44px;
  }
}

@media (max-width: 78rem) {
  :root {
    --shell: min(100% - 64px, 1440px);
  }

  .site-header {
    padding-inline: 32px;
  }

  .header-nav {
    gap: 22px;
  }

  .hero {
    min-height: 820px;
    padding: 122px 32px 52px;
  }

  .hero-title {
    font-size: clamp(104px, 14.2vw, 184px);
  }

  .hero-symbol {
    right: 8%;
    width: 220px;
    height: 220px;
  }

  .hero-bottom {
    gap: 34px;
  }

  .manifesto,
  .about-intro,
  .team {
    grid-template-columns: 170px 1fr;
  }

  .instagram-frame iframe,
  .instagram-consent-placeholder {
    height: 520px;
    min-height: 520px;
  }

  .formats {
    gap: 64px;
  }

  .format-item {
    grid-template-columns: 48px 1fr 240px;
    gap: 20px;
  }

  .contact-main h2 {
    font-size: clamp(92px, 11.5vw, 150px);
  }

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

  .footer-social {
    width: min(100%, 390px);
  }

  .about-contact {
    grid-template-columns: 150px 1fr auto;
  }

  .about-contact .text-link {
    grid-column: 2 / -1;
    width: max-content;
    justify-self: end;
  }
}

@media (max-width: 70rem) {
  .social-links--header {
    display: none;
  }

  .hero-symbol {
    width: 190px;
    height: 190px;
  }

  .hero-logo-frame {
    inset: 34px;
  }

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

  .instagram-card.featured {
    margin-top: 0;
  }

  .instagram-card:nth-child(3) {
    width: calc(50% - 11px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .instagram-frame iframe,
  .instagram-consent-placeholder {
    height: 590px;
    min-height: 590px;
  }

  .formats {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .format-item {
    grid-template-columns: 44px 1fr;
  }

  .format-item p {
    grid-column: 2;
  }

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

  .footer-top nav {
    justify-self: end;
  }

  .footer-social {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 18px;
    justify-self: stretch;
  }

  .social-links--footer {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 60rem) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    z-index: 140;
    height: 76px;
    padding-inline: max(24px, env(safe-area-inset-left));
    grid-template-columns: 1fr auto auto;
    gap: 18px;
  }

  .site-header.is-scrolled {
    height: 68px;
  }

  .header-nav {
    display: none;
  }

  .header-meta {
    gap: 0;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 151;
    width: 48px;
    height: 48px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(17, 17, 17, 0.2);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.84);
    cursor: pointer;
    backdrop-filter: blur(12px);
  }

  .mobile-menu-toggle span {
    width: 18px;
    height: 1.5px;
    display: block;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }

  body.menu-open .site-header {
    color: var(--ink) !important;
    border-color: rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
  }

  .mobile-menu {
    position: fixed;
    z-index: 120;
    inset: 0;
    display: block;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 0.4s;
  }

  .mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    padding: 0;
    border: 0;
    opacity: 0;
    background: rgba(4, 4, 4, 0.62);
    cursor: pointer;
    transition: opacity 0.35s ease;
  }

  .mobile-menu.is-open .mobile-menu-backdrop {
    opacity: 1;
  }

  .mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(88vw, 430px);
    height: 100%;
    height: 100dvh;
    padding: calc(104px + env(safe-area-inset-top)) max(30px, env(safe-area-inset-right)) max(30px, env(safe-area-inset-bottom)) 34px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    color: var(--paper);
    background:
      radial-gradient(circle at 90% 85%, rgba(237, 28, 36, 0.28), transparent 34%),
      var(--ink);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.2,.75,.2,1);
    overscroll-behavior: contain;
  }

  .mobile-menu.is-open .mobile-menu-panel {
    transform: translateX(0);
  }

  .mobile-menu-heading {
    padding-bottom: 18px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .mobile-menu-nav {
    padding: 24px 0 32px;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu-nav a {
    min-height: 62px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: clamp(30px, 8vw, 42px);
    font-weight: 700;
    letter-spacing: -0.055em;
  }

  .mobile-menu-nav a::after {
    margin-left: auto;
    color: var(--red);
    content: "↗";
    font-size: 18px;
  }

  .mobile-menu-foot {
    margin-top: auto;
  }

  .mobile-language {
    margin-bottom: 26px;
    display: flex;
    gap: 8px;
  }

  .mobile-language a,
  .mobile-language span {
    width: 52px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 11px;
    font-weight: 800;
  }

  .mobile-language .active {
    border-color: var(--red);
    color: var(--paper);
    background: var(--red);
  }

  .mobile-menu-social-label {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .social-links--menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .social-links--menu .social-link {
    min-height: 46px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    color: rgba(255, 255, 255, 0.85);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .social-links--menu .social-link-icon {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    color: var(--paper);
  }

  .mobile-menu-email {
    min-height: 44px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 700;
  }

  .hero {
    min-height: max(760px, 100svh);
    padding: 112px 32px 44px;
  }

  .hero-title {
    font-size: clamp(82px, 15vw, 136px);
  }

  .hero-symbol {
    right: 4%;
    width: 170px;
    height: 170px;
  }

  .hero-logo-frame {
    inset: 30px;
  }

  .hero-bottom {
    grid-template-columns: minmax(280px, 0.9fr) 1fr;
  }

  .scroll-cue {
    display: none;
  }

  .manifesto,
  .about-intro,
  .team {
    grid-template-columns: 140px 1fr;
  }

  .display-copy {
    font-size: clamp(54px, 7.5vw, 76px);
  }

  .manifesto-foot {
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 40px;
  }

  .editorial-pulse h2 {
    font-size: clamp(70px, 11vw, 112px);
  }

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

  .formats-lead .section-marker {
    margin-bottom: 40px;
  }

  .contact-main {
    align-items: flex-end;
  }

  .contact-main h2 {
    font-size: clamp(76px, 12vw, 112px);
  }

  .round-link {
    width: 170px;
    height: 170px;
  }

  .about-hero h1 {
    font-size: clamp(80px, 11vw, 118px);
  }

  .about-intro-copy {
    gap: 40px;
  }

  .principles-grid article,
  .principles-grid article + article {
    padding-inline: 24px;
  }

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

  .privacy-hero {
    min-height: 760px;
    padding: 130px 32px 54px;
  }

  .privacy-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 52px;
  }
}

@media (max-width: 48rem) {
  :root {
    --shell: calc(100% - 40px);
  }

  html {
    scroll-behavior: auto;
  }

  body::before {
    display: none;
  }

  .site-header {
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
    gap: 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .brand-label {
    font-size: 13px;
  }

  .language-switch {
    gap: 6px;
  }

  .hero {
    min-height: max(700px, 100svh);
    padding: 102px 20px 34px;
  }

  .hero-grid {
    opacity: 0.22;
    background-image: linear-gradient(to right, transparent calc(50% - 0.5px), #ddd 50%, transparent calc(50% + 0.5px));
  }

  .hero-title-wrap {
    align-self: center;
  }

  .hero-title {
    font-size: clamp(66px, 22vw, 104px);
    line-height: 0.75;
    letter-spacing: -0.085em;
  }

  .hero-title span:nth-child(2) {
    margin-left: 8vw;
  }

  .hero-title .red-word {
    margin-left: 15vw;
  }

  .hero-symbol {
    top: 0;
    right: 1%;
    width: 138px;
    height: 138px;
  }

  .hero-logo-frame {
    inset: 26px;
  }

  .signal-one {
    inset: 20px;
  }

  .hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-lead {
    max-width: 360px;
    font-size: 17px;
  }

  .hero-actions {
    width: 100%;
    gap: 16px;
  }

  .hero-actions .button-primary {
    flex: 1;
  }

  .ticker {
    padding-block: 17px 15px;
  }

  .ticker-track {
    font-size: 11px;
  }

  .ticker-group {
    min-width: 190vw;
    gap: 22px;
  }

  .manifesto,
  .about-intro,
  .team {
    min-height: auto;
    padding: 88px 0;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-marker {
    flex-direction: row;
    align-items: flex-end;
    gap: 16px;
  }

  .section-marker span {
    font-size: 72px;
  }

  .section-marker small {
    margin: 0 0 1px;
    padding: 0;
  }

  .section-marker-row {
    margin-bottom: 42px;
  }

  .eyebrow {
    margin-bottom: 24px;
  }

  .display-copy {
    font-size: clamp(44px, 12vw, 58px);
    line-height: 0.98;
  }

  .manifesto-foot {
    margin-top: 48px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
  }

  .manifesto-foot p {
    font-size: 17px;
  }

  .background-word {
    top: 52%;
    font-size: clamp(70px, 21vw, 150px);
  }

  .editorial-pulse {
    min-height: 570px;
    padding: 90px 20px;
  }

  .editorial-pulse h2 {
    font-size: clamp(62px, 18vw, 88px);
  }

  main[lang="ru"] .editorial-pulse h2.pulse-title--ru {
    width: 100%;
    font-size: clamp(48px, 13.5vw, 62px);
    line-height: 0.9;
    letter-spacing: -0.065em;
  }

  main[lang="ru"] .pulse-title--ru .pulse-lead,
  main[lang="ru"] .pulse-title--ru .pulse-accent {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    white-space: nowrap;
  }

  main[lang="ru"] .pulse-title--ru .pulse-accent {
    margin-top: 0.08em;
  }

  .pulse-orbit {
    width: 440px;
    height: 440px;
  }

  .instagram-section {
    padding: 88px 0;
  }

  .section-heading-row {
    margin-bottom: 44px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-title {
    font-size: clamp(46px, 13vw, 60px);
  }

  .section-intro {
    max-width: 430px;
  }

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

  .instagram-card,
  .instagram-card:nth-child(3) {
    width: 100%;
    max-width: 480px;
    grid-column: auto;
    justify-self: center;
  }

  .instagram-frame iframe,
  .instagram-consent-placeholder {
    height: clamp(500px, calc((100vw - 72px) * 1.78), 590px);
    min-height: clamp(500px, calc((100vw - 72px) * 1.78), 590px);
  }

  .feed-footer {
    margin-top: 44px;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .formats {
    padding: 88px 0;
    gap: 48px;
  }

  .format-item {
    min-height: auto;
    padding: 28px 0;
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .format-item h3 {
    font-size: 24px;
  }

  .format-item p {
    font-size: 14px;
  }

  .contact-cta {
    min-height: 680px;
    padding: 70px max(20px, env(safe-area-inset-right)) max(62px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  }

  .contact-top .section-marker {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-top .section-marker small {
    margin-top: 10px;
  }

  .contact-main {
    margin-top: 64px;
    flex-direction: column;
    align-items: flex-start;
    gap: 44px;
  }

  .contact-main h2 {
    font-size: clamp(62px, 18vw, 88px);
  }

  .round-link {
    width: 156px;
    height: 156px;
    padding: 22px;
    gap: 18px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .round-link > span {
    max-width: 112px;
  }

  .contact-note {
    margin-top: 52px;
  }

  .final-background-word {
    bottom: 8%;
    font-size: clamp(70px, 20vw, 150px);
  }

  .site-footer {
    padding: 52px max(20px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .footer-top nav,
  .footer-social {
    width: 100%;
    justify-self: stretch;
  }

  .footer-top nav {
    gap: 16px 38px;
  }

  .footer-top nav > a[href="/privacy"],
  .footer-top nav > a[href="/ru/privacy"],
  .footer-privacy-settings {
    grid-column: 1 / -1;
  }

  .social-links--footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    margin-top: 42px;
    grid-template-columns: 1fr auto;
    gap: 22px;
  }

  .footer-credit {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }

  .about-hero {
    min-height: max(700px, 100svh);
    padding: 112px 20px 44px;
  }

  .about-hero h1 {
    font-size: clamp(58px, 16vw, 84px);
    line-height: 0.87;
  }

  .about-hero h1 span:nth-child(2) {
    margin-left: 6vw;
  }

  .about-hero h1 .accent {
    margin-left: 11vw;
  }

  main[lang="ru"] .about-hero h1 {
    row-gap: 0.08em;
    font-size: clamp(42px, 11.5vw, 62px);
    line-height: 0.9;
    letter-spacing: -0.065em;
  }

  main[lang="ru"] .about-hero h1 > span {
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
  }

  main[lang="ru"] .about-hero h1 span:nth-child(2) {
    margin-left: 4vw;
  }

  main[lang="ru"] .about-hero h1 .accent {
    margin-left: 6vw;
  }

  .about-hero-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .about-hero-foot p {
    font-size: 16px;
  }

  .about-intro-copy {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 24px;
    font-size: 16px;
  }

  .principles {
    padding: 88px 0;
  }

  .principles-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 42px;
  }

  .principles-heading h2 {
    font-size: clamp(48px, 13vw, 64px);
  }

  .principles-grid {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }

  .principles-grid article,
  .principles-grid article + article {
    min-height: auto;
    padding: 28px 0 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  }

  .principles-grid article:last-child {
    border-bottom: 0;
  }

  .principles-grid h3 {
    margin: 36px 0 18px;
  }

  .team-grid {
    margin-top: 46px;
  }

  .team-card {
    min-height: 210px;
    padding: 24px;
  }

  .team-monogram {
    width: 76px;
    height: 76px;
    font-size: 34px;
  }

  .about-contact {
    padding: 82px 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 36px;
  }

  .about-contact h2 {
    font-size: clamp(58px, 16vw, 76px);
  }

  .about-contact .text-link {
    grid-column: auto;
    justify-self: start;
  }

  .privacy-consent-panel {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    width: calc(100% - 24px);
    padding: 20px;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 20px;
  }

  .privacy-consent-copy small {
    margin: 10px 0 0;
    display: block;
  }

  .privacy-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .privacy-consent-actions button {
    padding-inline: 12px;
    white-space: normal;
  }

  .privacy-hero {
    min-height: max(700px, 100svh);
    padding: 112px 20px 42px;
    background-size: auto, 50% 25%, 50% 25%, auto;
  }

  .privacy-code {
    font-size: 9px;
  }

  .privacy-hero h1 {
    font-size: clamp(52px, 15vw, 76px);
    line-height: 0.9;
    letter-spacing: -0.07em;
  }

  .privacy-hero h1 span {
    margin: 0;
  }

  .privacy-hero-copy > p {
    margin-top: 34px;
    font-size: 16px;
  }

  .privacy-updated {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .privacy-layout {
    padding-block: 82px 100px;
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .privacy-index {
    position: static;
  }

  .privacy-index nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }

  .privacy-intro {
    padding-bottom: 64px;
  }

  .privacy-intro h2 {
    font-size: clamp(46px, 13vw, 64px);
  }

  .privacy-intro > p:last-child {
    font-size: 17px;
  }

  .privacy-section {
    padding: 50px 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .privacy-section h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .privacy-data-card {
    padding: 22px;
  }

  .privacy-contact > div {
    padding: 26px 22px;
  }

  .privacy-email {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .motion-ready .reveal,
  .motion-ready .hero-title .reveal,
  .motion-ready .about-hero h1 .reveal,
  .motion-ready .privacy-hero .reveal {
    filter: none;
    transform: translate3d(0, 24px, 0);
  }
}

@media (max-width: 30rem) {
  .brand-label small {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .feed-footer .button {
    width: 100%;
  }

  .button-text {
    justify-content: space-between;
  }

  .hero-symbol {
    width: 118px;
    height: 118px;
  }

  .hero-logo-frame {
    inset: 22px;
  }

  .contact-top > span {
    max-width: 90px;
    text-align: right;
  }

  .contact-email,
  .about-email,
  .footer-email strong {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .social-links--footer,
  .social-links--menu {
    grid-template-columns: 1fr;
  }

  .privacy-consent-actions {
    grid-template-columns: 1fr;
  }

  .privacy-index nav {
    grid-template-columns: 1fr;
  }

  .team-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 22rem) {
  .site-header {
    gap: 8px;
  }

  .brand-label {
    font-size: 12px;
  }

  .mobile-menu-panel {
    width: 100%;
  }

  .hero-title {
    font-size: 20vw;
  }

  .contact-main h2,
  .about-contact h2 {
    font-size: 17vw;
  }

  main[lang="ru"] .about-hero h1 {
    font-size: 37px;
  }

  main[lang="ru"] .about-hero h1 span:nth-child(2) {
    margin-left: 3vw;
  }

  main[lang="ru"] .about-hero h1 .accent {
    margin-left: 4vw;
  }

  main[lang="ru"] .editorial-pulse h2.pulse-title--ru {
    font-size: 42px;
  }
}

@media (max-height: 42rem) and (orientation: landscape) and (max-width: 60rem) {
  .hero,
  .about-hero {
    min-height: 660px;
  }

  .mobile-menu-panel {
    padding-top: 88px;
  }
}

@media print {
  .site-header,
  .mobile-menu,
  .ticker,
  .scroll-cue,
  .site-footer,
  .round-link {
    display: none !important;
  }

  body,
  .editorial-pulse,
  .principles,
  .contact-cta,
  .about-hero {
    color: #000 !important;
    background: #fff !important;
  }

  main {
    padding: 0 !important;
  }

  .reveal {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

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

[hidden] { display: none !important; }
