/* =========================================================
   Studio Goons · site.css
   Self-hosted fonts: Sabon LT Std Roman + Neue Haas Unica Pro
   Brand system: #F5F0EB bg / #2C2B28 text / #1f1e1e dark blocks
   No pure black. No em dashes in copy.
   ========================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Sabon";
  src: url("/assets/fonts/SabonLTStd-Roman.woff2") format("woff2"),
       url("/assets/fonts/SabonLTStd-Roman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NeueHaasUnica";
  src: url("/assets/fonts/NeueHaasUnicaPro-Regular.woff2") format("woff2"),
       url("/assets/fonts/NeueHaasUnicaPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MinionPro";
  src: url("/assets/fonts/MinionPro-Regular.woff2") format("woff2"),
       url("/assets/fonts/MinionPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg:        #F5F0EB;
  --bg-alt:    #EFE9E1;
  --text:      #2C2B28;
  --text-mid:  #4A4A46;
  --text-soft: #8A8A84;
  --line:      #D9D2C8;
  --dark:      #1f1e1e;
  --dark-soft: #2a2928;
  --dark-text: #E8E2D7;
  --dark-mid:  #A8A197;

  --serif: "Sabon", "Sabon LT Std", Georgia, "Times New Roman", serif;
  --sans:  "NeueHaasUnica", "Neue Haas Unica", "Helvetica Neue", Arial, sans-serif;
  --editorial: "MinionPro", "Minion Pro", Georgia, serif;

  --wrap: 1320px;
  --gutter: 40px;

  --fs-display: clamp(44px, 6.8vw, 112px);
  --fs-h1:      clamp(36px, 4.6vw, 72px);
  --fs-h2:      clamp(28px, 3.2vw, 48px);
  --fs-h3:      clamp(22px, 2.2vw, 32px);
  --fs-lead:    clamp(18px, 1.4vw, 22px);
  --fs-body:    16px;
  --fs-small:   13px;
  --fs-label:   11px;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--text);
  margin: 0;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.2; }
h4 { font-size: 20px; line-height: 1.25; }

p { margin: 0 0 1em; }

.display {
  font-family: var(--serif);
  font-size: var(--fs-display);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.lead {
  font-family: var(--serif);
  font-size: var(--fs-lead);
  line-height: 1.45;
  color: var(--text-mid);
}

.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.italic { font-style: italic; }
.serif  { font-family: var(--serif); }
.sans   { font-family: var(--sans); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.section-lg { padding: 160px 0; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Nav (V1 spacing: edge-to-edge, no bottom rule, 26px vertical) ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--gutter);
  max-width: none;
  margin: 0;
}
.logo {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav-links {
  display: flex;
  gap: 36px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--text-mid);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}
.nav-cta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 1px;
  transition: opacity 0.2s var(--ease);
}
.nav-cta:hover { opacity: 0.55; }
.nav-toggle { display: none; }
.mobile-menu { display: none; }

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .nav-toggle-line {
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--text);
  }
  .nav[data-open="true"] .mobile-menu { display: block; }
  .mobile-menu {
    display: none;
    border-top: 1px solid var(--line);
    padding: 28px var(--gutter) 40px;
    background: var(--bg);
  }
  .mobile-menu a {
    display: block;
    font-family: var(--serif);
    font-size: 28px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu a:last-child { border-bottom: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  color: var(--text);
  background: transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover {
  background: var(--text);
  color: var(--bg);
}
.btn-dark {
  background: var(--text);
  color: var(--bg);
}
.btn-dark:hover {
  background: transparent;
  color: var(--text);
}
.btn-ghost {
  border-color: transparent;
  padding: 14px 0;
  border-bottom: 1px solid var(--text);
}
.btn-ghost:hover {
  background: transparent;
  color: var(--text);
  border-bottom-color: var(--text-mid);
}
.btn .arrow { display: inline-block; transform: translateY(-1px); }

/* ---------- Hero ---------- */
.hero {
  padding: 140px 0 100px;
}
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-family: var(--serif);
  font-size: var(--fs-display);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.hero .lead {
  margin-top: 36px;
  max-width: 52ch;
}
.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ---------- Entity block (first-viewport crawlable text) ---------- */
.entity {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.entity-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.entity-grid .eyebrow { grid-column: 1; }
.entity-grid .entity-body {
  grid-column: 2;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 72ch;
}
.entity-grid .entity-body p { margin-bottom: 1.1em; }
@media (max-width: 860px) {
  .entity-grid { grid-template-columns: 1fr; gap: 24px; }
  .entity-grid .eyebrow, .entity-grid .entity-body { grid-column: 1; }
}

/* ---------- Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 72px;
  align-items: end;
}
.section-head h2 { max-width: 18ch; }
.section-head .eyebrow { padding-top: 10px; }
.section-head p { color: var(--text-mid); max-width: 52ch; margin: 0; }
@media (max-width: 860px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
}

/* ---------- Work / product grid ---------- */
.grid-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 28px;
}
@media (max-width: 1000px) { .grid-works { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .grid-works { grid-template-columns: 1fr; } }

.work-card { display: block; }
.work-card-media {
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
  overflow: hidden;
  margin-bottom: 18px;
}
.work-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.work-card:hover .work-card-media img { transform: scale(1.03); }
.work-card-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}
.work-card-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}

/* ---------- Piece card (V1 editorial layout) ---------- */
.piece-item {
  display: block;
  color: var(--text);
}
.piece-item .piece-img {
  aspect-ratio: 3 / 4;
  background: var(--bg-alt);
  overflow: hidden;
  margin-bottom: 18px;
}
.piece-item .piece-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.piece-item:hover .piece-img img { transform: scale(1.03); }
.piece-tag {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 5px;
}
.piece-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.15;
  margin: 0 0 6px 0;
}
.piece-desc {
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.68;
  color: var(--text-mid);
  margin: 0;
}
.piece-price {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-mid);
  margin-top: 8px;
}

/* ---------- Minimal gallery list (typographic) ---------- */
.gallery-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  margin-top: 56px;
}
.gallery-list li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.gallery-list .g-name {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}
.gallery-list .g-loc {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-align: right;
}
@media (max-width: 600px) {
  .gallery-list li { grid-template-columns: 1fr; gap: 6px; }
  .gallery-list .g-loc { text-align: left; }
}

/* ---------- Typographic contact close ---------- */
.close-address {
  text-align: center;
  padding: 140px 0 120px;
}
.close-address .c-email {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.close-address .c-line {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 28px;
}

/* ---------- Category filter ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 72px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.filter-bar button {
  padding: 8px 14px;
  border: 1px solid transparent;
  color: var(--text-mid);
  letter-spacing: 0.14em;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.filter-bar button:hover { color: var(--text); }
.filter-bar button[aria-pressed="true"] {
  color: var(--text);
  border-color: var(--text);
}

/* ---------- Feature block (Loyola-style) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-media { aspect-ratio: 4 / 5; background: var(--bg-alt); overflow: hidden; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature h2 { margin-bottom: 24px; }
.feature-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.feature-meta dt {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 6px;
}
.feature-meta dd { margin: 0; font-size: 15px; color: var(--text); }
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- How we work / 3-card block ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.card {
  padding: 44px 36px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.card .eyebrow { margin-bottom: 22px; }
.card h3 { margin-bottom: 16px; }
.card p { color: var(--text-mid); margin-bottom: 24px; }
.card a.btn-ghost { margin-top: auto; }
@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } }

/* ---------- Collapsible piece grid ---------- */
.grid-collapsible { position: relative; }
.grid-collapsible[data-expanded="false"] .grid-works {
  max-height: 1760px;
  overflow: hidden;
}
.grid-collapsible[data-expanded="false"] .grid-fade {
  position: absolute;
  left: 0; right: 0;
  bottom: 84px;
  height: 320px;
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 55%,
    var(--bg) 92%);
  pointer-events: none;
  z-index: 1;
}
.grid-collapsible[data-expanded="true"] .grid-fade { display: none; }
.grid-expand-row {
  display: flex;
  justify-content: center;
  padding: 40px 0 16px;
  position: relative;
  z-index: 2;
}
.grid-expand-btn {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--text);
  padding: 6px 4px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  transition: opacity 0.2s var(--ease);
}
.grid-expand-btn:hover { opacity: 0.65; }

/* ---------- Edition Series collapsible ---------- */
.edition-collapsible[data-expanded="false"] .edition-push ~ .edition-push {
  display: none;
}
.edition-expand-row {
  display: flex;
  justify-content: center;
  padding: 32px 0 0;
}

/* ---------- Edition pushes (editorial rows, no cards) ---------- */
.edition-section { padding-top: 40px; padding-bottom: 40px; }
.edition-intro {
  max-width: 640px;
  margin: 0 auto 96px;
  text-align: left;
}
.edition-intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.edition-intro h2 em { font-style: italic; }
.edition-intro p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-mid);
  margin: 0;
}

