/* ==========================================================================
   FORM — Site Styles
   Shared across index.html, about.html, contact.html
   ========================================================================== */

:root {
  /* Color */
  --paper: #F4F1E8;
  --paper-deep: #ECE7D9;
  --ink: #0E0E0D;
  --ink-soft: #1F1F1D;
  --ink-mute: #5A5852;
  --rule: rgba(14, 14, 13, 0.10);
  --rule-strong: rgba(14, 14, 13, 0.30);
  --rule-dark: rgba(244, 241, 232, 0.14);
  --accent: #C1440E;

  /* Type */
  --serif: 'Newsreader', 'Reckless Neue', Georgia, serif;
  --sans: 'Geist', -apple-system, 'Helvetica Neue', sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Layout */
  --gutter: clamp(20px, 4vw, 48px);
  --max: 1320px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}

::selection { background: var(--ink); color: var(--paper); }
a { color: inherit; text-decoration: none; }

/* ==========================================================================
   ACCESSIBILITY UTILITIES
   ========================================================================== */

/* Skip-to-content link — invisible until focused via Tab key */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 1000;
  transform: translateY(-110%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* Visually-hidden but available to screen readers */
.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;
}

/* Stronger keyboard focus rings — visible only for keyboard users, not mouse */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ==========================================================================
   TYPOGRAPHY POLISH
   text-wrap: pretty avoids last-line orphans (one-word widows) in body copy.
   text-wrap: balance evens out line lengths in short multi-line headings.
   Both have wide modern browser support and degrade gracefully.
   ========================================================================== */
p, .pull, .lede, .footer-tagline, .work-cell .nm, .cap-row .desc {
  text-wrap: pretty;
}
h1, h2, h3, .work-cell .nm, .slide-h, .pillar h3 {
  text-wrap: balance;
}


/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 18px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(244, 241, 232, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.over-dark {
  background: rgba(14, 14, 13, 0.85);
  border-bottom-color: rgba(244, 241, 232, 0.10);
}
.nav-mark {
  height: 56px;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.nav-mark:hover { opacity: 0.7; }
.nav-mark img {
  height: 100%;
  width: auto;
  display: block;
}
/* Two image variants — dark/light. CSS toggles which is shown. */
.nav.over-dark .nav-mark .light { display: block; }
.nav.over-dark .nav-mark .dark { display: none; }
.nav-mark .light { display: none; }
.nav-mark .dark { display: block; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.3s;
}
.nav.over-dark .nav-links { color: var(--paper); }
.nav-link {
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-link:hover, .nav-link.active { opacity: 1; }

@media (max-width: 720px) {
  .nav-links { gap: 18px; }
  .nav-link.hide-mobile { display: none; }
}


/* ==========================================================================
   HERO (homepage)
   ========================================================================== */

.hero {
  background: var(--ink);
  color: var(--paper);
  min-height: 100vh;
  padding: 120px var(--gutter) 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, 0.55);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero-meta .lbl {
  display: block;
  font-size: 9px;
  opacity: 0.6;
  margin-bottom: 4px;
}
.hero-meta .val { color: var(--paper); opacity: 0.85; }

.hero-body {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  flex: 1;
  padding: 60px 0;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 82px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  text-wrap: nowrap;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--paper);
}
.hero .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: rgba(244, 241, 232, 0.75);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244, 241, 232, 0.4);
  transition: border-color 0.2s, gap 0.2s;
}
.hero-cta:hover {
  border-color: var(--paper);
  gap: 14px;
}

.hero-feature {
  aspect-ratio: 4/5;
  background: rgba(244, 241, 232, 0.04);
  border: 1px solid rgba(244, 241, 232, 0.14);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}
.hero-feature:hover { border-color: rgba(244, 241, 232, 0.28); }
.hero-feature .lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to top right, transparent calc(50% - 0.5px), rgba(244, 241, 232, 0.10) calc(50% - 0.5px), rgba(244, 241, 232, 0.10) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(to top left, transparent calc(50% - 0.5px), rgba(244, 241, 232, 0.10) calc(50% - 0.5px), rgba(244, 241, 232, 0.10) calc(50% + 0.5px), transparent calc(50% + 0.5px));
}
.hero-feature .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(244, 241, 232, 0.45);
  position: relative;
  z-index: 2;
}
.hero-feature .num-tl {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(244, 241, 232, 0.5);
  z-index: 2;
}
.hero-feature .num-br {
  position: absolute;
  bottom: 14px; right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(244, 241, 232, 0.5);
  z-index: 2;
}

