/* Sazu Fabrication — 2026 agency-grade experiential studio */
:root {
  --bone: #F5F3EF;
  --ink: #111111;
  --white: #ffffff;
  --rare: #C0190E;
  --rare-hover: #9E140B;
  --muted: #5c5a56;
  --line: rgba(17, 17, 17, 0.09);
  --line-strong: rgba(17, 17, 17, 0.16);
  --font: "Instrument Sans", system-ui, sans-serif;
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
  --max: 74rem;
  --pad: clamp(1.35rem, 4.2vw, 2.75rem);
  --section-y: clamp(4.5rem, 10vw, 7.5rem);
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--rare); }
:focus-visible { outline: 2px solid var(--rare); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(245, 243, 239, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(245, 243, 239, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-link:hover { color: var(--ink); opacity: 0.85; }
.logo-link img,
.logo-fox {
  width: auto;
  height: 22px;
}
.logo-fox { height: 22px; width: auto; }
.logo-word {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.15;
}
.logo-word span { display: block; font-weight: 500; opacity: 0.55; letter-spacing: 0.12em; }

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.75rem;
}
.nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.72;
  transition: opacity 0.2s;
}
.nav a:hover,
.nav a[aria-current="page"] { opacity: 1; color: var(--ink); }
.nav .btn { opacity: 1; }

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 1.5px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--pad) 1.5rem;
    background: var(--bone);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    opacity: 1;
    font-size: 1.05rem;
  }
  .nav .btn { margin-top: 1rem; text-align: center; border: 0; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s, border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--rare);
  color: var(--white);
  border-color: var(--rare);
}
.btn-primary:hover {
  background: var(--rare-hover);
  border-color: var(--rare-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(192, 25, 14, 0.22);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(17,17,17,0.03);
}
.btn-ink {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-ink:hover { background: #000; color: var(--white); }
.btn-lg {
  font-size: 1.05rem;
  padding: 1rem 1.85rem;
}
.btn-xl {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  padding: 1.15rem 2.25rem;
  letter-spacing: -0.02em;
}
.btn-nav {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.link-arrow {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 0.1rem;
}
.link-arrow:hover { color: var(--rare); border-color: var(--rare); }

/* —— Type —— */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.italic-accent {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
}
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.section-head {
  max-width: 38rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 1rem;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 34rem;
}

/* —— Hero —— */
.hero {
  padding: clamp(3.25rem, 9vw, 6.75rem) 0 clamp(2.25rem, 5vw, 3.75rem);
  position: relative;
  overflow: hidden;
}
.hero-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.75rem;
}
.hero h1 {
  font-size: clamp(3.35rem, 11.5vw, 7.75rem);
  font-weight: 560;
  letter-spacing: -0.048em;
  line-height: 0.94;
  margin: 0 0 1.65rem;
  max-width: 14ch;
}
.hero h1 .em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.45;
  color: var(--muted);
  max-width: 32rem;
  margin: 0 0 2.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
}

/* Quiet proof */
.proof-quiet {
  padding: 1.35rem 0 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-quiet p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  letter-spacing: -0.01em;
}
.proof-quiet strong {
  color: var(--ink);
  font-weight: 600;
}
.proof-quiet .sep {
  margin: 0 0.65rem;
  opacity: 0.35;
}

/* —— Sections —— */
section { padding: var(--section-y) 0; }
.section-white { background: var(--white); }
.section-ink {
  background: var(--ink);
  color: var(--white);
}
.section-ink .section-label,
.section-ink .section-head p,
.section-ink .muted { color: rgba(255,255,255,0.55); }
.section-ink a:not(.btn) { color: var(--white); }

/* —— Capability / work panels —— */
.panel-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.panel {
  grid-column: span 4;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 22rem;
  transition: border-color 0.25s, transform 0.35s var(--ease);
}
.panel:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.panel-visual {
  flex: 1;
  min-height: 14rem;
  position: relative;
  overflow: hidden;
}
.panel-caption {
  padding: 1.35rem 1.4rem 1.5rem;
  border-top: 1px solid var(--line);
}
.panel-caption h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.panel-caption p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}
.panel-wide { grid-column: span 8; }
.panel-tall { min-height: 28rem; }
.panel-tall .panel-visual { min-height: 18rem; }

@media (max-width: 900px) {
  .panel, .panel-wide { grid-column: span 6; }
}
@media (max-width: 560px) {
  .panel, .panel-wide { grid-column: span 12; min-height: 18rem; }
}

/* —— Process editorial —— */
.process-editorial {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-row {
  display: grid;
  grid-template-columns: 5rem 1fr 1.4fr;
  gap: 1.5rem 2rem;
  padding: 1.85rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.process-row .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rare);
  font-weight: 400;
}
.process-row h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.process-row p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}
@media (max-width: 700px) {
  .process-row {
    grid-template-columns: 3rem 1fr;
    gap: 0.35rem 1rem;
  }
  .process-row p { grid-column: 2; }
}