.edition-push {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 88px;
  align-items: center;
  margin: 0 auto 140px;
  max-width: 1200px;
}
.edition-push:last-child { margin-bottom: 0; }
.edition-push-reverse { grid-template-columns: 1fr 1.1fr; }
.edition-push-reverse .edition-plate { order: 2; }
.edition-push-reverse .edition-body { order: 1; }

.edition-plate {
  display: block;
  color: inherit;
  text-decoration: none;
}
.edition-plate figure {
  margin: 0;
  overflow: hidden;
  background: var(--bg-alt);
}
.edition-plate img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: opacity 0.5s var(--ease), transform 0.9s var(--ease);
}
.edition-plate:hover img { opacity: 0.9; }

.edition-body { padding: 0 8px; }
.edition-body .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 22px;
}
.edition-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.edition-body p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-mid);
  margin: 0 0 30px;
}
.edition-link {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 1px;
  transition: opacity 0.2s var(--ease);
}
.edition-link:hover { opacity: 0.7; }

@media (max-width: 900px) {
  .edition-push,
  .edition-push-reverse { grid-template-columns: 1fr; gap: 36px; margin-bottom: 96px; }
  .edition-push-reverse .edition-plate { order: 0; }
  .edition-push-reverse .edition-body { order: 0; }
  .edition-intro { margin-bottom: 64px; }
}

/* ---------- Principles ---------- */
.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
  counter-reset: principle;
}
.principle { counter-increment: principle; padding-top: 28px; border-top: 1px solid var(--line); }
.principle h3 {
  font-size: 26px;
  margin-bottom: 14px;
  display: flex;
  gap: 20px;
}
.principle h3::before {
  content: counter(principle, upper-roman);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-soft);
  padding-top: 8px;
}
.principle p { color: var(--text-mid); margin: 0; }
@media (max-width: 900px) { .principles { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Press bar ---------- */
.press-bar {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.press-bar .eyebrow { text-align: center; margin-bottom: 24px; }
.press-track {
  display: flex;
  gap: 64px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text-mid);
  white-space: nowrap;
  animation: press-scroll 48s linear infinite;
  width: max-content;
}
@keyframes press-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 48px;
  counter-reset: step;
}
.step { counter-increment: step; padding-top: 28px; border-top: 1px solid var(--line); }
.step-num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.step-num::before { content: "0" counter(step) " · "; }
.step h3 { font-size: 22px; margin-bottom: 12px; }
.step p { color: var(--text-mid); margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
}
.faq-q .plus { font-family: var(--sans); font-size: 20px; color: var(--text-mid); transition: transform 0.3s var(--ease); }
.faq-item[aria-expanded="true"] .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  color: var(--text-mid);
  font-size: 16px;
  padding: 0;
}
.faq-item[aria-expanded="true"] .faq-a {
  max-height: 600px;
  padding: 0 0 28px;
}

/* ---------- Form ---------- */
.form { max-width: 720px; }
.form-row { margin-bottom: 26px; }
.form-row label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 10px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--text);
  transition: border-color 0.2s var(--ease);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-bottom-color: var(--text);
}
.form-row textarea { resize: vertical; min-height: 140px; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
@media (max-width: 700px) { .form-grid-2 { grid-template-columns: 1fr; } }

.form .btn { margin-top: 16px; }
.form-note {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 14px;
}

/* ---------- Info strip ---------- */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}
.info-strip h4 { margin-bottom: 12px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-soft); }
.info-strip p { color: var(--text-mid); margin: 0; }
@media (max-width: 800px) { .info-strip { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Journal list ---------- */
.journal-list { border-top: 1px solid var(--line); }
.journal-item {
  display: grid;
  grid-template-columns: 160px 1fr 200px;
  gap: 40px;
  padding: 40px 0;
  align-items: start;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease);
}
.journal-item:hover { background: var(--bg-alt); }
.journal-date { font-size: 13px; letter-spacing: 0.08em; color: var(--text-soft); padding-top: 6px; }
.journal-title { font-family: var(--serif); font-size: 26px; line-height: 1.2; margin-bottom: 10px; }
.journal-excerpt { color: var(--text-mid); font-size: 15px; margin: 0; max-width: 52ch; }
.journal-type {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-soft); text-align: right; padding-top: 6px;
}
@media (max-width: 900px) {
  .journal-item { grid-template-columns: 1fr; gap: 10px; padding: 32px 0; }
  .journal-type { text-align: left; }
}

/* ---------- PDP ---------- */
.pdp {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  padding: 80px 0;
}
.pdp-gallery { display: flex; flex-direction: column; gap: 16px; }
.pdp-gallery img { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: var(--bg-alt); }
.pdp-gallery-more { display: flex; flex-direction: column; gap: 16px; }
.pdp-meta .eyebrow { margin-bottom: 16px; }
.pdp-meta h1 { font-size: clamp(36px, 4vw, 56px); margin-bottom: 8px; }
.pdp-price { font-family: var(--serif); font-size: 22px; color: var(--text-mid); margin-bottom: 32px; }
.pdp-desc { color: var(--text-mid); font-size: 16px; margin-bottom: 36px; max-width: 48ch; }
.pdp-specs { border-top: 1px solid var(--line); margin-bottom: 40px; }
.pdp-specs dl { display: grid; grid-template-columns: 1fr 2fr; gap: 0; margin: 0; }
.pdp-specs dt,
.pdp-specs dd { padding: 16px 0; border-bottom: 1px solid var(--line); margin: 0; }
.pdp-specs dt { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-soft); }
.pdp-specs dd { font-size: 15px; color: var(--text); }
/* Mobile PDP: primary image → text → additional images.
   display:contents lifts the gallery's children into the flex flow
   so they can be reordered around the meta column. */
@media (max-width: 900px) {
  .pdp { display: flex; flex-direction: column; gap: 40px; }
  .pdp-gallery { display: contents; }
  .pdp-primary-img { order: 1; }
  .pdp-meta { order: 2; }
  .pdp-gallery-more { order: 3; }
}

/* ---------- PDP · Related pieces ---------- */
.pdp-related { padding: 24px 0 96px; }
.pdp-related .pr-head { border-top: 1px solid var(--line); padding-top: 32px; margin-bottom: 28px; }
.pdp-related .pr-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: -0.005em;
  margin: 0;
}
.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 28px;
}
.pdp-related-grid .piece-img { aspect-ratio: 4/5; background: var(--bg-alt); overflow: hidden; margin-bottom: 14px; }
.pdp-related-grid .piece-img img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s var(--ease), transform 0.6s var(--ease); }
.pdp-related-grid .piece-item:hover .piece-img img { opacity: 0.92; transform: scale(1.015); }
.pdp-related-grid .piece-name { font-family: var(--serif); font-weight: 400; font-size: 15px; margin: 0; }
@media (max-width: 700px) {
  .pdp-related-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
}