/* Video variant — when a real film is in the hero slot */
.hero-feature.has-video {
  background: var(--ink);
  cursor: default;
}
.hero-feature.has-video:hover { border-color: rgba(244, 241, 232, 0.14); }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
/* Subtle vignette so corner labels stay readable over busy footage */
.hero-feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(14, 14, 13, 0.35) 0%,
      rgba(14, 14, 13, 0) 18%,
      rgba(14, 14, 13, 0) 82%,
      rgba(14, 14, 13, 0.35) 100%);
}

.hero-foot {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 241, 232, 0.10);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, 0.45);
}

@media (max-width: 900px) {
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-body { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
  .hero-feature { aspect-ratio: 5/4; }
  .hero-foot { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero h1 { text-wrap: balance; }
}


/* ==========================================================================
   PAGE HEADER (about, contact)
   ========================================================================== */

.page-header {
  background: var(--ink);
  color: var(--paper);
  padding: 180px var(--gutter) 100px;
  position: relative;
}
.page-header-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.page-header .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, 0.55);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-header .label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--paper); opacity: 0.5;
}
.page-header h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 1080px;
}
.page-header h1 em {
  font-style: italic;
  font-weight: 400;
}
.page-header .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.5;
  color: rgba(244, 241, 232, 0.75);
  max-width: 720px;
}


/* ==========================================================================
   SECTION SCAFFOLDING
   ========================================================================== */

section {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
}
.container {
  max-width: var(--max);
  margin: 0 auto;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--ink); opacity: 0.4;
}


/* ==========================================================================
   MANIFESTO MARQUEE
   Single-line declarative pause between hero and intro.
   Dark continuation of the hero, then page lifts to paper.
   ========================================================================== */

.manifesto {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(100px, 16vw, 200px) var(--gutter);
  position: relative;
  overflow: hidden;
  /* Subtle vignette top and bottom to bridge the section to its neighbors. */
}
.manifesto::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(14, 14, 13, 1) 0%,
      rgba(14, 14, 13, 0) 12%,
      rgba(14, 14, 13, 0) 88%,
      rgba(14, 14, 13, 0.6) 100%);
}
.manifesto .container {
  text-align: center;
  position: relative;
  z-index: 2;
}
.manifesto-line {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 5.5vw, 90px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--paper);
  white-space: nowrap;
  /* The italic em provides the emphasis. */
}
.manifesto-line em {
  font-style: italic;
  font-weight: 400;
}


/* ==========================================================================
   INTRO BLOCK (homepage + reused on other pages)
   ========================================================================== */