/* —— CTA band —— */
.cta-band {
  text-align: left;
}
.cta-band h2 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 1rem;
  max-width: 16ch;
}
.cta-band p {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 28rem;
}
.cta-band .hero-actions { gap: 0.85rem; }

/* —— Page hero —— */
.page-hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0 0 1.25rem;
  max-width: 12ch;
}
.page-hero .lede {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 36rem;
  margin: 0;
  line-height: 1.45;
}

/* —— Services —— */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.svc {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.svc:nth-child(odd) { padding-right: 2rem; border-right: 1px solid var(--line); }
.svc:nth-child(even) { padding-left: 2rem; }
.svc-mark {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--rare);
  flex-shrink: 0;
}
.svc h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.svc p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
@media (max-width: 720px) {
  .services-list { grid-template-columns: 1fr; }
  .svc:nth-child(odd),
  .svc:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }
}

.materials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.materials li {
  padding: 0.55rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* —— About —— */
.about-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.prose h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}
.prose p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 1.15rem;
  max-width: 38rem;
}
.prose a { color: var(--ink); font-weight: 500; }
.pull-quote {
  margin: 2.5rem 0 0;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}
.pull-quote p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5rem;
  max-width: 12ch;
}
.pull-quote span {
  font-family: var(--font);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.why-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.why-list li:first-child { border-top: 1px solid var(--line); }
.why-list .tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rare);
  margin-bottom: 0.4rem;
}
.why-list strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.why-list span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.ops-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  padding: 2rem 0 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--muted);
}
.ops-line strong { color: var(--ink); font-weight: 600; }

@media (max-width: 800px) {
  .about-split { grid-template-columns: 1fr; }
}

/* —— Bid —— */
.bid-reassure {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 2.5rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.bid-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.bid-aside h2 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}
.bid-aside > p {
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-size: 1rem;
}
.bid-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bid-aside li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
  padding-left: 1.25rem;
  position: relative;
}
.bid-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 6px;
  height: 6px;
  background: var(--rare);
  border-radius: 50%;
}
.bid-aside .muted { color: var(--muted); }
.bid-aside a { font-weight: 600; color: var(--ink); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.form-card h2 {
  margin: 0 0 1.5rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}
.field .req { color: var(--rare); }
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--line-strong);
  background: var(--bone);
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--white);
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 1.25em;
}
.form-status.is-visible { color: var(--ink); }
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}
.trust-chips li {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  background: var(--bone);
  color: var(--muted);
}
@media (max-width: 800px) {
  .bid-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 3.5rem 0 2rem;
  margin-top: 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer-brand img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}
.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.footer-brand span {
  font-size: 0.8rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 500;
}
.footer-bottom a:hover { color: var(--white); }

/* —— Reveal —— */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}
.js .reveal-delay-1 { transition-delay: 0.08s; }
.js .reveal-delay-2 { transition-delay: 0.16s; }
.js .reveal-delay-3 { transition-delay: 0.24s; }
.js .reveal-delay-4 { transition-delay: 0.32s; }