/* ---------- Dark band (CTA / footer) ---------- */
.dark-band {
  background: var(--dark);
  color: var(--dark-text);
  padding: 120px 0;
}
.dark-band h2 { color: var(--dark-text); }
.dark-band .lead { color: var(--dark-mid); }
.dark-band .btn {
  border-color: var(--dark-text);
  color: var(--dark-text);
}
.dark-band .btn:hover {
  background: var(--dark-text);
  color: var(--dark);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  color: var(--text);
  padding: 96px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-col h4 {
  color: var(--text-mid);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; font-family: var(--sans); font-size: 14px; line-height: 1.7; color: var(--text-mid); }
.footer-col a { color: var(--text); text-decoration: none; transition: opacity 0.2s var(--ease); }
.footer-col a:hover { opacity: 0.55; }
.footer-logo { font-family: var(--serif); font-size: 28px; color: var(--text); margin-bottom: 16px; display: inline-block; line-height: 1; }
.footer-about { color: var(--text-mid); font-family: var(--sans); font-size: 13px; line-height: 1.7; max-width: 38ch; margin: 0; }
.footer-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: 0.1em;
}
@media (max-width: 900px) {
  .footer { padding: 72px 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; padding-bottom: 40px; }
  .footer-meta { flex-direction: column; gap: 8px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   V1-STYLE LAYOUTS (split heroes, editorial density)
   ========================================================= */

/* ---------- Split Hero ---------- */
.split-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 86vh;
  border-bottom: 1px solid var(--line);
}
.split-hero-left {
  padding: 120px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-hero-left.is-dark {
  background: var(--dark);
  color: var(--dark-text);
}
.split-hero-left.is-dark .eyebrow { color: var(--dark-mid); }
.split-hero-left.is-dark h1 { color: var(--dark-text); }
.split-hero-left.is-dark .hero-bio { color: var(--dark-mid); }
.split-hero-right {
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
  min-height: 86vh;
}
.split-hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-eyebrow-row .rule-mini {
  display: inline-block;
  width: 40px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.split-hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6.2vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
  font-weight: 400;
}
.split-hero h1 em {
  font-style: italic;
  color: var(--text-mid);
}
.split-hero h1.hero-h1-nowrap em { white-space: nowrap; }
.split-hero h1.hero-h1-nowrap { font-size: clamp(44px, 5.4vw, 92px); }
.split-hero-left.is-dark h1 em { color: var(--dark-mid); }
.hero-bio {
  font-family: var(--editorial);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 48ch;
  margin: 0 0 40px;
}
.hero-cta-row {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-meta-strip {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  margin-top: 44px;
  border-top: 1px solid currentColor;
  opacity: 1;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.split-hero-left:not(.is-dark) .hero-meta-strip { border-top-color: var(--line); color: var(--text-mid); }
.hero-meta-strip span strong { display: block; font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; text-transform: none; margin-top: 4px; color: currentColor; font-weight: 400; }

@media (max-width: 960px) {
  .split-hero { grid-template-columns: 1fr; min-height: auto; }
  .split-hero-left { padding: 56px 24px 48px; order: 1; }
  .split-hero-right { min-height: 52vh; max-height: 560px; order: 2; }
  .split-hero h1 { font-size: clamp(44px, 11vw, 64px); margin-bottom: 24px; }
  .hero-bio { font-size: 16px; margin-bottom: 28px; }
  .hero-meta-strip { gap: 20px; flex-wrap: wrap; padding-top: 20px; margin-top: 28px; }
  .hero-meta-strip span { flex: 1 1 46%; }
}

/* ---------- Two-column page header (Work / Commissions / Journal) ---------- */
.page-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  padding: 120px 0 64px;
  align-items: end;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 6.8vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0;
  font-weight: 400;
}
.page-header h1 em {
  font-style: italic;
  color: var(--text-mid);
}
.page-header-meta {
  font-family: var(--editorial);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 48ch;
  padding-bottom: 12px;
}
.page-header .eyebrow { display: block; margin-bottom: 32px; }
@media (max-width: 900px) {
  .page-header { grid-template-columns: 1fr; gap: 32px; padding: 80px 0 40px; }
}

/* ---------- Editorial full-bleed image ---------- */
.full-bleed {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--bg-alt);
}
.full-bleed img { width: 100%; height: 100%; object-fit: cover; }

.full-bleed-tall {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}
.full-bleed-tall img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Two-column image strip (studio / founders / loyola) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.two-col-img { background: var(--bg-alt); overflow: hidden; min-height: 620px; position: relative; }
.two-col-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.two-col-text { padding: 100px 72px; display: flex; flex-direction: column; justify-content: center; }
.two-col-text.dark { background: var(--dark); color: var(--dark-text); }
.two-col-text.dark h2 { color: var(--dark-text); }
.two-col-text.dark p { color: var(--dark-mid); }
.two-col-text h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0 28px;
  font-weight: 400;
  max-width: 14ch;
}
.two-col-text h2 em { font-style: italic; color: var(--text-mid); }
.two-col-text.dark h2 em { color: var(--dark-mid); }
.two-col-text p {
  font-family: var(--editorial);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 48ch;
  margin: 0 0 1.1em;
}
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col-img { min-height: 420px; }
  .two-col-text { padding: 56px 24px; }
}

/* reversed variant */
.two-col.reverse .two-col-img { order: 2; }
.two-col.reverse .two-col-text { order: 1; }
@media (max-width: 960px) {
  .two-col.reverse .two-col-img { order: 1; }
  .two-col.reverse .two-col-text { order: 2; }
}

/* ---------- Dense editorial grid (home work preview) ---------- */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
}
.editorial-grid > * { background: var(--bg); }
.editorial-tile { display: block; position: relative; overflow: hidden; }
.editorial-tile .tile-media { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.editorial-tile.wide { grid-column: 1 / -1; }
.editorial-tile.wide .tile-media { aspect-ratio: 16 / 6; }
.editorial-tile .tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.editorial-tile:hover .tile-media img { transform: scale(1.025); }
.editorial-tile .tile-info { padding: 22px 28px 34px; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.editorial-tile .tile-num { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-soft); display: block; margin-bottom: 8px; }
.editorial-tile .tile-title { font-family: var(--serif); font-size: 26px; line-height: 1.15; font-weight: 400; }
.editorial-tile .tile-meta { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mid); text-align: right; padding-top: 8px; white-space: nowrap; }
@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-tile.wide .tile-media { aspect-ratio: 4/3; }
  .editorial-tile .tile-info { padding: 18px 20px 28px; }
}

/* ---------- Principle cards (studio) ---------- */
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}
.principle-cell { background: var(--bg); padding: 56px 40px; display: flex; flex-direction: column; gap: 14px; min-height: 340px; }
.principle-cell .num { font-family: var(--serif); font-size: 42px; font-weight: 400; color: var(--text-soft); line-height: 1; }
.principle-cell h3 { font-family: var(--serif); font-size: 24px; line-height: 1.2; margin: 0; font-weight: 400; }
.principle-cell h3 em { font-style: italic; color: var(--text-mid); }
.principle-cell p { font-family: var(--editorial); font-size: 15px; line-height: 1.7; color: var(--text-mid); margin: 0; }
@media (max-width: 900px) { .principle-grid { grid-template-columns: 1fr; } .principle-cell { min-height: auto; padding: 40px 24px; } }

/* ---------- Journal entry strip ---------- */
.journal-strip {
  background: var(--dark);
  color: var(--dark-text);
  padding: 120px 0;
}
.journal-strip .eyebrow { color: var(--dark-mid); }
.journal-strip h2 { color: var(--dark-text); }
.journal-strip .lead { color: var(--dark-mid); }

/* ---------- Founders row ---------- */
.founders-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.founders-cred p { margin: 0; }
.founders-cred .name { font-family: var(--serif); font-size: 20px; margin-bottom: 4px; }
.founders-cred .detail { font-size: 13px; color: var(--text-mid); font-family: var(--sans); }
.two-col-text.dark .founders-row { border-top-color: rgba(232,226,215,0.15); }
.two-col-text.dark .founders-cred .detail { color: var(--dark-mid); }
@media (max-width: 560px) { .founders-row { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- Press row ---------- */
.press-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.press-row p { font-family: var(--serif); font-size: 18px; color: var(--text-mid); margin: 0; text-align: center; }
@media (max-width: 900px) { .press-row { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; } }
@media (max-width: 500px) { .press-row { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Inquiry band ---------- */
.inquiry-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 140px 0;
  align-items: start;
}
.inquiry-band h2 {
  font-size: clamp(44px, 5vw, 76px);
  max-width: 14ch;
  line-height: 0.98;
  font-weight: 400;
}
.inquiry-band h2 em { font-style: italic; color: var(--text-mid); }
.inquiry-band .lead { max-width: 52ch; }
@media (max-width: 900px) { .inquiry-band { grid-template-columns: 1fr; gap: 40px; padding: 80px 0; } }

/* ---------- Small mobile refinements ---------- */
@media (max-width: 560px) {
  .wrap { padding: 0 24px; }
  .section { padding: 80px 0; }
  .section-lg { padding: 100px 0; }
  .hero { padding: 80px 0 56px; }
  h1 { font-size: clamp(40px, 10vw, 56px); }
  h2 { font-size: clamp(28px, 7vw, 40px); }
  .display { font-size: clamp(44px, 14vw, 80px); }
  .btn { padding: 14px 22px; font-size: 12px; }
}

/* ---------- Utilities ---------- */
.max-42 { max-width: 42ch; }
.max-52 { max-width: 52ch; }
.max-72 { max-width: 72ch; }
.mt-0 { margin-top: 0; } .mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; } .mt-80 { margin-top: 80px; }
.mb-0 { margin-bottom: 0; } .mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; } .mb-80 { margin-bottom: 80px; }
.center { text-align: center; }
.muted { color: var(--text-mid); }
.soft  { color: var(--text-soft); }
.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; }

/* ---------- Editorial plate (full-bleed figure with caption) ---------- */
/* Inline images inside description markdown (multiple photos in body copy).
   Full-width block, natural aspect (portrait tall like Instagram), spacing between stacked images. */
.ja-body img,
.pdp-desc img {
  display: block;
  width: 100%;
  height: auto;
  margin: 40px 0;
  background: transparent;
}

.editorial-plate { margin: 64px 0 0; display: block; }
/* Image fills the wrap width at its natural aspect ratio.
   Portrait images render tall (like Instagram), landscape images render wide.
   No cropping, no letterbox, no side gutter. */
.editorial-plate img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
}
.editorial-plate figcaption { font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); margin-top: 16px; }