.intro { background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.intro-grid h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.intro-grid h2 em { font-style: italic; }
.intro-body {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.intro-body p + p { margin-top: 18px; }
.intro-body strong { font-weight: 500; color: var(--ink); }
.intro-body em { font-family: var(--serif); font-style: italic; }

@media (max-width: 760px) {
  .intro-grid { grid-template-columns: 1fr; gap: 24px; }
}


/* ==========================================================================
   WORK GRID
   ========================================================================== */

.work {
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.work-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.work-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.work-head h2 em { font-style: italic; }
.work-head .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.work-cell {
  aspect-ratio: 4/3;
  background: var(--paper);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 32px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.work-cell:hover { transform: translateY(-2px); }
.work-cell .lines {
  position: absolute;
  inset: 1px;
  background-image:
    linear-gradient(to top right, transparent calc(50% - 0.5px), rgba(14,14,13,0.06) calc(50% - 0.5px), rgba(14,14,13,0.06) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(to top left, transparent calc(50% - 0.5px), rgba(14,14,13,0.06) calc(50% - 0.5px), rgba(14,14,13,0.06) calc(50% + 0.5px), transparent calc(50% + 0.5px));
}
.work-cell .top {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  position: relative;
  z-index: 2;
}
.work-cell .bot {
  position: relative;
  z-index: 2;
}
.work-cell .nm {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.work-cell .nm em { font-style: italic; font-weight: 400; }
.work-cell .cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.work-cell .arrow {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink-mute);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 3;
}
.work-cell:hover .arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* Embargoed/redacted variant */
.work-cell.embargoed {
  background: var(--ink);
  color: var(--paper);
  cursor: default;
}
.work-cell.embargoed:hover { transform: none; }
.work-cell.embargoed .lines {
  background-image:
    linear-gradient(to top right, transparent calc(50% - 0.5px), rgba(244,241,232,0.08) calc(50% - 0.5px), rgba(244,241,232,0.08) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(to top left, transparent calc(50% - 0.5px), rgba(244,241,232,0.08) calc(50% - 0.5px), rgba(244,241,232,0.08) calc(50% + 0.5px), transparent calc(50% + 0.5px));
}
.work-cell.embargoed .top { color: rgba(244, 241, 232, 0.5); }
.work-cell.embargoed .nm { color: rgba(244, 241, 232, 0.85); }
.work-cell.embargoed .nm em { color: rgba(244, 241, 232, 0.7); }
.work-cell.embargoed .cat { color: rgba(244, 241, 232, 0.5); }
.work-cell.embargoed .stamp {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  border: 1px solid var(--accent);
  padding: 8px 18px;
  z-index: 2;
}

/* Image variant — for tiles with a real photo/render */
.work-cell.has-image {
  background: var(--ink);
  cursor: default;
  overflow: hidden;
  color: var(--paper);
}
.work-cell.has-image:hover { transform: none; }
.work-cell.has-image .work-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.work-cell.has-image:hover .work-image {
  transform: scale(1.02);
}
/* Gradient overlay so the title/category stay readable over any image */
.work-cell.has-image .image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(14,14,13,0.35) 0%, rgba(14,14,13,0) 25%, rgba(14,14,13,0) 55%, rgba(14,14,13,0.75) 100%);
  pointer-events: none;
}
.work-cell.has-image .top,
.work-cell.has-image .bot {
  z-index: 2;
}
.work-cell.has-image .top { color: rgba(244, 241, 232, 0.7); }
.work-cell.has-image .nm { color: var(--paper); }
.work-cell.has-image .nm em { color: rgba(244, 241, 232, 0.85); }
.work-cell.has-image .cat { color: rgba(244, 241, 232, 0.7); }

@media (max-width: 720px) {
  .work-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   FEATURED CAMPAIGN (John Frieda)
   Vertical hero (9:16) + two stacked side pieces. A mini case study.
   ========================================================================== */

.campaign { background: var(--paper); }
.campaign-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.campaign-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.campaign-head h2 em { font-style: italic; }
.campaign-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  line-height: 1.7;
}

/* Hero (left) + side stack (right). Hero is one 9:16; side holds two pieces
   whose combined height matches the hero. */
/* Equal 3-up grid — three vertical 9:16 pieces, all the same size. */
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.campaign-cell {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--rule);
  aspect-ratio: 9 / 16;
}
.campaign-cell video,
.campaign-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tag overlay on each piece — gradient scrim + product name + JF number */
.campaign-tag {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(14,14,13,0.72) 0%, rgba(14,14,13,0) 100%);
  pointer-events: none;
}
.campaign-tag .t-name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, 0.92);
  max-width: 75%;
  line-height: 1.4;
}
.campaign-tag .t-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(244, 241, 232, 0.6);
}

@media (max-width: 720px) {
  .campaign-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 460px) {
  .campaign-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   APPROACH PILLARS
   ========================================================================== */

.approach { background: var(--paper); }
.approach h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 880px;
  margin-bottom: 56px;
}
.approach h2 em { font-style: italic; }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.pillar {
  background: var(--paper);
  padding: 40px 32px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.pillar .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.pillar h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.pillar h3 em { font-style: italic; font-weight: 400; }
.pillar p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}

@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr; }
}


/* ==========================================================================
   CAPABILITIES
   ========================================================================== */

.caps {
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.caps-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}
.caps-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.caps-head h2 em { font-style: italic; }
.caps-head p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 360px;
  line-height: 1.5;
}
.caps-list { border-top: 1px solid var(--rule); }
.cap-row {
  display: grid;
  grid-template-columns: 60px 280px 1fr 140px;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.cap-row .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}