.mt-2 { margin-top: 2rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* —— Beauty upgrades 2026 —— */
.btn-ghost-on-ink {
  border-color: rgba(255,255,255,0.28) !important;
  color: #fff !important;
}
.btn-ghost-on-ink:hover {
  border-color: #fff !important;
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
}

.section-soft {
  background: linear-gradient(180deg, var(--white) 0%, #faf9f6 55%, var(--bone) 100%);
}

.hero-strip {
  padding: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  margin-top: -0.25rem;
}
.hero-strip-track {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 0.55rem;
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}
.hero-strip-item {
  margin: 0;
  overflow: hidden;
  background: #e8e4dc;
  aspect-ratio: 4 / 3;
  position: relative;
}
.hero-strip-feature {
  aspect-ratio: 3 / 4;
}
.hero-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}
.hero-strip-item:hover img {
  transform: scale(1.03);
}
@media (max-width: 800px) {
  .hero-strip-track {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }
  .hero-strip-feature {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
    max-height: 22rem;
  }
}

/* Editorial photo grid */
.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.15rem 1.25rem;
}
.ed-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.ed-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
}
.ed-feature {
  grid-row: span 2;
}
.ed-media {
  display: block;
  overflow: hidden;
  background: #e4e0d8;
  flex: 1;
  min-height: 14rem;
  text-decoration: none;
}
.ed-feature .ed-media {
  min-height: 28rem;
}
.ed-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
}
.ed-card:hover .ed-media img {
  transform: scale(1.035);
}
.ed-caption {
  padding: 1.4rem 1.45rem 1.55rem;
  border-top: 1px solid var(--line);
}
.ed-caption h3 {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.022em;
}
.ed-caption p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 820px) {
  .editorial-grid {
    grid-template-columns: 1fr;
  }
  .ed-feature { grid-row: auto; }
  .ed-feature .ed-media { min-height: 22rem; }
}

.nda-note {
  margin: 2.25rem 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36rem;
  line-height: 1.5;
}
.nda-note strong { color: var(--ink); font-weight: 600; }

/* Work masonry */
.work-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem 1.15rem;
}
.work-piece {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.work-piece:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.055);
}
.work-piece-tall {
  grid-column: span 6;
}
.work-media {
  overflow: hidden;
  background: #e4e0d8;
  aspect-ratio: 3 / 2;
}
.work-piece-tall .work-media {
  aspect-ratio: 3 / 4;
  min-height: 22rem;
  max-height: 34rem;
}
.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
}
.work-piece:hover .work-media img {
  transform: scale(1.03);
}
.work-meta {
  padding: 1.35rem 1.4rem 1.5rem;
  border-top: 1px solid var(--line);
}
.work-meta h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.022em;
}
.work-meta p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .work-piece,
  .work-piece-tall { grid-column: span 12; grid-row: auto; }
  .work-piece-tall .work-media { min-height: 20rem; aspect-ratio: 4 / 5; }
}

/* Softer process + page hero optical margins */
.process-row {
  padding: 2rem 0;
  transition: background 0.3s;
}
.process-row:hover .num { opacity: 1; }
.page-hero {
  padding: clamp(3.25rem, 8vw, 5.75rem) 0 clamp(2.75rem, 5.5vw, 3.75rem);
}
.page-hero h1 {
  letter-spacing: -0.042em;
}
.section-head h2 {
  letter-spacing: -0.038em;
}
.proof-quiet {
  padding: 1.45rem 0 1.55rem;
  background: transparent;
}
.form-card {
  box-shadow: 0 1px 0 rgba(17,17,17,0.03), 0 20px 50px rgba(17,17,17,0.04);
  transition: box-shadow 0.35s var(--ease);
}
.form-card:hover {
  box-shadow: 0 1px 0 rgba(17,17,17,0.03), 0 24px 56px rgba(17,17,17,0.055);
}
.field input:hover,
.field textarea:hover {
  border-color: rgba(17,17,17,0.28);
}
.cta-band {
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 12% 80%, rgba(192,25,14,0.18), transparent 55%);
  pointer-events: none;
}
.footer-brand img {
  width: 28px;
  height: 28px;
}
.link-arrow {
  transition: color 0.2s, border-color 0.2s, letter-spacing 0.25s;
}
.link-arrow:hover {
  letter-spacing: 0.01em;
}