/* Clickable plate wrapper (entire image + caption acts as link) */
.editorial-plate-wrap {
  display: block;
  color: inherit;
  text-decoration: none;
}
.editorial-plate-wrap .editorial-plate img {
  transition: opacity 0.5s var(--ease), transform 0.8s var(--ease);
}
.editorial-plate-wrap:hover .editorial-plate img { opacity: 0.88; }
.editorial-plate-cue {
  display: inline-block;
  margin-left: 18px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.editorial-plate-wrap:hover .editorial-plate-cue {
  color: var(--text);
  border-color: var(--text);
}

/* Diptych: second plate at 60% width, offset to the right */
.editorial-plate-offset {
  width: 60%;
  margin-left: auto;
  margin-right: 0;
  margin-top: 88px;
}
.editorial-plate-offset .editorial-plate img { aspect-ratio: 4 / 5; }
@media (max-width: 820px) {
  .editorial-plate-offset { width: 100%; margin-top: 48px; }
  .editorial-plate-cue { display: block; margin-left: 0; margin-top: 6px; }
}

/* ---------- Editorial read-in (image figure + prose, journal register) ---------- */
.read-in-section { padding: 120px 0 120px; }
.editorial-read-in {
  max-width: 620px;
  margin: 112px auto 0;
  text-align: left;
}
.editorial-read-in .eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 20px;
}
.editorial-read-in h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  color: var(--text);
}
.editorial-read-in h2 em { font-style: italic; color: var(--text-mid); }
.editorial-read-in p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-mid);
  margin: 0 0 1.2em;
}
.editorial-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 1px;
  transition: opacity 0.2s var(--ease);
}
.editorial-link:hover { opacity: 0.55; }
@media (max-width: 820px) {
  .read-in-section { padding: 72px 0; }
  .editorial-read-in { margin-top: 64px; }
}

/* ---------- PDP CTA row and quiet note ---------- */
.pdp-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 24px 0 24px; }
.pdp-note { font-family: var(--serif); font-style: italic; font-size: 15px; line-height: 1.6; color: var(--text-mid); max-width: 56ch; margin: 4px 0 0; }

/* ---------- PDP resource links (catalogue, finishes) ---------- */
.pdp-resources { display: flex; flex-wrap: wrap; gap: 28px; margin: 4px 0 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.pdp-resource-link { font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: border-color 0.2s var(--ease), opacity 0.2s var(--ease); }
.pdp-resource-link:hover { border-bottom-color: var(--text); }
.pdp-resource-link .pr-icon { color: var(--text-mid); margin-right: 7px; }

/* ---------- PDP finishes accordion (Option B) ---------- */
.pdp-finishes { margin: 4px 0 28px; border-top: 1px solid var(--line); }
.pdp-finishes-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: none; border: 0; padding: 18px 0; cursor: pointer; font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em; color: var(--text); text-align: left; }
.pdp-finishes-toggle .pf-count { margin-left: auto; margin-right: 14px; color: var(--text-mid); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.pdp-finishes-toggle .pf-icon { font-size: 18px; line-height: 1; color: var(--text-mid); transition: transform 0.3s var(--ease); }
.pdp-finishes[data-expanded="true"] .pf-icon { transform: rotate(45deg); }
.pdp-finishes-panel { max-height: 0; overflow: hidden; transition: max-height 0.55s var(--ease); }
.pdp-finishes[data-expanded="true"] .pdp-finishes-panel { max-height: 1400px; }
.pdp-finishes-panel-inner { padding: 6px 0 24px; }
.finish-grid-sm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 16px; }
.finish-grid-sm .finish-swatch .fs-photo { display: block; aspect-ratio: 1 / 1; overflow: hidden; margin-bottom: 9px; background: var(--bg-alt); }
.finish-grid-sm .finish-swatch .fs-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.finish-grid-sm .finish-swatch .fs-name { font-family: var(--serif); font-size: 14px; line-height: 1.2; color: var(--text); }
.pf-note { font-family: var(--sans); font-size: 13px; line-height: 1.6; color: var(--text-mid); margin: 22px 0 0; }
.pf-note a { color: var(--text); border-bottom: 1px solid var(--line); padding-bottom: 2px; text-decoration: none; }
.pf-note a:hover { border-bottom-color: var(--text); }
@media (max-width: 560px) { .finish-grid-sm { grid-template-columns: 1fr 1fr; } }

/* ---------- Finishes & materials swatch grid ---------- */
.finish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 48px; }
.finish-swatch { margin: 0; }
.finish-swatch .fs-chip { display: block; width: 100%; aspect-ratio: 3 / 2; border: 1px solid rgba(0,0,0,0.06); margin-bottom: 18px; }
.finish-swatch figcaption { display: flex; flex-direction: column; gap: 4px; }
.finish-swatch .fs-name { font-family: var(--serif); font-size: 18px; line-height: 1.2; color: var(--text); }
.finish-swatch .fs-note { font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); }
@media (max-width: 820px) {
  .finish-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 28px; }
}
@media (max-width: 480px) {
  .finish-grid { grid-template-columns: 1fr 1fr; gap: 24px 18px; }
}

/* ---------- Journal page · editorial grid (4-up on desktop) ---------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
  row-gap: 72px;
  padding: 80px 0 130px;
}
.journal-grid .jg-media { display: block; overflow: hidden; margin-bottom: 20px; background: var(--bg-alt); aspect-ratio: 4 / 5; }
.journal-grid .jg-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.4s var(--ease), transform 0.6s var(--ease); }
.journal-grid .jg-media:hover img { opacity: 0.92; transform: scale(1.015); }
.journal-grid .jg-item .eyebrow { display: block; margin-bottom: 12px; font-size: 11px; }
.journal-grid .jg-title { font-family: var(--serif); font-weight: 400; font-size: clamp(19px, 1.4vw, 23px); line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 10px; }
.journal-grid .jg-title a { color: var(--text); text-decoration: none; transition: opacity 0.2s var(--ease); }
.journal-grid .jg-title a:hover { opacity: 0.6; }
.journal-grid .jg-title em { font-style: italic; color: var(--text-mid); }
.journal-grid .jg-excerpt { font-family: var(--sans); font-size: 13.5px; line-height: 1.6; color: var(--text-mid); margin: 0 0 14px; }
@media (max-width: 1100px) {
  .journal-grid { grid-template-columns: repeat(2, 1fr); column-gap: 32px; row-gap: 64px; }
}
@media (max-width: 600px) {
  .journal-grid { grid-template-columns: 1fr; row-gap: 48px; padding: 56px 0 80px; }
}

/* ---------- Journal page (editorial entries-only, no hero) ---------- */
.journal-entries { padding: 120px 0 140px; }
.journal-entries .edition-push { margin-bottom: 140px; }
.journal-entries .edition-push:last-child { margin-bottom: 0; }
@media (max-width: 820px) {
  .journal-entries { padding: 64px 0 80px; }
  .journal-entries .edition-push { margin-bottom: 80px; }
}

/* ---------- Journal article (entry stub pages) ---------- */
.journal-article { padding: 56px 0 140px; max-width: 820px; }
.journal-article .ja-header { margin-bottom: 48px; }
.journal-article .ja-header .eyebrow { display: block; margin-bottom: 20px; }
.journal-article .ja-header h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4vw, 56px); line-height: 1.08; letter-spacing: -0.015em; margin: 0 0 24px; }
.journal-article .ja-excerpt { font-family: var(--serif); font-size: 19px; line-height: 1.6; color: var(--text-mid); margin: 0; max-width: 60ch; }
.journal-article .editorial-plate { margin: 0 0 56px; }
.journal-article .ja-body p { font-family: var(--serif); font-size: 17px; line-height: 1.75; color: var(--text); margin: 0 0 1.4em; max-width: 64ch; }
.journal-article .ja-foot { margin-top: 64px; padding-top: 32px; border-top: 1px solid var(--line); }
@media (max-width: 820px) { .journal-article { padding: 32px 0 80px; } }

/* ---------- Contact page (form at top of page) ---------- */
.contact-lead { padding-top: 64px; padding-bottom: 140px; }
.contact-lead .hero-eyebrow-row { margin-bottom: 20px; }
.contact-lead .f-sub { font-family: var(--serif); font-size: 18px; line-height: 1.6; color: var(--text-mid); max-width: 56ch; margin: 0 0 48px; }
@media (max-width: 820px) {
  .contact-lead { padding-top: 40px; padding-bottom: 80px; }
  .contact-lead .f-sub { margin-bottom: 36px; font-size: 16px; }
}

/* ---------- Work page quiet close (centered institutional) ---------- */
.work-close-section {
  padding: 140px 0 140px;
  border-top: 1px solid var(--line);
  margin-top: 96px;
}
.work-close {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.work-close .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 36px;
}
.work-close h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  color: var(--text);
}
.work-close h2 em { font-style: italic; color: var(--text-mid); }
.work-close p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-mid);
  max-width: 54ch;
  margin: 0 auto 40px;
}
.work-close .editorial-link {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  text-decoration: none;
  transition: opacity 0.2s var(--ease);
}
.work-close .editorial-link:hover { opacity: 0.55; }
@media (max-width: 820px) {
  .work-close-section { padding: 96px 0 100px; margin-top: 64px; }
}