.cap-row .nm {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.cap-row .nm em { font-style: italic; font-weight: 400; }
.cap-row .desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.cap-row .typ {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
}

@media (max-width: 900px) {
  .cap-row {
    grid-template-columns: 36px 1fr;
    gap: 12px 16px;
  }
  .cap-row .num { grid-row: 1; }
  .cap-row .nm { grid-row: 1; grid-column: 2; }
  .cap-row .desc { grid-column: 2; }
  .cap-row .typ { grid-column: 2; text-align: left; padding-top: 4px; }
}


/* ==========================================================================
   ABOUT-PAGE BLOCKS
   ========================================================================== */

/* Founder bio */
.founder { background: var(--paper); }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: stretch;
}
/* Signature statement panel — stands in for the founder portrait.
   Deep-ink field with the studio credo set large, a signature mark beneath.
   When a real portrait is shot, this can be swapped back for an image block. */
.founder-statement {
  background: var(--ink);
  border: 1px solid var(--rule-strong);
  padding: clamp(32px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  position: relative;
}
.founder-statement-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.founder-statement-quote em {
  /* "stunning" — the one word that gets the accent */
  font-style: italic;
  color: var(--accent);
}
.founder-statement-mark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, 0.5);
  margin-top: 40px;
}
.founder-content h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.founder-content h2 em { font-style: italic; }
.founder-content .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.founder-content p {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.founder-content p strong { font-weight: 500; color: var(--ink); }
.founder-content p em { font-family: var(--serif); font-style: italic; }

@media (max-width: 860px) {
  .founder-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-statement { min-height: 0; }
}

/* Credit list / past work */
.credits {
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.credits h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.credits h2 em { font-style: italic; }
.credits .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.5;
}
.credits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 32px;
  border-top: 1px solid var(--rule);
}
.credit-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

@media (max-width: 760px) {
  .credits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .credits-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

.contact-section { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.contact-side h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.contact-side h3 em { font-style: italic; font-weight: 400; }
.contact-side p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.contact-side .direct {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.contact-side .direct h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.contact-side .direct a {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  display: inline-block;
}
.contact-side .direct a:hover { border-bottom-color: var(--ink); }

.contact-form .form-row {
  margin-bottom: 28px;
}
.contact-form label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.contact-form label .req { color: var(--accent); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule-strong);
  padding: 10px 0 14px;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--ink);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink-mute);
  opacity: 0.6;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}
.contact-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1.5l5 5 5-5' stroke='%230E0E0D' stroke-width='1.2' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px;
  padding-right: 24px;
}
.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-form button {
  margin-top: 12px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 18px 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.contact-form button:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
}
.contact-form .form-meta {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Form success/error states */
.form-feedback {
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid var(--rule-strong);
  display: none;
}
.form-feedback.show { display: block; }
.form-feedback.success { border-color: var(--ink); }
.form-feedback h5 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 6px;
}
.form-feedback h5 em { font-style: italic; font-weight: 400; }
.form-feedback p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row.split { grid-template-columns: 1fr; gap: 0; }
  .form-row.split .form-row-inner + .form-row-inner { margin-top: 28px; }
}


/* ==========================================================================
   CONTACT BAND (homepage CTA)
   ========================================================================== */

.contact-band {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(100px, 14vw, 160px) var(--gutter);
  text-align: center;
}
.contact-band h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 1080px;
  margin: 0 auto 36px;
}
.contact-band h2 em { font-style: italic; }
.contact-band .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(244, 241, 232, 0.7);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.5;
}
.contact-band a.link {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(244, 241, 232, 0.4);
  transition: border-color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-band a.link:hover {
  border-color: var(--paper);
  gap: 14px;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: var(--paper);
  padding: 80px var(--gutter) 32px;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
.footer-mark {
  height: 44px;
  width: auto;
  display: inline-block;
  margin-bottom: 24px;
}
.footer-mark img {
  height: 100%;
  width: auto;
  display: block;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 360px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { font-size: 14px; margin-bottom: 8px; }
.footer-col a {
  color: var(--ink-soft);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ink); }
.footer-foot {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-foot { flex-direction: column; gap: 12px; align-items: flex-start; }
}


/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
