:root {
  --ink: #000000;
  --paper: #ffffff;
  --muted: rgba(0, 0, 0, 0.66);
  --line: rgba(0, 0, 0, 0.34);
  --soft-line: rgba(0, 0, 0, 0.16);
  --sans: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --editorial-sans: "Arial Black", "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --editorial-serif: "Bodoni 72", Didot, Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --photo-filter: grayscale(1) contrast(1.18) brightness(1.02);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}

body.is-reduced-motion *,
body.is-reduced-motion *::before,
body.is-reduced-motion *::after {
  animation-duration: 0.001ms !important;
  scroll-behavior: auto !important;
  transition-duration: 0.001ms !important;
}

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

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

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

.page {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 78px;
  padding: 18px 44px;
  background: rgba(255, 255, 255, 0);
  color: var(--ink);
  transition: background 500ms ease, border-color 500ms ease, box-shadow 500ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: 188px;
  min-height: 46px;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  font-size: 0.78rem;
  line-height: 1;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 12px 0;
  color: rgba(0, 0, 0, 0.78);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.section-pad {
  padding: 9.5rem max(28px, 6vw);
}

.editorial-site > section {
  scroll-margin-top: 90px;
}

.eyebrow {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.lead {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.copy-line {
  display: block;
}

h1,
h2 {
  text-wrap: balance;
}

[data-reveal],
[data-slide] {
  opacity: 0;
  transition: opacity 1200ms var(--ease), transform 1200ms var(--ease);
  will-change: opacity, transform;
}

[data-reveal] {
  transform: translate3d(0, calc(28px + var(--parallax-y, 0px)), 0);
}

[data-slide] {
  transform: translate3d(-48px, var(--parallax-y, 0px), 0);
}

[data-reveal].is-visible,
[data-slide].is-visible {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

[data-parallax] {
  will-change: transform;
}

[data-parallax]:not([data-reveal]):not([data-slide]) {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.editorial-site {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.editorial-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 4vw;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 10rem;
  padding-bottom: 7rem;
}

.editorial-hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 1px;
  background: rgba(0, 0, 0, 0.22);
  content: "";
}

.editorial-title {
  position: relative;
  z-index: 2;
}

.editorial-title h1 {
  max-width: 900px;
  margin: 0 0 2rem;
  font-family: var(--editorial-sans);
  font-size: 7.35rem;
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.editorial-collage {
  position: relative;
  min-height: 720px;
}

.collage-img {
  position: absolute;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  filter: var(--photo-filter);
}

.collage-img-large {
  top: 38px;
  right: 12%;
  width: 44%;
  height: 76%;
}

.collage-img-small {
  top: 0;
  left: 6%;
  width: 36%;
  height: 36%;
}

.collage-img-wide {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 31%;
}

.magazine-layout {
  position: relative;
  display: grid;
  gap: 8rem;
  padding-top: 6rem;
}

.vertical-note {
  position: absolute;
  top: 7rem;
  right: max(28px, 6vw);
  margin: 0;
  color: rgba(0, 0, 0, 0.5);
  font-family: var(--editorial-serif);
  font-size: 0.86rem;
  line-height: 1.6;
  writing-mode: vertical-rl;
}

.magazine-block {
  position: relative;
  display: grid;
  gap: 4rem;
  align-items: end;
  border-top: 1px solid rgba(0, 0, 0, 0.42);
  padding-top: 2.2rem;
}

.magazine-block-left {
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 0.58fr);
  margin-right: 12vw;
}

.magazine-block-right {
  grid-template-columns: minmax(260px, 0.58fr) minmax(280px, 0.7fr);
  margin-left: 13vw;
}

.issue-number {
  position: absolute;
  top: -2rem;
  left: 0;
  color: rgba(0, 0, 0, 0.54);
  font-family: var(--editorial-serif);
  font-size: 0.95rem;
}

.magazine-block figure {
  margin: 0;
  overflow: hidden;
}

.magazine-block img {
  width: 100%;
  height: 560px;
  filter: var(--photo-filter);
  object-fit: cover;
}

.magazine-block-right img {
  height: 680px;
}

.magazine-block h2 {
  max-width: 620px;
  margin: 0 0 1.2rem;
  font-family: var(--editorial-serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.12;
}

.magazine-block p {
  max-width: 620px;
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
}

.editorial-services {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.service-line {
  display: grid;
  grid-template-columns: 80px minmax(260px, 0.78fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding: 2.25rem 0;
}

.service-line:last-child {
  border-bottom: 1px solid var(--line);
}

.service-line span {
  color: rgba(0, 0, 0, 0.5);
  font-family: var(--editorial-serif);
}

.service-line strong {
  font-family: var(--editorial-sans);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-line p {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
}

.editorial-vision {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 5vw;
  align-items: start;
  background: var(--ink);
  color: var(--paper);
}

.vision-label {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--editorial-serif);
}

.vision-statement {
  max-width: 980px;
  margin: 0;
  font-family: var(--editorial-serif);
  font-size: 4.85rem;
  font-weight: 400;
  line-height: 1.06;
}

.vision-text {
  max-width: 780px;
  margin: 2.2rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.vision-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 1.4rem;
}

.vision-points span {
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--editorial-serif);
  font-size: 1.1rem;
}

.editorial-values {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(320px, 1fr);
  gap: 7vw;
  align-items: start;
  border-top: 1px solid var(--line);
  background: #f6f6f2;
}

.values-heading h2 {
  max-width: 760px;
  margin: 0 0 2rem;
  font-family: var(--editorial-serif);
  font-size: 4.1rem;
  font-weight: 400;
  line-height: 1.04;
}

.values-list {
  border-top: 1px solid var(--ink);
}

.value-line {
  display: grid;
  grid-template-columns: 56px minmax(180px, 0.72fr) minmax(240px, 1fr);
  gap: 1.75rem;
  align-items: baseline;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  padding: 2rem 0;
}

.value-line span {
  color: rgba(0, 0, 0, 0.48);
  font-family: var(--editorial-serif);
}

.value-line h3 {
  margin: 0;
  font-family: var(--editorial-serif);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.1;
}

.value-line p {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
}

.company-profile {
  border-top: 1px solid var(--line);
  background: #f8f8f5;
}

.company-kicker {
  margin: 0 0 1.2rem;
  color: rgba(0, 0, 0, 0.54);
  font-size: 0.78rem;
}

.company-masthead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  gap: 3rem;
  align-items: end;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 1.7rem 0 2rem;
}

.company-masthead h2 {
  margin: 0;
  font-family: var(--editorial-sans);
  font-size: clamp(4.2rem, 16vw, 13rem);
  font-weight: 900;
  line-height: 0.8;
}

.company-masthead p {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  font-family: var(--editorial-serif);
  font-size: 1rem;
  line-height: 1.5;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 1fr);
  gap: 7vw;
  align-items: start;
  padding-top: 4rem;
}

.company-intro {
  max-width: 520px;
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  font-family: var(--editorial-serif);
  font-size: 1.35rem;
  line-height: 1.7;
}

.company-list {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.company-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
  padding: 1.65rem 0;
}

.company-list dt {
  color: rgba(0, 0, 0, 0.54);
  font-family: var(--editorial-serif);
}

.company-list dd {
  margin: 0;
  color: rgba(0, 0, 0, 0.74);
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(320px, 0.9fr);
  gap: 7vw;
  align-items: start;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.contact-copy h2 {
  max-width: 720px;
  margin: 0 0 2rem;
  font-family: var(--editorial-serif);
  font-size: 4.55rem;
  font-weight: 400;
  line-height: 1.02;
}

.contact-copy p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.5rem;
  border-top: 1px solid var(--ink);
  padding-top: 2rem;
}

.form-row {
  display: grid;
  gap: 0.65rem;
}

.form-row-wide,
.form-action {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row label {
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.78rem;
  line-height: 1.4;
}

.form-row label span {
  margin-left: 0.5rem;
  color: var(--ink);
  font-size: 0.7rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  border-radius: 0;
  padding: 0.2rem 0 0.85rem;
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 260ms ease;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-bottom-color: var(--ink);
}

.form-action {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  padding-top: 1.65rem;
}

.form-action button {
  min-width: 180px;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 0.9rem 1.35rem;
  background: var(--ink);
  color: var(--paper);
  font: inherit;
  line-height: 1;
  cursor: pointer;
  transition: background 320ms var(--ease), color 320ms var(--ease), transform 320ms var(--ease);
}

.form-action button:hover,
.form-action button:focus-visible {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

.form-action button:disabled {
  cursor: progress;
  opacity: 0.58;
  transform: none;
}

.form-status {
  min-height: 1.8em;
  margin: 0;
  color: rgba(0, 0, 0, 0.64);
  font-size: 0.9rem;
  text-align: right;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 4.5rem max(28px, 6vw);
  background: var(--paper);
}

.footer-logo {
  display: inline-flex;
  width: 170px;
  margin-bottom: 2.5rem;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.5rem;
  margin-bottom: 2.4rem;
  font-size: 0.78rem;
}

.footer-nav a {
  color: rgba(0, 0, 0, 0.66);
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.text-link {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.site-footer p {
  margin: 0;
  color: rgba(0, 0, 0, 0.48);
  font-size: 0.78rem;
}

.page-policy .site-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.policy-main {
  background: var(--paper);
}

.policy-hero {
  padding-top: 12rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--line);
}

.policy-hero h1 {
  max-width: 980px;
  margin: 0 0 2rem;
  font-family: var(--editorial-serif);
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.02;
}

.policy-hero p,
.policy-content p {
  max-width: 820px;
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
}

.policy-content {
  display: grid;
  gap: 0;
  padding-top: 5rem;
}

.policy-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(280px, 1fr);
  gap: 5vw;
  border-top: 1px solid rgba(0, 0, 0, 0.24);
  padding: 2rem 0;
}

.policy-block:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
}

.policy-block h2 {
  margin: 0;
  font-family: var(--editorial-serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 1080px) {
  .site-header {
    padding-right: 32px;
    padding-left: 32px;
  }

  .editorial-title h1 {
    font-size: 5.4rem;
  }

  .vision-statement,
  .values-heading h2,
  .policy-hero h1,
  .contact-copy h2 {
    font-size: 3.7rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    min-height: 94px;
    padding: 14px 24px 16px;
  }

  .brand-link {
    width: 156px;
    min-height: 40px;
  }

  .site-nav {
    max-width: 280px;
    gap: 10px 16px;
    font-size: 0.74rem;
  }

  .section-pad {
    padding: 7rem 28px;
  }

  .editorial-site > section {
    scroll-margin-top: 100px;
  }

  .editorial-hero,
  .editorial-vision,
  .editorial-values,
  .contact-cta {
    grid-template-columns: 1fr;
  }

  .company-layout,
  .company-masthead {
    grid-template-columns: 1fr;
  }

  .editorial-hero {
    min-height: auto;
    padding-top: 10.5rem;
  }

  .editorial-hero::before {
    left: auto;
    right: 28px;
  }

  .editorial-title h1 {
    font-size: 4rem;
  }

  .editorial-collage {
    min-height: 560px;
  }

  .collage-img-large {
    right: 5%;
    width: 50%;
    height: 78%;
  }

  .collage-img-small {
    left: 0;
    width: 42%;
  }

  .collage-img-wide {
    width: 68%;
  }

  .magazine-layout {
    gap: 6rem;
  }

  .vertical-note {
    position: static;
    writing-mode: horizontal-tb;
  }

  .magazine-block-left,
  .magazine-block-right {
    grid-template-columns: 1fr;
    margin-right: 0;
    margin-left: 0;
  }

  .magazine-block-right div {
    order: 2;
  }

  .magazine-block-right figure {
    order: 1;
  }

  .magazine-block img,
  .magazine-block-right img {
    height: 520px;
  }

  .magazine-block h2 {
    font-size: 2.35rem;
  }

  .service-line {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .service-line strong {
    font-size: 1.85rem;
  }

  .editorial-vision {
    gap: 1.5rem;
  }

  .vision-statement,
  .values-heading h2,
  .policy-hero h1,
  .contact-copy h2 {
    font-size: 3rem;
  }

  .value-line,
  .policy-block {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .company-list div {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 14px 20px 15px;
  }

  .brand-link {
    width: 148px;
  }

  .site-nav {
    justify-content: flex-start;
    max-width: none;
    gap: 8px 13px;
  }

  .section-pad {
    padding-top: 6rem;
    padding-right: 20px;
    padding-bottom: 6rem;
    padding-left: 20px;
  }

  .editorial-site > section {
    scroll-margin-top: 124px;
  }

  .editorial-hero {
    padding-top: 9.5rem;
  }

  .editorial-title h1 {
    font-size: 2.82rem;
  }

  .lead {
    font-size: 1rem;
  }

  .editorial-collage {
    min-height: 480px;
  }

  .magazine-block {
    gap: 2rem;
  }

  .magazine-block img,
  .magazine-block-right img {
    height: 430px;
  }

  .service-line strong {
    font-size: 1.7rem;
  }

  .vision-statement,
  .values-heading h2,
  .policy-hero h1,
  .contact-copy h2 {
    font-size: 2.35rem;
  }

  .vision-text {
    margin-top: 1.4rem;
  }

  .vision-points {
    margin-top: 2.2rem;
  }

  .company-layout {
    padding-top: 2.4rem;
  }

  .company-intro {
    font-size: 1.12rem;
  }

  .value-line h3 {
    font-size: 1.55rem;
  }

  .policy-hero {
    padding-top: 10rem;
  }

  .footer-logo {
    width: 150px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 1.65rem;
  }

  .form-action {
    align-items: stretch;
  }

  .form-action button {
    width: 100%;
  }

  .form-status {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .editorial-title h1 {
    font-size: 2.46rem;
  }

  .editorial-collage {
    min-height: 420px;
  }

  .magazine-block img,
  .magazine-block-right img {
    height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