/* ---------- Home "How We Work" rows (V1 typographic register) ---------- */
.section-label {
  display: flex;
  justify-content: center;
  margin: 0 0 56px;
}
.section-label span {
  position: relative;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 0 22px;
}
.section-label span::before,
.section-label span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 72px;
  height: 1px;
  background: var(--line);
}
.section-label span::before { right: 100%; }
.section-label span::after { left: 100%; }

.work-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 auto;
  max-width: 1200px;
}
.work-row {
  display: flex;
  flex-direction: column;
  padding: 48px 44px;
  border-right: 1px solid var(--line);
}
.work-row:last-child { border-right: none; }
.wr-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--text);
}
.wr-body {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-mid);
  margin: 0 0 28px;
  flex: 1;
}
.wr-link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.wr-link:hover { color: var(--text); border-color: var(--text); }
@media (max-width: 820px) {
  .work-rows { grid-template-columns: 1fr; }
  .work-row { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 0; }
  .work-row:last-child { border-bottom: none; }
}

/* ---------- Commission rows (three-register typographic table) ---------- */
.commission-rows { border-top: 1px solid var(--line); }
.commission-row { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; padding: 36px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.commission-row .cr-label { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.2; color: var(--text); }
.commission-row .cr-body p { font-family: var(--sans); font-size: 15px; line-height: 1.6; color: var(--text); margin: 0 0 14px; max-width: 56ch; }
.commission-row .cr-body p:last-child { margin-bottom: 0; }
.commission-row .cr-body .cr-meta { font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); margin-top: 8px; }
@media (max-width: 820px) {
  .commission-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
}

/* ---------- Commission list (selected projects) ---------- */
.commission-list { list-style: none; padding: 0; margin: 40px 0 0; border-top: 1px solid var(--line); }
.commission-list li { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.commission-list .cl-title { font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.commission-list .cl-meta { font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); text-align: right; }
@media (max-width: 820px) {
  .commission-list li { grid-template-columns: 1fr; gap: 6px; text-align: left; }
  .commission-list .cl-meta { text-align: left; }
}

/* ---------- Close address (correspondence block) ---------- */
.close-address { text-align: center; padding: 140px 24px 120px; max-width: 900px; margin: 0 auto; }
.close-address .c-eyebrow { display: inline-block; font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 40px; }
.close-address .c-email { display: inline-block; font-family: var(--serif); font-size: clamp(36px, 5.5vw, 72px); line-height: 1.1; letter-spacing: -0.01em; color: var(--text); border-bottom: 1px solid currentColor; padding-bottom: 6px; margin-bottom: 40px; }
.close-address .c-note { font-family: var(--sans); font-size: 15px; line-height: 1.65; color: var(--text-mid); max-width: 54ch; margin: 0 auto; }
@media (max-width: 560px) { .close-address { padding: 100px 24px 90px; } }

/* ---------- Contact page (V1 register) ---------- */
.contact-intro { padding: 40px 0 24px; max-width: 58ch; }
.contact-intro .eyebrow { display: block; margin-bottom: 32px; }
.c-headline { font-family: var(--serif); font-weight: 400; font-size: clamp(48px, 7vw, 96px); line-height: 1.02; letter-spacing: -0.015em; margin: 0 0 32px 0; }
.c-headline em { font-style: italic; color: var(--text-mid); }
.c-intro { font-family: var(--sans); font-size: 16px; line-height: 1.65; color: var(--text); max-width: 48ch; margin: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 40px 0 24px; border-top: 1px solid var(--line); margin-top: 40px; }
.c-types { list-style: none; padding: 0; margin: 0; }
.c-type { display: grid; grid-template-columns: 40px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.c-type:first-child { border-top: 1px solid var(--line); }
.ct-num { font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; color: var(--text-mid); }
.ct-name { font-family: var(--serif); font-size: 18px; line-height: 1.25; }
.c-direct { padding-top: 6px; }
.c-direct-label { font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); margin: 0 0 20px 0; }
.c-direct-link { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 17px; color: var(--text); }
.c-direct-link .cl-label { font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); align-self: center; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

/* Contact form — typographic, low-chrome */
.c-form-wrap { padding-top: 24px; }
.f-title { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.1; margin: 0 0 16px; }
.f-sub { font-family: var(--sans); font-size: 14px; line-height: 1.55; color: var(--text-mid); max-width: 56ch; margin: 0 0 40px; }
.c-form { display: block; }
.c-form .c-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 28px; }
.c-form .c-field { display: block; margin-bottom: 28px; }
.c-form label { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 10px; }
.c-form .c-optional { text-transform: none; letter-spacing: 0; font-style: italic; }
.c-form input, .c-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--text); background: transparent; font-family: var(--serif); font-size: 18px; color: var(--text); padding: 8px 0 12px; outline: none; }
.c-form textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.c-form input::placeholder, .c-form textarea::placeholder { color: var(--text-soft); font-family: var(--serif); font-style: italic; font-size: 16px; }
.c-submit-row { display: flex; justify-content: space-between; align-items: center; gap: 32px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.f-note { font-family: var(--sans); font-size: 12px; color: var(--text-mid); margin: 0; max-width: 42ch; }
.f-btn { font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); background: transparent; border: 0; border-bottom: 1px solid var(--text); padding: 10px 0; cursor: pointer; }
.f-btn:hover { color: var(--text-mid); border-bottom-color: var(--text-mid); }
@media (max-width: 720px) {
  .c-form .c-row { grid-template-columns: 1fr; gap: 0; }
  .c-submit-row { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* Contact info (minimal three-column) */
.c-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; padding: 80px 0 40px; border-top: 1px solid var(--line); margin-top: 60px; }
.c-info .ci-label { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 16px; }
.c-info p { font-family: var(--serif); font-size: 16px; line-height: 1.55; color: var(--text); margin: 0; }
.c-info a { color: var(--text); border-bottom: 1px solid var(--line); }
.c-info a:hover { border-bottom-color: var(--text); }
@media (max-width: 820px) { .c-info { grid-template-columns: 1fr; gap: 32px; } }

/* Gallery representation — typographic list */
.gallery-list { list-style: none; padding: 0; margin: 40px 0 0; border-top: 1px solid var(--line); }
.gallery-list li { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.gallery-list .g-name { font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.gallery-list .g-loc { font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mid); text-align: right; }
@media (max-width: 720px) {
  .gallery-list li { grid-template-columns: 1fr; gap: 4px; }
  .gallery-list .g-loc { text-align: left; }
}

/* ---------- Compact representation strip (home page) ---------- */
.gallery-strip {
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 0;
}
.gallery-strip .gs-label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 22px;
}
.gallery-list.compact {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 44px;
  row-gap: 10px;
}
.gallery-list.compact li {
  display: inline;
  padding: 0;
  border: 0;
  grid-template-columns: none;
}
.gallery-list.compact .g-name {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--text);
}
@media (max-width: 720px) {
  .gallery-list.compact { column-gap: 28px; }
  .gallery-list.compact .g-name { font-size: 14px; }
}

/* ---------- Shrink correspondence email to normal address scale ---------- */
.close-address .c-email {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0;
  font-style: italic;
  margin-bottom: 28px;
}

/* ============================================================
   V3 HOME PAGE · image-grid-dominant
   Compact top, large lead grid, featured edition, prose below
   ============================================================ */

/* Compact top label */
.home-top { padding: 80px 0 24px; }
.home-top-inner { max-width: 760px; }
.home-top .eyebrow { display: block; margin-bottom: 20px; }
.home-top .home-h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--text);
  margin: 0 0 18px;
  max-width: 22ch;
}
.home-top .home-h1 em { font-style: italic; color: var(--text-mid); }
.home-top .home-tagline {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
  max-width: 60ch;
}
.home-top .home-tagline a {
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: border-color .2s var(--ease);
}
.home-top .home-tagline a:hover { border-bottom-color: var(--text); }
@media (max-width: 820px) { .home-top { padding: 56px 0 20px; } }

/* The lead grid · the dominant visual element */
/* Top padding raised 16px -> 56px when the home filter pills were removed (2026-08-22),
   preserving the breathing room the pills row used to provide under the header. */
.home-grid-section { padding: 56px 0 100px; }
.home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px 24px;
}
.home-tile { display: block; color: inherit; text-decoration: none; }
.home-tile-img {
  display: block;
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 4 / 5;
  margin-bottom: 18px;
}
.home-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .4s var(--ease), transform .6s var(--ease);
}
.home-tile:hover .home-tile-img img { opacity: .92; transform: scale(1.015); }
.home-tile-meta { display: flex; flex-direction: column; gap: 4px; }
.home-tile-name {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--text);
}
.home-tile-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.home-grid-foot {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}
@media (max-width: 1200px) {
  .home-grid { grid-template-columns: repeat(3, 1fr); gap: 48px 24px; }
}
@media (max-width: 820px) {
  .home-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
}
@media (max-width: 520px) {
  .home-grid { grid-template-columns: 1fr; gap: 36px; }
  .home-grid-section { padding: 32px 0 64px; } /* raised from 8px when home filter pills were removed */
}

