:root {
  --ink: #111719;
  --paper: #f4f1eb;
  --white: #fff;
  --brand: #078da8;
  --brand-deep: #006378;
  --signal: #ff5c40;
  --line: rgba(17, 23, 25, .16);
  --muted: #626a6c;
  --page: min(1440px, calc(100vw - 48px));
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --text: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--text);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { color: var(--white); background: var(--brand); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: var(--page);
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 14px 10px 18px;
  border: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  transform: translateX(-50%);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .93);
  border-color: rgba(17, 23, 25, .08);
  box-shadow: 0 18px 60px rgba(17, 23, 25, .09);
  backdrop-filter: blur(16px);
}
.brand { flex: 0 0 auto; }
.brand img { width: 168px; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 42px); }
.site-nav a {
  position: relative;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 14px 22px; color: var(--white) !important; background: var(--ink); }
.menu-toggle { display: none; }

.hero {
  width: var(--page);
  min-height: min(900px, 100svh);
  margin: 0 auto;
  padding: 128px 0 32px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  align-items: stretch;
  gap: 32px;
}
.hero-copy {
  align-self: center;
  padding: 52px 4vw 52px 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before { width: 32px; height: 2px; background: currentColor; content: ""; }
.eyebrow span { padding: 6px 8px; color: var(--white); background: var(--brand); letter-spacing: .08em; }
.hero h1, .section-heading h2, .clients h2, .contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .92;
}
.hero h1 { max-width: 760px; font-size: clamp(58px, 6.2vw, 112px); }
.hero h1 em, .contact h2 em {
  color: var(--brand);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.hero-lead {
  max-width: 610px;
  margin: 34px 0;
  color: #3f484a;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.button-dark { color: var(--white); background: var(--ink); transition: transform .2s ease, background .2s ease; }
.button-dark:hover { background: var(--brand); transform: translateY(-2px); }
.text-link { font-size: 14px; font-weight: 800; text-underline-offset: 7px; }
.text-link span { color: var(--brand); }
.hero-visual { position: relative; min-height: 640px; overflow: hidden; background: #1f2729; }
.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 10, 12, .54));
  content: "";
  pointer-events: none;
}
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.hero-visual:hover > img { transform: scale(1.025); }
.hero-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  color: var(--white);
}
.hero-caption span { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-caption strong { font-size: 15px; }
.hero-badge {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: 28px;
  width: 150px;
  height: 150px;
  display: grid;
  place-content: center;
  color: var(--white);
  background: var(--signal);
  border-radius: 50%;
  text-align: center;
  transform: rotate(8deg);
}
.hero-badge span { font-family: Georgia, serif; font-size: 18px; font-style: italic; }
.hero-badge strong { font-size: 16px; text-transform: uppercase; }

.signal-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--white);
}
.signal-strip p { min-height: 150px; margin: 0; padding: 30px 5vw; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.16); }
.signal-strip p:last-child { border-right: 0; }
.signal-strip strong { color: #6bd4e6; font-family: var(--display); font-size: clamp(34px, 4vw, 66px); letter-spacing: -.05em; line-height: 1; }
.signal-strip span { margin-top: 8px; color: #bac3c5; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }

.section {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(110px, 12vw, 190px) 0;
  border-bottom: 1px solid var(--line);
}
.section-index {
  position: absolute;
  top: 46px;
  right: 0;
  color: rgba(17,23,25,.17);
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}
.section-heading h2 { max-width: 1050px; font-size: clamp(48px, 7vw, 118px); }
.about { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8vw; align-items: end; }
.about .section-heading h2 { font-size: clamp(52px, 6.1vw, 100px); }
.about-copy { max-width: 660px; padding-bottom: 6px; }
.about-copy p { margin: 0 0 22px; color: #465052; font-size: 16px; line-height: 1.78; }
.about-copy .lead { color: var(--ink); font-size: clamp(21px, 1.8vw, 29px); font-weight: 600; line-height: 1.45; }

.services .section-heading { margin-bottom: 74px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card {
  min-height: 300px;
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.service-card:hover { color: var(--white); background: var(--brand); transform: translateY(-4px); }
.service-card > span { margin-bottom: auto; font-family: Georgia, serif; font-size: 18px; font-style: italic; }
.service-card h3 { margin: 60px 0 14px; font-family: var(--display); font-size: clamp(28px, 2.35vw, 42px); letter-spacing: -.04em; }
.service-card p { max-width: 340px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.service-card:hover p { color: rgba(255,255,255,.78); }
.service-card-accent { color: var(--white); background: var(--ink); }
.service-card-accent p { color: #b7c1c3; }

.work { width: 100%; padding-right: max(24px, calc((100vw - var(--page)) / 2)); padding-left: max(24px, calc((100vw - var(--page)) / 2)); background: var(--ink); color: var(--white); }
.work .section-index { right: max(24px, calc((100vw - var(--page)) / 2)); color: rgba(255,255,255,.22); }
.work .eyebrow { color: #6bd4e6; }
.work-intro { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 74px; }
.work-intro .section-heading { max-width: 980px; }
.archive-note { max-width: 720px; margin: 30px 0 0; color: #aebabc; font-size: 15px; line-height: 1.7; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-bar button { padding: 11px 15px; color: #b9c1c3; background: transparent; border: 1px solid rgba(255,255,255,.2); cursor: pointer; font-size: 12px; font-weight: 800; }
.filter-bar button:hover, .filter-bar button.is-active { color: var(--ink); background: #6bd4e6; border-color: #6bd4e6; }
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 290px; gap: 14px; }
.project-card { position: relative; padding: 0; overflow: hidden; color: var(--white); background: #242d2f; border: 0; cursor: zoom-in; text-align: left; }
.project-card[hidden] { display: none; }
.project-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.78)); content: ""; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .4s ease; }
.project-card:hover img { transform: scale(1.055); filter: saturate(1.12); }
.project-card > span { position: absolute; z-index: 2; right: 20px; bottom: 20px; left: 20px; display: flex; justify-content: space-between; align-items: end; gap: 16px; }
.project-card strong { display: block; font-size: 18px; }
.project-card small { color: rgba(255,255,255,.72); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.project-card .project-count { position: absolute; z-index: 3; top: 14px; right: 14px; left: auto; bottom: auto; padding: 7px 9px; color: var(--ink); background: #6bd4e6; font-size: 10px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.project-wide { grid-column: span 2; }
.project-tall { grid-row: span 2; }

.clients { width: 100%; display: grid; grid-template-columns: .8fr 1.2fr; background: var(--white); }
.clients-copy { padding: clamp(80px, 9vw, 150px) max(24px, calc((100vw - var(--page)) / 2)); padding-right: 5vw; background: var(--brand); color: var(--white); }
.clients-copy .eyebrow { color: var(--white); }
.clients h2 { font-size: clamp(46px, 5.7vw, 92px); }
.logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.logo-grid img { width: 100%; height: 150px; padding: 34px; object-fit: contain; border-right: 1px solid #e3e3df; border-bottom: 1px solid #e3e3df; filter: grayscale(1); opacity: .72; transition: filter .25s ease, opacity .25s ease, transform .25s ease; }
.logo-grid img:hover { filter: none; opacity: 1; transform: scale(1.05); }

.press .section-heading { margin-bottom: 70px; }
.press .section-heading h2 { max-width: 1200px; font-size: clamp(48px, 6vw, 96px); }
.press-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.nyxmag-feature { grid-column: 1 / -1; min-height: 440px; display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; color: var(--white); background: var(--ink); text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.nyxmag-feature:hover { transform: translateY(-6px); box-shadow: 0 24px 70px rgba(17,23,25,.18); }
.nyxmag-feature-media { min-height: 440px; overflow: hidden; background: #f6dfe7; }
.nyxmag-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.nyxmag-feature:hover .nyxmag-feature-media img { transform: scale(1.035); }
.nyxmag-feature-copy { padding: clamp(42px, 5vw, 76px); display: flex; flex-direction: column; justify-content: center; }
.nyxmag-feature-copy small { color: #f15b78; font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.nyxmag-feature-copy strong { margin: 28px 0 20px; font-family: var(--display); font-size: clamp(58px, 7vw, 108px); letter-spacing: -.055em; line-height: .9; }
.nyxmag-feature-copy p { max-width: 520px; margin: 0; color: #c6ced0; font-size: 17px; line-height: 1.7; }
.nyxmag-feature-copy em { margin-top: 42px; color: var(--white); font-size: 13px; font-style: normal; font-weight: 900; text-decoration: underline; text-underline-offset: 7px; }
.press-card { display: grid; grid-template-rows: 270px 1fr; min-height: 500px; color: var(--ink); background: var(--white); text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.press-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(17,23,25,.12); }
.press-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.press-card span { padding: 28px 24px; display: flex; flex-direction: column; }
.press-card small { color: var(--brand-deep); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.press-card strong { margin: 24px 0; font-family: var(--display); font-size: 25px; letter-spacing: -.03em; }
.press-card em { margin-top: auto; font-size: 12px; font-style: normal; font-weight: 800; }

.contact { position: relative; min-height: 760px; padding: clamp(90px, 10vw, 160px) max(24px, calc((100vw - var(--page)) / 2)); display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 8vw; overflow: hidden; background: #087f98; color: var(--white); }
.contact::before { position: absolute; width: 700px; height: 700px; right: -230px; top: -260px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; content: ""; }
.contact .eyebrow { color: var(--white); }
.contact h2 { max-width: 980px; font-size: clamp(54px, 7.2vw, 120px); line-height: 1.04; }
.contact h2 em { color: #a9eff7; }
.contact-mail { display: inline-flex; gap: 14px; margin-top: 52px; font-size: clamp(19px, 2vw, 30px); font-weight: 800; text-underline-offset: 8px; }
.contact-meta { position: relative; z-index: 2; padding: 34px; color: var(--ink); background: var(--paper); }
.contact-meta small { color: var(--brand-deep); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-meta p { margin: 12px 0 28px; font-size: 16px; line-height: 1.7; }
.contact-meta > a { font-size: 13px; font-weight: 800; }
.contact-orbit { position: absolute; top: 80px; right: 7vw; width: 250px; height: 250px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; animation: orbit 22s linear infinite; }
.contact-orbit span { position: absolute; padding: 7px 9px; color: var(--brand-deep); background: #a9eff7; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.contact-orbit span:nth-child(1) { top: -15px; left: 50%; }
.contact-orbit span:nth-child(2) { top: 50%; right: -32px; }
.contact-orbit span:nth-child(3) { bottom: -15px; left: 42%; }
.contact-orbit span:nth-child(4) { top: 48%; left: -34px; }
@keyframes orbit { to { transform: rotate(360deg); } }

.site-footer { min-height: 150px; padding: 28px max(24px, calc((100vw - var(--page)) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 30px; background: var(--white); }
.site-footer img { width: 140px; }
.site-footer p, .site-footer a { color: var(--muted); font-size: 12px; }
.site-footer a { font-weight: 800; }

.case-dialog { width: min(1480px, calc(100vw - 32px)); height: min(920px, calc(100dvh - 32px)); max-width: none; max-height: none; padding: 0; overflow: hidden; color: var(--white); background: var(--ink); border: 0; box-shadow: 0 30px 120px rgba(0,0,0,.55); }
.case-dialog::backdrop { background: rgba(4,10,12,.86); backdrop-filter: blur(9px); }
.case-layout { height: 100%; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(340px, .55fr); }
.case-gallery { min-width: 0; display: grid; grid-template-rows: minmax(0, 1fr) 108px; background: #050809; }
.case-stage { position: relative; min-height: 0; display: grid; place-items: center; overflow: hidden; }
.case-stage > img { width: 100%; height: 100%; object-fit: contain; }
.case-arrow { position: absolute; z-index: 2; top: 50%; width: 48px; height: 48px; display: grid; place-items: center; color: var(--white); background: rgba(5,8,9,.74); border: 1px solid rgba(255,255,255,.28); border-radius: 50%; cursor: pointer; transform: translateY(-50%); transition: background .2s ease, border-color .2s ease; }
.case-arrow:hover { background: var(--brand); border-color: var(--brand); }
.case-arrow-prev { left: 18px; }
.case-arrow-next { right: 18px; }
.case-counter { position: absolute; right: 16px; bottom: 14px; padding: 7px 10px; background: rgba(5,8,9,.78); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.case-thumbs { display: flex; gap: 8px; padding: 10px; overflow-x: auto; background: #101719; scrollbar-color: #526165 #101719; }
.case-thumb { flex: 0 0 118px; padding: 0; overflow: hidden; background: #222c2e; border: 2px solid transparent; cursor: pointer; }
.case-thumb.is-active { border-color: #6bd4e6; }
.case-thumb img { width: 100%; height: 84px; object-fit: cover; opacity: .65; transition: opacity .2s ease; }
.case-thumb:hover img, .case-thumb.is-active img { opacity: 1; }
.case-copy { position: relative; padding: clamp(42px, 4.4vw, 72px) clamp(30px, 4vw, 62px); overflow-y: auto; background: var(--paper); color: var(--ink); }
.case-type { margin: 0 0 20px; color: var(--brand-deep); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.case-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(42px, 4.4vw, 72px); letter-spacing: -.055em; line-height: .94; }
.case-subtitle { margin: 20px 0 36px; color: var(--brand-deep); font-family: Georgia, serif; font-size: 19px; font-style: italic; line-height: 1.45; }
.case-description { padding-top: 30px; border-top: 1px solid var(--line); }
.case-description p { margin: 0 0 18px; color: #465052; font-size: 15px; line-height: 1.76; }
.case-close { position: fixed; z-index: 12; top: 24px; right: 24px; width: 48px; height: 48px; color: var(--white); background: rgba(0,0,0,.78); border: 1px solid rgba(255,255,255,.38); border-radius: 50%; cursor: pointer; font-size: 28px; }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  :root { --page: calc(100vw - 36px); }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 44px 2vw 10px; }
  .hero-visual { min-height: 70svh; }
  .about { grid-template-columns: 1fr; align-items: start; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .clients { grid-template-columns: 1fr; }
  .clients-copy { padding-right: max(24px, calc((100vw - var(--page)) / 2)); }
  .logo-grid { grid-template-columns: repeat(6, 1fr); }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .case-layout { grid-template-columns: 1.15fr .85fr; }
}

@media (max-width: 760px) {
  :root { --page: calc(100vw - 24px); }
  .site-header { top: 8px; min-height: 64px; padding: 7px 9px 7px 12px; background: rgba(255,255,255,.94); border-color: rgba(17,23,25,.08); backdrop-filter: blur(14px); }
  .brand img { width: 130px; }
  .menu-toggle { width: 46px; height: 46px; padding: 0 12px; display: grid; align-content: center; gap: 7px; background: var(--ink); border: 0; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 100%; height: 2px; background: var(--white); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 80px 12px auto; padding: 28px; display: grid; gap: 6px; background: var(--ink); box-shadow: 0 30px 80px rgba(0,0,0,.2); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .25s ease, transform .25s ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { padding: 15px 4px; color: var(--white); font-size: 20px; border-bottom: 1px solid rgba(255,255,255,.13); }
  .site-nav .nav-cta { margin-top: 10px; text-align: center; background: var(--brand); border: 0; }
  .hero { padding-top: 94px; gap: 18px; }
  .hero-copy { padding: 38px 4px 18px; }
  .hero h1 { font-size: clamp(51px, 16vw, 82px); }
  .hero-lead { margin: 25px 0; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-visual { min-height: 64svh; }
  .hero-badge { top: 16px; right: 16px; width: 112px; height: 112px; }
  .hero-badge span { font-size: 14px; }
  .hero-badge strong { font-size: 12px; }
  .hero-caption { right: 16px; bottom: 16px; left: 16px; }
  .hero-caption strong { font-size: 12px; }
  .signal-strip { grid-template-columns: 1fr; }
  .signal-strip p { min-height: 118px; padding: 24px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .section { padding: 100px 0; }
  .section-index { top: 28px; }
  .section-heading h2, .about .section-heading h2 { font-size: clamp(45px, 14vw, 72px); }
  .about-copy .lead { font-size: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .work { padding-top: 100px; padding-right: 12px; padding-left: 12px; }
  .work-intro { align-items: start; flex-direction: column; margin-bottom: 44px; }
  .filter-bar { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .filter-bar button { white-space: nowrap; }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 310px; }
  .project-wide { grid-column: auto; }
  .project-tall { grid-row: auto; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid img { height: 118px; padding: 28px; }
  .press .section-heading h2 { font-size: clamp(42px, 12vw, 66px); }
  .press-grid { grid-template-columns: 1fr; }
  .nyxmag-feature { grid-template-columns: 1fr; min-height: 0; }
  .nyxmag-feature-media { min-height: 280px; }
  .nyxmag-feature-copy { padding: 34px 24px 38px; }
  .nyxmag-feature-copy strong { font-size: 60px; }
  .nyxmag-feature-copy em { margin-top: 28px; }
  .press-card { grid-template-columns: 35% 1fr; grid-template-rows: none; min-height: 210px; }
  .press-card span { padding: 20px 17px; }
  .press-card strong { margin: 18px 0; font-size: 21px; }
  .contact { min-height: 760px; grid-template-columns: 1fr; align-content: end; gap: 52px; }
  .contact h2 { font-size: clamp(48px, 14vw, 76px); }
  .contact-orbit { width: 180px; height: 180px; top: 54px; right: -35px; }
  .contact-meta { padding: 26px; }
  .site-footer { padding-top: 38px; padding-bottom: 38px; align-items: flex-start; flex-direction: column; }
  .case-dialog { width: 100vw; height: 100dvh; }
  .case-layout { grid-template-columns: 1fr; grid-template-rows: minmax(58dvh, 1fr) auto; overflow-y: auto; }
  .case-gallery { min-height: 58dvh; grid-template-rows: minmax(0, 1fr) 88px; }
  .case-thumb { flex-basis: 92px; }
  .case-thumb img { height: 64px; }
  .case-copy { overflow: visible; padding: 42px 24px 70px; }
  .case-copy h2 { font-size: clamp(42px, 13vw, 66px); }
  .case-close { top: 12px; right: 12px; }
}

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