/* Featured edition · large image-led row */
.home-edition-section { padding: 0 0 100px; border-top: 1px solid var(--line); padding-top: 100px; }
.home-edition {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.home-edition figure {
  margin: 0;
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 4 / 3;
}
.home-edition figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .4s var(--ease), transform .6s var(--ease);
}
.home-edition:hover figure img { opacity: .94; transform: scale(1.015); }
.home-edition-meta .eyebrow { display: block; margin-bottom: 16px; }
.home-edition-meta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0 0 16px;
}
.home-edition-meta p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
  max-width: 48ch;
}
@media (max-width: 820px) {
  .home-edition { grid-template-columns: 1fr; gap: 28px; }
  .home-edition-section { padding-top: 64px; padding-bottom: 64px; }
}

/* Home grid foot · multi-link row */
.home-grid-foot-links { display: inline-flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; }
.home-grid-foot-links a { font-family: var(--serif); font-style: italic; color: var(--text); border-bottom: 1px solid var(--line); padding-bottom: 2px; text-decoration: none; transition: border-color .2s var(--ease); }
.home-grid-foot-links a:hover { border-bottom-color: var(--text); }
.home-grid-foot-links .dot { color: var(--text-mid); }

/* Home filter bar · cc-tapis register */
.home-filters { padding: 56px 0 24px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-pill {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-mid);
  padding: 10px 18px;
  border-radius: 0;
  cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.filter-pill:hover { border-color: var(--text-mid); color: var(--text); }
.filter-pill[aria-pressed="true"] {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
}
@media (max-width: 600px) {
  .home-filters { padding: 32px 0 16px; }
  .filter-pill { font-size: 11px; padding: 8px 14px; }
}

/* ============================================================
   V3 TYPOGRAPHY SHRINK PASS (Mia 2026-06-22)
   Reduce headings and tile labels site-wide for a more
   restrained, gallery-register feel. Appended at end so it
   overrides earlier declarations via cascade order.
   ============================================================ */

/* Home page · top label and hero */
.home-h1 { font-size: clamp(20px, 1.6vw, 26px) !important; line-height: 1.2; }
.home-tagline { font-size: 15px !important; }

/* Home tiles · match nav scale */
.home-tile-name {
  font-size: 13px !important;
  letter-spacing: 0;
  line-height: 1.3;
}
.home-tile-tag {
  font-size: 10px !important;
  letter-spacing: 0.18em;
}

/* Split hero · H1 across every page */
.split-hero h1,
.split-hero h1.hero-h1-nowrap {
  font-size: clamp(26px, 2.6vw, 40px) !important;
  line-height: 1.15;
}
@media (max-width: 820px) {
  .split-hero h1,
  .split-hero h1.hero-h1-nowrap { font-size: clamp(26px, 7vw, 36px) !important; }
}

/* PDP title (Product detail page) */
.pdp-meta h1 { font-size: clamp(22px, 2.2vw, 30px) !important; line-height: 1.2; }

/* Edition / Commission / Journal entry titles (.ja-header h1) */
.journal-article .ja-header h1,
.ja-header h1 {
  font-size: clamp(24px, 2.4vw, 34px) !important;
  line-height: 1.15;
}

/* Section heads · H2 across the site */
.section-head h2,
.entity-grid h2,
.editorial-read-in h2,
.work-close h2,
.edition-intro h2,
.feature h2 {
  font-size: clamp(20px, 1.8vw, 28px) !important;
  line-height: 1.2;
}

/* Edition push title */
.edition-push h3 { font-size: clamp(18px, 1.6vw, 24px) !important; line-height: 1.2; }

/* Journal grid title (jg-title) */
.journal-grid .jg-title {
  font-size: clamp(15px, 1.2vw, 17px) !important;
  line-height: 1.25;
}

/* Featured edition row title */
.home-edition-meta h2 { font-size: clamp(20px, 1.8vw, 28px) !important; }

/* Piece item (Work catalogue tile) name */
.piece-item .piece-name { font-size: 14px !important; }
.piece-item .piece-desc { font-size: 12px !important; line-height: 1.5; }
.piece-item .piece-tag { font-size: 10px !important; }

/* Close address email */
.close-address .c-email {
  font-size: clamp(22px, 3vw, 36px) !important;
  line-height: 1.15;
}

/* Contact page form headline */
.f-title { font-size: clamp(20px, 2vw, 28px) !important; }

/* Body copy small reductions */
.hero-bio { font-size: 14px !important; line-height: 1.6; }
.entity-body p { font-size: 14px !important; line-height: 1.65; }

/* ============================================================
   V3 CLOSE + FOOTER · second shrink pass (Mia 2026-06-22)
   Match the email address to the eyebrow scale.
   Pull footer column headers and items down.
   ============================================================ */

/* Close-address block · email at eyebrow scale */
.close-address { padding: 80px 24px 60px !important; }
.close-address .c-eyebrow {
  font-size: 11px !important;
  letter-spacing: 0.18em;
  margin-bottom: 0 !important;
  vertical-align: middle;
  margin-right: 18px;
}
.close-address .c-email {
  font-size: 13px !important;
  font-family: var(--sans) !important;
  font-style: normal !important;
  letter-spacing: 0.02em !important;
  border-bottom: 1px solid var(--line) !important;
  padding-bottom: 2px !important;
  margin-bottom: 32px !important;
  display: inline-block;
  vertical-align: middle;
}
.close-address .c-note {
  font-size: 12px !important;
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 50ch;
}

/* Footer · smaller, restrained */
.footer { padding: 64px 0 32px !important; }
.footer-grid { gap: 40px !important; padding-bottom: 40px !important; }
.footer-logo { font-size: 20px !important; margin-bottom: 12px !important; }
.footer-about { font-size: 11px !important; line-height: 1.7 !important; max-width: 36ch !important; }
.footer-col h4 {
  font-size: 9px !important;
  letter-spacing: 0.22em !important;
  margin-bottom: 18px !important;
}
.footer-col li,
.footer-col li a,
.footer-col li span {
  font-size: 12px !important;
  line-height: 1.7 !important;
}
.footer-meta {
  font-size: 9px !important;
  letter-spacing: 0.14em !important;
  padding-top: 20px !important;
}

/* ===== TYPOGRAPHY SHRINK PASS · edition + contact body ===== */
/* Edition detail body (was serif clamp ~22-28px) → sans, smaller, gallery register */
.ja-body,
.ja-body p,
.ja-body li {
  font-family: var(--sans) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  letter-spacing: 0.01em !important;
  color: var(--text) !important;
}
.ja-body p { margin: 0 0 8px !important; }
.ja-body ul { padding-left: 18px !important; margin: 0 0 8px !important; }
/* Excerpt below H1 on edition + journal detail pages */
.ja-excerpt {
  font-family: var(--sans) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  font-style: normal !important;
  letter-spacing: 0.01em !important;
}
/* Contact form sub-paragraph (the "Inquiries are reviewed..." line) */
.c-form-wrap .f-sub,
.f-sub {
  font-family: var(--sans) !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
  font-style: normal !important;
  letter-spacing: 0.01em !important;
  max-width: 56ch !important;
}

/* ===== MOBILE MENU + FORM SHRINK ===== */
/* Mobile menu nav items — were giant serif (~64px+), drop to a calm sans register */
.mobile-menu a {
  font-family: var(--sans) !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  padding: 14px 0 !important;
  line-height: 1.3 !important;
  font-style: normal !important;
}
@media (max-width: 600px) {
  .mobile-menu a {
    font-size: 20px !important;
    padding: 12px 0 !important;
  }
}
.mobile-menu { padding: 24px 28px 40px !important; }

/* Form field labels (LOCATION, PIECE OR PROJECT REFERENCE, NAME, EMAIL, etc.) */
.c-form label,
.c-form .c-label,
.c-form legend {
  font-family: var(--sans) !important;
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--text-mid) !important;
  margin-bottom: 8px !important;
  font-weight: 400 !important;
}
.c-form label .c-optional,
.c-form label em {
  font-family: var(--sans) !important;
  font-size: 10px !important;
  font-style: normal !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  color: var(--text-mid) !important;
  margin-left: 6px !important;
}

/* Form inputs, textareas, selects — text and placeholders */
.c-form input[type="text"],
.c-form input[type="email"],
.c-form input[type="tel"],
.c-form input[type="url"],
.c-form input:not([type]),
.c-form textarea,
.c-form select {
  font-family: var(--sans) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  letter-spacing: 0.01em !important;
  font-style: normal !important;
  padding: 12px 0 !important;
}
.c-form input::placeholder,
.c-form textarea::placeholder {
  font-family: var(--sans) !important;
  font-size: 13px !important;
  font-style: normal !important;
  letter-spacing: 0.01em !important;
  color: var(--text-mid) !important;
  opacity: 0.7;
}
.c-form .c-field { margin-bottom: 28px !important; }

/* ===== CLOSE-ADDRESS LAYOUT FIX ===== */
/* Stack eyebrow → email → note in a clean left-aligned column,
   centered inside the page. No more inline-block collision. */
.close-address {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  max-width: 560px !important;
  margin: 0 auto !important;
  padding: 96px 28px 96px !important;
  gap: 0 !important;
}
.close-address .c-eyebrow {
  display: block !important;
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--text-mid) !important;
  margin: 0 0 12px !important;
  vertical-align: baseline !important;
}
.close-address .c-email {
  display: inline-block !important;
  font-family: var(--sans) !important;
  font-size: 13px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  color: var(--text) !important;
  border-bottom: 1px solid var(--line) !important;
  padding: 0 0 2px !important;
  margin: 0 0 28px !important;
  vertical-align: baseline !important;
}
.close-address .c-note {
  display: block !important;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
  color: var(--text-mid) !important;
  max-width: 52ch !important;
  margin: 0 !important;
  text-align: left !important;
}

/* ===== BODY PROSE · SERIF + SMALLER ===== */
/* Revert the edition body from sans to serif, but keep it tight.
   Apply the same serif register to section-head intros (/work/, /finishes/, /studio/),
   so all editorial body prose reads at one calm gallery-register size. */
.ja-body,
.ja-body p,
.ja-body li,
.ja-excerpt,
.section-head p,
.section-head > div > p {
  font-family: var(--serif) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
  color: var(--text-mid) !important;
}
.ja-body p { margin: 0 0 16px !important; }
.ja-body ul { padding-left: 18px !important; margin: 0 0 16px !important; }
.ja-body li { margin-bottom: 6px !important; }
.ja-excerpt {
  color: var(--text) !important;
  margin: 0 0 8px !important;
  max-width: 60ch !important;
}
.section-head p,
.section-head > div > p {
  max-width: 60ch !important;
  margin: 8px 0 0 !important;
}

/* ===== HOME FILTER PILLS · UN-BOX ===== */
/* Strip the border box and the active fill. Render as plain text
   labels in a row, with the active state marked by full-tone text
   and a hairline underline. Quieter, gallery-register. */
.filter-pill {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 8px 0 !important;
  color: var(--text-mid) !important;
  font-size: 11px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  transition: color .2s var(--ease), border-color .2s var(--ease) !important;
  border-bottom: 1px solid transparent !important;
}
.filter-pill:hover {
  color: var(--text) !important;
  background: transparent !important;
  border-bottom-color: transparent !important;
}
.filter-pill[aria-pressed="true"] {
  background: transparent !important;
  color: var(--text) !important;
  border-bottom: 1px solid var(--text) !important;
}
.filter-bar[data-home-filter-bar],
.filter-bar[data-collection-filter-bar] {
  gap: 28px !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}
/* Filter row sits centred between the hero's bottom line and the top of the grid:
   equal padding above/below the row, grid section's own top padding zeroed. */
.collection-filters { padding: 64px 0; }
#archive.section { padding-top: 0; }
@media (max-width: 600px) {
  .filter-pill { font-size: 10px !important; letter-spacing: 0.14em !important; padding: 8px 0 !important; }
  .filter-bar[data-home-filter-bar],
  .filter-bar[data-collection-filter-bar] { gap: 18px !important; flex-wrap: wrap !important; }
  .collection-filters { padding: 36px 0; }
}

/* ===== UNIFIED LOGO TREATMENT (Mia 2026-06-23) =====
   "goons" — Sabon serif, lowercase, slight positive letter-spacing,
   identical in nav and footer. Matches the reference image. */
.logo,
.footer-logo {
  font-family: var(--serif) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  text-transform: lowercase !important;
  letter-spacing: 0.05em !important;
  color: var(--text) !important;
  line-height: 1 !important;
  text-decoration: none !important;
}
.logo {
  font-size: 20px !important;
}
.footer-logo {
  font-size: 20px !important;
  margin-bottom: 14px !important;
  display: inline-block !important;
}
@media (max-width: 600px) {
  .logo { font-size: 18px !important; }
  .footer-logo { font-size: 18px !important; }
}

/* ===== EDGE-SAFETY GUTTERS (matches live Netlify deploy) =====
   No text or eyebrow ever touches the left/right edge of the viewport
   at any breakpoint. Wraps, nav, split-hero left column, section heads,
   close-address and footer all get an enforced minimum gutter. */
.wrap,
.section.wrap,
section.wrap,
header.nav .nav-inner {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
.split-hero-left {
  padding-left: 56px !important;
  padding-right: 56px !important;
}
@media (max-width: 1200px) {
  .wrap,
  .section.wrap,
  section.wrap,
  header.nav .nav-inner { padding-left: 32px !important; padding-right: 32px !important; }
  .split-hero-left { padding-left: 40px !important; padding-right: 40px !important; }
}
@media (max-width: 960px) {
  .wrap,
  .section.wrap,
  section.wrap,
  header.nav .nav-inner { padding-left: 28px !important; padding-right: 28px !important; }
  .split-hero-left { padding-left: 28px !important; padding-right: 28px !important; }
}
@media (max-width: 600px) {
  .wrap,
  .section.wrap,
  section.wrap,
  header.nav .nav-inner { padding-left: 22px !important; padding-right: 22px !important; }
  .split-hero-left { padding-left: 22px !important; padding-right: 22px !important; }
  .close-address { padding-left: 22px !important; padding-right: 22px !important; }
}
@media (max-width: 400px) {
  .wrap,
  .section.wrap,
  section.wrap,
  header.nav .nav-inner { padding-left: 18px !important; padding-right: 18px !important; }
  .split-hero-left { padding-left: 18px !important; padding-right: 18px !important; }
  .close-address { padding-left: 18px !important; padding-right: 18px !important; }
}

/* ===== SECTION-HEAD PARAGRAPH SIZE-MATCH TO HERO-BIO =====
   Section-head body paragraph (the small editorial text inside a
   section like "Every piece in the Archive Collection..." on /work/)
   was reading larger than the hero-bio at the top of the page.
   Match the same 14px serif register, equal across the page. */
.section-head p,
.section-head > div > p {
  font-size: 14px !important;
  line-height: 1.65 !important;
}

/* ============================================================
   PAGE-VARIANT COMPONENTS (Mia 2026-06-24)
   Locking in approved mockup variants 3, 4, 5:
   - Variant 3: /commissions/ intro band + 4-up grid
   - Variant 4: /studio/ manifesto + portrait + CMS slot + press + galleries
   - Variant 5: /journal/ clay paper + quiet header
   ============================================================ */

/* ===== INTRO BAND (Commissions) ===== */
.intro-band {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
}
.intro-band .ib-eyebrow { display: inline-block; margin-bottom: 22px; }
.intro-band .ib-h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin: 0 0 22px;
  color: var(--text);
}
.intro-band .ib-h1 em { font-style: italic; color: var(--text-mid); }
.intro-band .ib-lede {
  font-family: var(--editorial);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 58ch;
  margin: 0 0 12px;
}
.intro-band .ib-modes {
  font-family: var(--editorial);
  font-style: italic;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 58ch;
  margin: 0;
}
@media (max-width: 600px) {
  .intro-band { padding: 56px 0 40px; }
  .intro-band .ib-h1 { max-width: none; margin-bottom: 18px; }
}

/* ===== MANIFESTO BLOCK (Studio) ===== */
.manifesto-block {
  padding: 88px 0 56px;
}
.manifesto-block .mf-eyebrow { display: inline-block; margin-bottom: 24px; }
.manifesto-block .mf-h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 20ch;
  margin: 0 0 22px;
  color: var(--text);
}
.manifesto-block .mf-h1 em { font-style: italic; color: var(--text-mid); }
.manifesto-block .mf-lede {
  font-family: var(--editorial);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 60ch;
  margin: 0;
}
@media (max-width: 600px) {
  .manifesto-block { padding: 56px 0 36px; }
}

/* Thank-you page (form confirmation) — quiet, same register as contact.
   Generous emptiness per Mia 2026-08-24: ~10 line-heights above/below the block,
   ~4 line-heights between eyebrow / headline / paragraph.
   Headline sits 2px above the body size. */
.thankyou-block { padding: 120px 0 240px; }
.ty-inner { max-width: 560px; }
.ty-inner .eyebrow { display: inline-block; margin-bottom: 96px; }
.ty-h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--text);
  margin: 0 0 96px;
}
.ty-note {
  font-family: var(--editorial);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 36px;
}
@media (max-width: 600px) {
  .thankyou-block { padding: 88px 0 160px; }
  .ty-inner .eyebrow { margin-bottom: 64px; }
  .ty-h1 { margin-bottom: 64px; }
}

/* Studio intro: manifesto text left, founders portrait right (Mia 2026-08-23).
   Mobile: head -> first paragraph -> photo -> remaining paragraphs (natural DOM order). */
.studio-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0 72px;
  align-items: start;
}
.studio-intro-head,
.studio-intro-first,
.studio-intro-rest { grid-column: 1; }
.studio-intro-first { margin-bottom: 0; }
.studio-intro-rest .mf-lede { margin-top: 18px; }
.studio-intro-photo { grid-column: 2; grid-row: 1 / span 3; justify-self: end; width: 100%; max-width: 480px; }
.studio-intro-grid .studio-portrait { padding: 0; }
@media (max-width: 900px) {
  .studio-intro-grid { display: block; }
  .studio-intro-photo { max-width: 100%; margin: 32px 0; }
}

/* ===== STUDIO PORTRAIT (single joint photo) ===== */
.studio-portrait {
  padding: 24px 0 80px;
}
.studio-portrait .sp-plate-single {
  background: var(--bg-alt);
  overflow: hidden;
}
.studio-portrait .sp-plate-single img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.studio-portrait .sp-caption {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-mid);
}
@media (max-width: 600px) {
  .studio-portrait { padding: 16px 0 56px; }
  .studio-portrait .sp-plate-single img { aspect-ratio: 4 / 3; }
  .studio-portrait .sp-caption { flex-direction: column; gap: 4px; }
}

/* ===== LONG-FORM SLOT (CMS-editable studio essay) ===== */
.long-form-slot {
  padding: 60px 0 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.long-form-slot .lfs-eyebrow { display: inline-block; margin-bottom: 18px; }
.long-form-slot .lfs-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 26ch;
  margin: 0 0 20px;
  color: var(--text);
}
.long-form-slot .lfs-body {
  font-family: var(--editorial);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 60ch;
}
.long-form-slot .lfs-body p { margin: 0 0 16px; }
.long-form-slot .lfs-body p:last-child { margin-bottom: 0; }

/* ===== STUDIO PRESS (tightened, above galleries) ===== */
.studio-press-tight {
  padding: 56px 0;
}
.studio-press-tight .sp-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}
.studio-press-tight .sp-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: -0.005em;
  margin: 0;
}
.studio-press-tight ul {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 20px;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--text-mid);
  border-top: 1px solid var(--line);
}
.studio-press-tight li { line-height: 1.5; }
@media (max-width: 820px) {
  .studio-press-tight ul { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .studio-press-tight ul { grid-template-columns: 1fr; }
}

/* ===== STUDIO GALLERIES (tightened, below press) ===== */
.studio-galleries-tight {
  padding: 56px 0 60px;
}
.studio-galleries-tight .sg-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}
.studio-galleries-tight .sg-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0;
}
.studio-galleries-tight ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.studio-galleries-tight li {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 11px;
  color: var(--text);
}
.studio-galleries-tight li .g-loc { color: var(--text-mid); }
.studio-galleries-tight li .g-since {
  color: var(--text-mid);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: right;
}
@media (max-width: 600px) {
  .studio-galleries-tight li { grid-template-columns: 1fr; gap: 4px; }
  .studio-galleries-tight li .g-since { text-align: left; }
}

/* ===== JOURNAL · QUIET HEADER (eyebrow + lede inline, no big h1) ===== */
.journal-header-quiet {
  padding: 72px 0 24px;
}
.journal-header-quiet .jh-row {
  display: flex;
  align-items: baseline;
  gap: 28px;
  flex-wrap: wrap;
}
.journal-header-quiet .jh-row .eyebrow { margin: 0; flex-shrink: 0; }
.journal-header-quiet .jh-row .jh-lede {
  font-family: var(--editorial);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 54ch;
  margin: 0;
}
@media (max-width: 600px) {
  .journal-header-quiet { padding: 56px 0 16px; }
  .journal-header-quiet .jh-row { gap: 8px; flex-direction: column; }
}

/* ===== JOURNAL · CLAY PAPER (page-wide) =====
   Triggered by bodyClass: page-journal on /journal/ and /journal/[entry]/ */
body.page-journal {
  background: #c9aa9a;
  color: #2a1d16;
}
body.page-journal .nav {
  background: #c9aa9a !important;
  border-bottom: 1px solid #a98a7a !important;
}
body.page-journal .nav .logo { color: #2a1d16 !important; }
body.page-journal .nav-links a { color: #5a3f33 !important; }
body.page-journal .nav-links a[aria-current="page"] { color: #2a1d16 !important; border-bottom: 1px solid #2a1d16 !important; }
body.page-journal .nav-cta { color: #2a1d16 !important; border-bottom-color: #2a1d16 !important; }
body.page-journal .nav-toggle { color: #2a1d16 !important; }
body.page-journal .mobile-menu { background: #c9aa9a !important; }
body.page-journal .mobile-menu a { color: #2a1d16 !important; }
body.page-journal .eyebrow { color: #5a3f33; }
body.page-journal .journal-header-quiet .jh-row .jh-lede { color: #5a3f33; }
body.page-journal .journal-grid .jg-media {
  background: rgba(42, 29, 22, 0.08);
}
body.page-journal .journal-grid .jg-title a { color: #2a1d16 !important; }
body.page-journal .journal-grid .jg-excerpt { color: #5a3f33 !important; }
body.page-journal .journal-grid .edition-link,
body.page-journal .edition-link {
  color: #2a1d16 !important;
  border-bottom-color: #2a1d16 !important;
}
body.page-journal .footer {
  background: #c9aa9a !important;
  border-top: 1px solid #a98a7a !important;
}
body.page-journal .footer * { color: #2a1d16 !important; }
body.page-journal .footer .footer-about,
body.page-journal .footer .footer-col li { color: #5a3f33 !important; }
body.page-journal .footer .footer-col li a { color: #2a1d16 !important; }
body.page-journal .footer-meta { border-top-color: #a98a7a !important; }
body.page-journal .ja-header h1,
body.page-journal .ja-header .ja-excerpt,
body.page-journal .ja-body,
body.page-journal .ja-body p,
body.page-journal .ja-body li { color: #2a1d16 !important; }
body.page-journal .ja-body { color: #2a1d16 !important; }
body.page-journal .ja-body p { color: #2a1d16 !important; }
body.page-journal .editorial-link {
  color: #2a1d16 !important;
  border-bottom-color: #2a1d16 !important;
}

/* ============================================================
   PRE-CMS FRONT-END FIXES (Mia 2026-06-24)
   ============================================================ */

/* ===== Kill the rule-mini (small horizontal dash before eyebrows) globally =====
   Mia: remove the leading mdash-style line everywhere on the site. */
.rule-mini { display: none !important; }
.hero-eyebrow-row { gap: 0 !important; }

/* ===== Collapsible Archive grid (peek 6 + fade + see more) =====
   Show full first 2 rows, peek the top ~35% of row 3, then fade out.
   "See more" button sits below the fade. */
.grid-collapsible.has-overflow {
  position: relative;
}
.grid-collapsible.has-overflow[data-expanded="false"] .grid-works {
  max-height: 1340px; /* 2 full rows + ~35% peek of row 3 */
  overflow: hidden;
}
.grid-collapsible.has-overflow[data-expanded="false"] .grid-fade {
  position: absolute;
  left: 0; right: 0;
  bottom: 84px;
  height: 260px;
  background: linear-gradient(to bottom,
    rgba(239, 233, 223, 0) 0%,
    rgba(239, 233, 223, 0.6) 40%,
    var(--bg) 85%);
  pointer-events: none;
  z-index: 1;
}
.grid-collapsible[data-expanded="true"] .grid-fade { display: none; }
.grid-collapsible[data-expanded="true"] .grid-works {
  max-height: none;
  overflow: visible;
}
.grid-collapsible .grid-works {
  transition: max-height 0.6s var(--ease);
}
.grid-expand-row {
  display: flex;
  justify-content: center;
  padding: 24px 0 60px;
  position: relative;
  z-index: 2;
}
.grid-expand-btn {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--text);
  padding: 6px 4px;
  font-family: var(--editorial);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--text);
  cursor: pointer;
  transition: opacity 0.2s var(--ease);
}
.grid-expand-btn:hover { opacity: 0.65; }
@media (max-width: 1000px) {
  /* 2-up grid: each row is taller, so allow more height */
  .grid-collapsible.has-overflow[data-expanded="false"] .grid-works { max-height: 1900px; }
}
@media (max-width: 700px) {
  /* 1-up grid: each piece is full width */
  .grid-collapsible.has-overflow[data-expanded="false"] .grid-works { max-height: 3000px; }
}

/* ===== Studio portrait · vertical, left-aligned ===== */
.studio-portrait .sp-plate-vertical {
  width: 100%;
  max-width: 480px;
  margin: 0;
  background: var(--bg-alt);
  overflow: hidden;
}
.studio-portrait .sp-plate-vertical img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.studio-portrait .sp-caption {
  max-width: 480px;
  margin: 0;
}
@media (max-width: 600px) {
  .studio-portrait .sp-plate-vertical { max-width: 100%; }
  .studio-portrait .sp-plate-vertical img { aspect-ratio: 3 / 4; }
  .studio-portrait .sp-caption { max-width: 100%; }
}
