@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800&family=Noto+Sans+KR:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #111111;
  --paper: #f3f3f0;
  --white: #ffffff;
  --accent: #ff4e3d;
  --lime: #ccff36;
  --blue: #315bff;
  --muted: #717171;
  --line: rgba(17, 17, 17, .17);
  --pad: clamp(20px, 3.25vw, 64px);
  --radius: 14px;
  --max: 1760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Noto Sans KR", sans-serif;
  word-break: keep-all;
  line-break: strict;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3 { text-wrap: balance; }
p, li, dd { text-wrap: pretty; }
.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; }
.eyebrow { margin: 0 0 22px; font-size: 12px; font-weight: 800; letter-spacing: .13em; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px var(--pad);
  background: rgba(243, 243, 240, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 5px; font-size: 19px; font-weight: 800; letter-spacing: -.055em; }
.brand i { color: var(--accent); font-style: normal; }
nav { display: flex; align-items: center; gap: clamp(15px, 2vw, 32px); font-size: 14px; font-weight: 650; }
nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; }
.nav-cta { display: grid; place-items: center; min-height: 46px; padding: 0 20px; border-radius: 999px; color: white; background: var(--ink); }

.quality-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(50px, 7vw, 112px) var(--pad) clamp(64px, 8vw, 126px);
  border-bottom: 1px solid var(--ink);
}
.quality-kicker { display: flex; justify-content: space-between; gap: 24px; margin-bottom: clamp(54px, 8vw, 120px); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.quality-kicker p { margin: 0; }
.quality-kicker span { color: var(--muted); text-align: right; }
.quality-hero h1 { margin: 0; font-size: clamp(58px, 8.2vw, 142px); line-height: .88; letter-spacing: -.085em; }
.quality-hero h1 span { color: var(--accent); }
.quality-hero-foot { display: grid; grid-template-columns: minmax(320px, .9fr) 1.1fr; gap: clamp(40px, 8vw, 150px); align-items: end; margin-top: clamp(46px, 7vw, 100px); }
.quality-hero-foot > p { max-width: 760px; margin: 0; font-size: clamp(18px, 1.45vw, 24px); line-height: 1.65; letter-spacing: -.02em; }
.hero-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 0; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border: 1px solid var(--ink); border-radius: 999px; font-size: 15px; font-weight: 750; white-space: nowrap; }
.button.primary { color: white; background: var(--ink); }
.button.ghost { background: transparent; }

.featured-work { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(78px, 9vw, 146px) var(--pad); }
.featured-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 34px; }
.featured-heading h2 { margin: 0; font-size: clamp(64px, 9vw, 150px); line-height: .83; letter-spacing: -.085em; }
.featured-maker { display: grid; gap: 8px; min-width: 170px; padding-bottom: 8px; }
.featured-maker span, .featured-facts span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.featured-maker strong { font-size: 18px; }
.featured-visual { position: relative; display: block; aspect-ratio: 16 / 8.4; overflow: hidden; border-radius: var(--radius); color: white; background: #ddd; }
.featured-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.62)); }
.featured-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.75,.2,1); }
.featured-visual:hover img { transform: scale(1.018); }
.featured-visual span, .featured-visual strong { position: absolute; z-index: 2; bottom: 24px; }
.featured-visual span { left: 26px; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.featured-visual strong { right: 26px; font-size: 14px; }
.featured-facts { display: grid; grid-template-columns: 1.1fr 1fr .85fr; border-bottom: 1px solid var(--ink); }
.featured-facts > div { min-height: 132px; padding: 24px 24px 24px 0; border-right: 1px solid var(--line); }
.featured-facts > div:not(:first-child) { padding-left: 24px; }
.featured-facts > div:last-child { border-right: 0; }
.featured-facts p { max-width: 560px; margin: 16px 0 0; font-size: 16px; line-height: 1.55; }

.quality-chain { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 140px); padding: clamp(72px, 9vw, 140px) var(--pad); color: white; background: var(--ink); }
.quality-chain-head { align-self: start; position: sticky; top: 112px; }
.quality-chain h2 { margin: 0 0 36px; font-size: clamp(48px, 5.5vw, 88px); line-height: .95; letter-spacing: -.075em; }
.quality-chain-head > a { color: var(--lime); font-size: 14px; font-weight: 700; text-decoration: underline; text-underline-offset: 6px; }
.quality-chain ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.38); }
.quality-chain li { display: grid; grid-template-columns: 130px .65fr 1fr; gap: 24px; align-items: start; min-height: 170px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.quality-chain li > span { color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.quality-chain li h3 { margin: 0; font-size: clamp(23px, 2vw, 32px); letter-spacing: -.045em; }
.quality-chain li p { margin: 0; color: #cfcfcf; font-size: 16px; line-height: 1.7; }

.selected-works, .works-section, .experts-section, .maker-works { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(82px, 9vw, 144px) var(--pad); }
.selected-works { padding-bottom: 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 42px; }
.section-head h2, .closing-panel h2 { margin: 0; font-size: clamp(42px, 5vw, 80px); line-height: 1; letter-spacing: -.072em; }
.section-head > p { max-width: 520px; margin: 0; font-size: 16px; line-height: 1.65; }
.section-head > a { font-size: 14px; font-weight: 700; text-decoration: underline; text-underline-offset: 6px; }
.selected-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.selected-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 330px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.selected-card img { width: 100%; height: 100%; object-fit: cover; }
.selected-card > div { display: flex; flex-direction: column; justify-content: center; padding: 30px; }
.selected-card span { color: var(--accent); font-size: 12px; font-weight: 800; }
.selected-card h3 { margin: 18px 0; font-size: 32px; }
.selected-card p { margin: 0; line-height: 1.65; }
.selected-card small { margin-top: 24px; color: var(--muted); }

.browse-tools { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-bottom: 28px; padding: 18px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.search-field { flex: 0 1 420px; }
.search-field input { width: 100%; min-height: 48px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: white; }
.filter-row { display: flex; gap: 7px; overflow-x: auto; scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-button { min-height: 44px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: transparent; white-space: nowrap; cursor: pointer; }
.filter-button.active { color: white; background: var(--ink); border-color: var(--ink); }
.filter-empty { padding: 50px 0; font-size: 18px; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.3vw, 34px); }
.project-card[hidden] { display: none; }
.project-card { min-width: 0; overflow: hidden; border-top: 1px solid var(--ink); background: transparent; }
.project-visual { position: relative; display: block; aspect-ratio: 16 / 10; margin-top: 14px; overflow: hidden; border-radius: 10px; color: white; background: #ddd; }
.project-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.project-card:hover .project-visual img { transform: scale(1.02); }
.visual-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.28), transparent 42%, rgba(0,0,0,.34)); }
.visual-category, .visual-arrow { position: absolute; z-index: 2; }
.visual-category { top: 16px; left: 16px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.82); border-radius: 999px; font-size: 11px; font-weight: 700; }
.visual-arrow { right: 18px; bottom: 14px; font-size: 26px; }
.project-info { padding: 22px 0 12px; }
.project-card-title { display: grid; grid-template-columns: 1fr minmax(120px, .38fr); gap: 20px; }
.project-card-title h3 { margin: 0; font-size: clamp(28px, 2.6vw, 42px); line-height: 1; letter-spacing: -.06em; }
.project-card-title p { max-width: 520px; margin: 14px 0 0; font-size: 16px; line-height: 1.55; }
.project-card-title > span { color: var(--muted); font-size: 11px; line-height: 1.5; text-align: right; }
.project-credits { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 26px 0 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.project-credits div { display: grid; grid-template-columns: 74px 1fr; gap: 10px; }
.project-credits dt { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.project-credits dd { margin: 0; font-size: 13px; font-weight: 650; line-height: 1.5; }
.project-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; font-size: 13px; font-weight: 700; }
.save-button { min-height: 44px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: white; cursor: pointer; }
.save-button[aria-pressed="true"] { background: var(--lime); border-color: var(--ink); }

/* External reference library */
.reference-preview-section, .references-index, .source-ledger { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(82px, 9vw, 144px) var(--pad); }
.reference-preview-section { background: var(--white); }
.reference-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.reference-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.reference-card[hidden] { display: none; }
.reference-card { min-width: 0; overflow: hidden; border: 1px solid var(--ink); border-radius: 12px; background: var(--paper); }
.reference-card-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; border-bottom: 1px solid var(--ink); background: #d8d8d2; }
.reference-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.reference-card:hover .reference-card-media img { transform: scale(1.018); }
.reference-card-media > span { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; min-height: 32px; padding: 0 10px; border: 1px solid rgba(255,255,255,.82); border-radius: 999px; color: white; background: rgba(17,17,17,.78); font-size: 10px; font-weight: 800; letter-spacing: .08em; backdrop-filter: blur(8px); }
.reference-card-copy { display: flex; flex-direction: column; min-height: 340px; padding: 24px; }
.reference-source-line { display: flex; justify-content: space-between; gap: 14px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .07em; }
.reference-source-line a { color: var(--ink); text-align: right; text-decoration: underline; text-underline-offset: 4px; }
.reference-card h2, .reference-card h3 { margin: 46px 0 14px; font-size: clamp(28px, 2.4vw, 42px); line-height: 1; letter-spacing: -.06em; }
.reference-card p { margin: 0; font-size: 15px; line-height: 1.65; }
.reference-card dl { display: grid; grid-template-columns: .8fr 1.2fr; gap: 12px; margin: 26px 0 0; padding-top: 16px; border-top: 1px solid var(--line); }
.reference-card dl div { min-width: 0; }
.reference-card dt { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.reference-card dd { margin: 7px 0 0; font-size: 12px; font-weight: 650; line-height: 1.5; }
.reference-card-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 26px; font-size: 12px; font-weight: 750; }
.reference-card-actions a:last-child { text-align: right; }
.reference-index-link { display: flex; align-items: center; justify-content: flex-end; min-height: 64px; margin-top: 28px; border-top: 1px solid var(--ink); font-size: 15px; font-weight: 800; }

.references-hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(48px, 8vw, 150px); align-items: end; padding: clamp(72px, 9vw, 146px) var(--pad); border-bottom: 1px solid var(--ink); }
.references-hero h1 { margin: 0; font-size: clamp(58px, 8.3vw, 140px); line-height: .88; letter-spacing: -.085em; }
.references-hero h1 span { color: var(--blue); }
.references-hero-copy > p { max-width: 680px; margin: 0; font-size: clamp(18px, 1.5vw, 24px); line-height: 1.68; }
.references-hero-copy dl { display: grid; grid-template-columns: repeat(3, 1fr); margin: 50px 0 0; border-top: 1px solid var(--ink); }
.references-hero-copy dl > div { padding: 18px 12px 0 0; }
.references-hero-copy dt { color: var(--muted); font-size: 10px; font-weight: 800; }
.references-hero-copy dd { margin: 9px 0 0; font-size: clamp(21px, 2.3vw, 34px); font-weight: 800; }
.source-ledger { padding-bottom: 0; }
.source-ledger ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.source-ledger li { display: grid; grid-template-columns: 56px 1fr 90px 150px; gap: 20px; align-items: center; min-height: 86px; border-bottom: 1px solid var(--line); }
.source-ledger li > span, .source-ledger li > em { color: var(--muted); font-size: 11px; font-style: normal; }
.source-ledger li > strong { font-size: 20px; }
.source-ledger li > a { text-align: right; font-size: 12px; font-weight: 750; }
.references-index { padding-top: clamp(82px, 9vw, 144px); }
.reference-disclaimer { margin: 0 var(--pad) var(--pad); padding: clamp(48px, 7vw, 100px); border-radius: 20px; color: white; background: var(--blue); }
.reference-disclaimer h2 { margin: 0; font-size: clamp(42px, 5.4vw, 82px); line-height: 1; letter-spacing: -.072em; }
.reference-disclaimer > p:not(.eyebrow) { max-width: 800px; margin: 28px 0 0; font-size: 18px; line-height: 1.7; }
.reference-disclaimer .button { margin-top: 34px; border-color: white; color: var(--ink); background: white; }

.reference-detail { overflow: hidden; }
.reference-detail-hero { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(44px, 7vw, 110px); align-items: center; min-height: calc(100svh - 72px); padding: clamp(64px, 8vw, 124px) var(--pad); }
.reference-detail-copy h1 { margin: 24px 0 28px; font-size: clamp(58px, 7.8vw, 124px); line-height: .86; letter-spacing: -.085em; }
.reference-detail-copy > p { max-width: 680px; margin: 0; font-size: clamp(19px, 1.55vw, 25px); line-height: 1.6; }
.reference-detail-meta { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 30px; color: var(--muted); font-size: 11px; letter-spacing: .05em; }
.reference-detail-meta strong { color: var(--ink); }
.reference-detail-copy .hero-actions { justify-content: flex-start; margin-top: 36px; }
.reference-detail-cover { aspect-ratio: 16 / 11; margin: 0; overflow: hidden; border: 1px solid var(--ink); border-radius: 12px; background: #d8d8d2; box-shadow: 18px 18px 0 var(--blue); }
.reference-detail-cover img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.reference-passport { display: grid; grid-template-columns: .65fr 1.35fr; gap: 40px; padding: clamp(66px, 8vw, 120px) var(--pad); color: white; background: var(--blue); }
.reference-passport h2 { margin: 0; font-size: clamp(42px, 4.6vw, 72px); line-height: 1; letter-spacing: -.065em; }
.reference-passport dl { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid rgba(255,255,255,.45); border-left: 1px solid rgba(255,255,255,.45); }
.reference-passport dl > div { min-height: 160px; padding: 24px; border-right: 1px solid rgba(255,255,255,.45); border-bottom: 1px solid rgba(255,255,255,.45); }
.reference-passport dt { color: white; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.reference-passport dd { display: grid; gap: 12px; margin: 30px 0 0; }
.reference-passport dd strong { font-size: 22px; }
.reference-passport dd span { color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.55; }
.reference-summary, .reference-origin { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 130px); padding: clamp(72px, 9vw, 140px) var(--pad); border-top: 1px solid var(--ink); }
.reference-summary h2, .reference-origin h2 { margin: 0; font-size: clamp(40px, 4.6vw, 72px); line-height: 1; letter-spacing: -.065em; }
.reference-summary > p { max-width: 920px; margin: 0; font-size: clamp(23px, 2.5vw, 40px); line-height: 1.48; letter-spacing: -.04em; }
.reference-editorial { background: white; }
.reference-origin { color: white; background: var(--ink); }
.reference-origin > div:last-child > p { max-width: 760px; margin: 0; color: #d4d4d4; font-size: 18px; line-height: 1.75; }
.reference-origin ul { display: grid; gap: 12px; margin: 36px 0 0; padding: 0; list-style: none; }
.reference-origin a { display: flex; align-items: center; min-height: 52px; padding: 0 16px; border: 1px solid rgba(255,255,255,.38); border-radius: 8px; font-weight: 700; }
.reference-closing { margin-top: var(--pad); }

/* Discovery-first home */
.discovery-body { background: #f5f4ef; }
.discovery-header { background: rgba(245,244,239,.94); }
.discovery-hero { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(30px, 3.5vw, 54px) var(--pad) clamp(34px, 4vw, 62px); border-bottom: 1px solid var(--ink); }
.discovery-hero h1 { margin: 0; font-size: clamp(52px, 6vw, 102px); line-height: .9; letter-spacing: -.07em; text-transform: uppercase; }
.discovery-hero h1 span, .discovery-hero h1 strong { white-space: nowrap; }
.discovery-hero h1 strong { color: var(--accent); font: inherit; }
.discovery-catalog { width: min(100%, var(--max)); margin: 0 auto; padding: 26px var(--pad) clamp(82px, 8vw, 136px); }
.catalog-toolbar { scroll-margin-top: 86px; margin-bottom: 32px; }
.catalog-search-wrap { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; padding: 16px 0 22px; border-bottom: 1px solid var(--ink); }
.catalog-search { position: relative; display: block; }
.catalog-search input { width: 100%; min-height: 66px; padding: 0 66px 0 22px; border: 1px solid var(--ink); border-radius: 12px; color: var(--ink); background: white; font-size: 18px; outline: none; }
.catalog-search input:focus { box-shadow: 0 0 0 3px var(--lime); }
.catalog-search kbd { position: absolute; top: 50%; right: 16px; transform: translateY(-50%); display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); background: var(--paper); font-size: 14px; }
.catalog-search-wrap > p { min-width: 88px; margin: 0; font-size: 14px; font-weight: 800; text-align: right; }
.catalog-filter-group { display: grid; gap: 10px; padding: 18px 0 0; }
.catalog-kind-row, .catalog-chip-row { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.catalog-kind-row::-webkit-scrollbar, .catalog-chip-row::-webkit-scrollbar { display: none; }
.catalog-kind-row { padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.catalog-chip { flex: none; min-height: 44px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: transparent; font-size: 13px; font-weight: 700; white-space: nowrap; cursor: pointer; }
.catalog-chip:hover { border-color: var(--ink); }
.catalog-chip.active { color: white; border-color: var(--ink); background: var(--ink); }
.catalog-chip[data-catalog-region="domestic"].active { color: var(--ink); border-color: var(--lime); background: var(--lime); }
.catalog-chip sup { margin-left: 6px; color: var(--muted); font-size: 9px; }
.catalog-chip.active sup { color: rgba(255,255,255,.64); }
.hashtag-row .catalog-chip { min-height: 44px; border-color: transparent; background: rgba(17,17,17,.055); }
.hashtag-row .catalog-chip.active { color: var(--ink); background: var(--lime); }
.catalog-empty { min-height: 200px; margin: 0; padding: 72px 0; border-top: 1px solid var(--ink); font-size: 20px; font-weight: 700; }
.discovery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(28px, 3vw, 54px) clamp(14px, 1.6vw, 26px); }
.discovery-card[hidden] { display: none; }
.discovery-card { min-width: 0; }
.discovery-card-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 10px; background: #deded8; }
.discovery-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.22), transparent 38%, rgba(0,0,0,.08)); opacity: .72; transition: opacity .25s; }
.discovery-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.discovery-card:hover .discovery-card-media img { transform: scale(1.025); }
.discovery-card:hover .discovery-card-media::after { opacity: .42; }
.discovery-card-media > span, .discovery-card-media > b { position: absolute; z-index: 2; color: white; }
.discovery-card-media > span { top: 12px; left: 12px; min-height: 28px; padding: 7px 9px 0; border: 1px solid rgba(255,255,255,.58); border-radius: 999px; background: rgba(17,17,17,.58); font-size: 9px; font-weight: 800; letter-spacing: .08em; backdrop-filter: blur(8px); }
.discovery-card-media > b { right: 14px; bottom: 10px; font-size: 25px; font-weight: 500; }
.discovery-card-body { padding: 15px 2px 0; }
.discovery-card-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .04em; }
.discovery-card-meta span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: right; }
.discovery-card h2 { margin: 22px 0 10px; font-size: clamp(24px, 2vw, 34px); line-height: 1; letter-spacing: -.055em; }
.discovery-card-body > p { display: -webkit-box; min-height: 48px; margin: 0; overflow: hidden; color: #454545; font-size: 14px; line-height: 1.65; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.discovery-maker { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 12px; border-top: 1px solid var(--line); }
.discovery-maker span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.discovery-maker strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; text-align: right; }
.discovery-tags { display: flex; gap: 6px; overflow: hidden; margin-top: 12px; }
.discovery-tags button { flex: none; min-height: 44px; padding: 0 11px; border: 0; border-radius: 999px; color: #444; background: rgba(17,17,17,.055); font-size: 10px; font-weight: 700; cursor: pointer; }
.discovery-tags button:hover { color: var(--ink); background: var(--lime); }
.engagement-bar { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.engagement-bar > span, .engagement-bar > button { display: flex; align-items: center; justify-content: center; gap: 4px; min-width: 0; min-height: 46px; padding: 0 6px; border: 0; border-right: 1px solid var(--line); color: var(--muted); background: transparent; font-size: 11px; font-weight: 700; white-space: nowrap; }
.engagement-bar > :last-child { border-right: 0; }
.engagement-bar > button { cursor: pointer; }
.engagement-bar > button:hover, .engagement-bar > button.active { color: var(--ink); background: var(--lime); }
.engagement-bar > button:disabled { cursor: wait; opacity: .55; }
.engagement-bar b { color: inherit; font-size: inherit; }
.engagement-bar.compact { margin-top: 14px; }
.engagement-bar.detail { width: min(100%, 610px); margin: 26px 0 22px; border: 1px solid var(--ink); border-radius: 999px; overflow: hidden; }
.engagement-bar.detail > span, .engagement-bar.detail > button { min-height: 50px; color: var(--ink); }
.catalog-more { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 64px; margin-top: 56px; border: 1px solid var(--ink); border-radius: 10px; color: var(--ink); background: transparent; font-weight: 800; cursor: pointer; }
.catalog-more:hover { background: var(--lime); }
.catalog-more[hidden] { display: none; }
.discovery-footer { background: #f5f4ef; }
.compact-reference { width: min(100%, var(--max)); min-height: calc(100svh - 72px); margin: 0 auto; padding: clamp(42px, 6vw, 96px) var(--pad); }
.compact-reference-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(360px, .7fr); gap: clamp(42px, 7vw, 116px); align-items: center; }
.compact-reference-cover { aspect-ratio: 16 / 10; margin: 0; overflow: hidden; border-radius: 12px; background: #deded8; }
.compact-reference-cover img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.compact-reference-copy h1 { margin: 26px 0 20px; font-size: clamp(52px, 6.2vw, 104px); line-height: .9; letter-spacing: -.075em; }
.compact-reference-copy > p { margin: 0; color: #3f3f3f; font-size: clamp(17px, 1.4vw, 22px); line-height: 1.6; }
.compact-reference-copy dl { display: grid; gap: 0; margin: 34px 0 0; border-top: 1px solid var(--ink); }
.compact-reference-copy dl > div { display: grid; grid-template-columns: 100px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.compact-reference-copy dt { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.compact-reference-copy dd { margin: 0; font-size: 13px; font-weight: 700; }
.compact-reference-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.compact-reference-tags a { display: inline-flex; align-items: center; min-height: 34px; padding: 0 10px; border-radius: 999px; background: rgba(17,17,17,.06); font-size: 11px; font-weight: 700; }
.compact-reference-tags a:hover { background: var(--lime); }
.compact-reference-actions { display: flex; gap: 9px; margin-top: 28px; }
.compact-reference-copy > small { display: block; margin-top: 18px; color: var(--muted); font-size: 11px; }

.experts-section { padding-top: 0; }
.expert-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.expert-card { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 420px; overflow: hidden; border: 1px solid var(--ink); border-radius: var(--radius); background: white; }
.expert-cover { position: relative; overflow: hidden; background: var(--accent); }
.expert-cover img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); }
.expert-cover::after { content: ""; position: absolute; inset: 0; background: rgba(255,78,61,.18); }
.expert-cover > span { position: absolute; z-index: 2; right: 18px; bottom: 6px; color: white; font-size: clamp(76px, 9vw, 140px); font-weight: 800; line-height: .8; }
.expert-info { display: flex; flex-direction: column; padding: 30px; }
.expert-info > span { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.expert-info h3 { margin: auto 0 12px; font-size: clamp(42px, 5vw, 76px); letter-spacing: -.07em; }
.expert-info > p { margin: 0; color: var(--muted); }
.expert-info dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 30px 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
.expert-info dt { color: var(--muted); font-size: 10px; }
.expert-info dd { margin: 7px 0 0; font-size: 24px; font-weight: 800; }

.closing-panel { width: calc(100% - var(--pad) * 2); max-width: calc(var(--max) - var(--pad) * 2); margin: 0 auto var(--pad); padding: clamp(52px, 7vw, 104px); border-radius: 20px; background: var(--lime); }
.closing-panel > p:not(.eyebrow) { max-width: 740px; margin: 26px 0 0; font-size: 18px; line-height: 1.6; }
.closing-panel .button { margin-top: 34px; }
footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; min-height: 132px; padding: 24px var(--pad); border-top: 1px solid var(--line); font-size: 12px; }
footer p { margin: 0; }
footer p:last-child { text-align: right; }

/* Project detail */
.project-page { overflow: hidden; }
.project-hero { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(42px, 6vw, 100px); align-items: center; min-height: calc(100svh - 72px); padding: clamp(64px, 8vw, 124px) var(--pad); }
.project-title-block h1 { margin: 22px 0 26px; font-size: clamp(62px, 8vw, 132px); line-height: .84; letter-spacing: -.085em; }
.project-title-block > p { max-width: 650px; margin: 0; font-size: clamp(19px, 1.55vw, 25px); line-height: 1.55; }
.project-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.project-badges span, .project-badges strong { display: inline-flex; align-items: center; min-height: 34px; padding: 0 11px; border: 1px solid var(--ink); border-radius: 999px; font-size: 11px; }
.project-badges strong { background: var(--lime); }
.project-byline { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: var(--muted); font-size: 12px; letter-spacing: .04em; }
.project-byline strong { color: var(--ink); }
.project-title-block .hero-actions { justify-content: flex-start; margin-top: 36px; }
.project-cover { aspect-ratio: 16 / 11; margin: 0; overflow: hidden; border: 1px solid var(--ink); border-radius: 12px; background: #ddd; box-shadow: 18px 18px 0 var(--accent); }
.project-cover img { width: 100%; height: 100%; object-fit: cover; }
.project-cover.empty-cover { display: grid; place-items: center; padding: 30px; font-size: 54px; }
.quality-passport { display: grid; grid-template-columns: .65fr 1.35fr; gap: 40px; padding: clamp(66px, 8vw, 120px) var(--pad); color: white; background: var(--ink); }
.passport-title h2 { margin: 0; font-size: clamp(42px, 4.6vw, 72px); line-height: 1; letter-spacing: -.065em; }
.quality-passport > dl { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid rgba(255,255,255,.4); border-left: 1px solid rgba(255,255,255,.4); }
.quality-passport > dl > div { min-height: 160px; padding: 24px; border-right: 1px solid rgba(255,255,255,.4); border-bottom: 1px solid rgba(255,255,255,.4); }
.quality-passport dt { color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.quality-passport dd { display: grid; gap: 12px; margin: 30px 0 0; }
.quality-passport dd strong { font-size: 22px; }
.quality-passport dd span { color: #cfcfcf; font-size: 13px; line-height: 1.55; }
.review-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 140px); padding: clamp(72px, 9vw, 140px) var(--pad); background: white; }
.review-breakdown h2 { margin: 0; font-size: clamp(42px, 5vw, 76px); letter-spacing: -.065em; }
.review-breakdown > div > p:last-child { max-width: 650px; font-size: 17px; line-height: 1.7; }
.review-breakdown ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.review-breakdown li { display: flex; justify-content: space-between; align-items: center; min-height: 84px; border-bottom: 1px solid var(--line); }
.review-breakdown li strong { font-size: 32px; }
.review-breakdown li small { font-size: 12px; }
.award-reason { margin: var(--pad); padding: clamp(44px, 6vw, 82px); border-radius: 18px; background: var(--lime); }
.award-reason h2 { margin: 0 0 24px; font-size: clamp(42px, 5vw, 76px); }
.award-reason > p:not(.eyebrow) { max-width: 850px; margin: 0; font-size: 20px; line-height: 1.65; }
.award-reason > span { display: block; margin-top: 30px; font-size: 12px; font-weight: 700; }
.project-story { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 130px); padding: clamp(72px, 9vw, 140px) var(--pad); border-top: 1px solid var(--ink); }
.project-story h2 { margin: 0; font-size: clamp(40px, 4.6vw, 72px); line-height: 1; letter-spacing: -.065em; }
.story-lead { max-width: 920px; margin: 0; font-size: clamp(23px, 2.5vw, 40px); line-height: 1.48; letter-spacing: -.04em; }
.project-story.human-choice { background: var(--accent); }
.project-story.inverse { color: white; background: var(--ink); }
.validation-note { display: grid; grid-template-columns: 120px 1fr; gap: 20px; margin: 50px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.3); color: #d1d1d1; font-size: 15px; line-height: 1.65; }
.validation-note span { color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.reference-points { padding: clamp(82px, 9vw, 140px) var(--pad); }
.reference-points ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.reference-points li { display: grid; grid-template-columns: 90px 1fr; align-items: center; min-height: 120px; border-bottom: 1px solid var(--line); }
.reference-points li span { font-size: 12px; font-weight: 800; }
.reference-points li p { margin: 0; font-size: clamp(20px, 2.2vw, 34px); letter-spacing: -.035em; }
.project-closing { margin-top: 0; }
.not-found { min-height: calc(100svh - 72px); padding: 100px var(--pad); }
.not-found h1 { margin: 0; font-size: clamp(48px, 7vw, 100px); }
.not-found > p:not(.eyebrow) { font-size: 18px; }

/* Experts */
.experts-page, .expert-page, .rules-page, .board-page { overflow: hidden; }
.page-heading { max-width: 1300px; padding: clamp(86px, 9vw, 150px) var(--pad) clamp(72px, 8vw, 120px); }
.page-heading h1 { margin: 0; font-size: clamp(54px, 7.2vw, 112px); line-height: .93; letter-spacing: -.075em; }
.page-heading > p:not(.eyebrow) { max-width: 760px; margin: 34px 0 0; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.7; }
.expert-directory { padding: 0 var(--pad) clamp(90px, 10vw, 160px); }
.directory-label { display: flex; justify-content: space-between; padding: 16px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-size: 12px; }
.directory-label p { margin: 0; color: var(--muted); }
.expert-list { border-bottom: 1px solid var(--ink); }
.expert-row { display: grid; grid-template-columns: 50px 96px minmax(180px, .75fr) 1fr 310px 24px; gap: 22px; align-items: center; min-height: 136px; border-bottom: 1px solid var(--line); }
.expert-row:last-child { border-bottom: 0; }
.expert-index { color: var(--muted); font-size: 11px; }
.expert-thumb { aspect-ratio: 1; overflow: hidden; border-radius: 8px; background: #ddd; }
.expert-thumb img { width: 100%; height: 100%; object-fit: cover; }
.expert-name { display: grid; gap: 9px; }
.expert-name strong { font-size: clamp(28px, 3vw, 46px); letter-spacing: -.055em; }
.expert-name span, .expert-tools { color: var(--muted); font-size: 12px; line-height: 1.55; }
.expert-row > dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0; }
.expert-row dt { color: var(--muted); font-size: 9px; }
.expert-row dd { margin: 6px 0 0; font-size: 22px; font-weight: 800; }
.row-arrow { font-size: 22px; }
.expert-profile-hero { display: grid; grid-template-columns: 1fr .82fr; gap: clamp(50px, 8vw, 140px); align-items: center; min-height: calc(100svh - 72px); padding: clamp(68px, 8vw, 124px) var(--pad); }
.expert-profile-copy h1 { margin: 0; font-size: clamp(72px, 11vw, 180px); line-height: .82; letter-spacing: -.095em; }
.expert-profile-copy > p:not(.eyebrow) { max-width: 700px; margin: 36px 0 0; font-size: 19px; line-height: 1.7; }
.expert-profile-copy > p.maker-position { margin-top: 24px; color: var(--accent); font-size: 14px; font-weight: 800; letter-spacing: .02em; }
.expert-profile-copy > p.maker-position + p { margin-top: 16px; }
.expert-profile-copy > dl { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 620px; margin: 48px 0 0; border-top: 1px solid var(--ink); }
.expert-profile-copy > dl > div { padding: 18px 18px 0 0; }
.expert-profile-copy dt { color: var(--muted); font-size: 10px; }
.expert-profile-copy dd { margin: 8px 0 0; font-size: 30px; font-weight: 800; }
.expert-profile-cover { position: relative; aspect-ratio: .82; margin: 0; overflow: hidden; border-radius: 12px; background: var(--accent); }
.expert-profile-cover img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); }
.expert-profile-cover::after { content: ""; position: absolute; inset: 0; background: rgba(255,78,61,.18); }
.expert-profile-cover span { position: absolute; z-index: 2; right: 20px; bottom: 0; color: white; font-size: clamp(120px, 14vw, 240px); font-weight: 800; line-height: .75; }
.maker-proof { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; padding: clamp(72px, 8vw, 124px) var(--pad); color: white; background: var(--ink); }
.maker-proof h2 { margin: 0; font-size: clamp(42px, 5vw, 78px); line-height: 1; letter-spacing: -.07em; }
.maker-proof dl { margin: 0; border-top: 1px solid rgba(255,255,255,.4); }
.maker-proof dl > div { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.maker-proof dt { color: var(--lime); font-size: 11px; font-weight: 800; }
.maker-proof dd { margin: 0; font-size: 18px; line-height: 1.5; }
.profile-socials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.profile-socials a, .social-accounts a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 15px; border: 1px solid var(--ink); border-radius: 999px; font-size: 13px; font-weight: 700; }

/* Membership, jobs and social operations */
.work-bridge, .project-share { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 130px); padding: clamp(72px, 9vw, 136px) var(--pad); border-top: 1px solid var(--ink); }
.work-bridge h2, .project-share h2 { margin: 0; font-size: clamp(42px, 5vw, 78px); line-height: 1; letter-spacing: -.07em; }
.work-bridge > div:last-child > p, .project-share > div:last-child > p { max-width: 720px; margin: 0 0 30px; font-size: 18px; line-height: 1.7; }
.work-bridge .button { width: fit-content; }
.project-share { background: white; }
.project-share .hero-actions { justify-content: flex-start; }

.account-page { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(44px, 7vw, 110px); min-height: calc(100svh - 72px); padding: clamp(64px, 8vw, 120px) var(--pad); }
.account-intro { position: sticky; top: 118px; align-self: start; }
.account-intro h1 { margin: 0; font-size: clamp(52px, 6.8vw, 104px); line-height: .93; letter-spacing: -.078em; }
.account-intro > p:not(.eyebrow) { max-width: 640px; margin: 30px 0; font-size: 18px; line-height: 1.7; }
.account-shell { align-self: start; padding: clamp(26px, 4vw, 52px); border: 1px solid var(--ink); border-radius: 16px; background: white; }
.verified-email { display: grid; grid-template-columns: 110px 1fr auto; gap: 12px; align-items: center; margin-bottom: 30px; padding: 16px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.verified-email span { color: var(--muted); font-size: 12px; font-weight: 700; }
.verified-email strong { overflow: hidden; font-size: 14px; text-overflow: ellipsis; }
.verified-email b { padding: 7px 10px; border-radius: 999px; background: var(--lime); font-size: 11px; }
.account-quick { display: flex; gap: 10px; margin-top: 34px; }
.auth-switch { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 34px; border: 1px solid var(--ink); border-radius: 999px; overflow: hidden; }
.auth-switch a { display: grid; place-items: center; min-height: 50px; font-size: 14px; font-weight: 750; }
.auth-switch a.active { color: white; background: var(--ink); }
.form-note { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.text-link { display: inline-flex; align-items: center; min-height: 44px; font-size: 13px; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; }
.danger-zone, .claim-panel { margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); }
.danger-zone summary, .claim-panel summary { min-height: 44px; font-size: 14px; font-weight: 750; cursor: pointer; }
.danger-zone p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.danger-zone form { display: grid; gap: 14px; }
.danger-zone button { justify-self: start; min-height: 44px; border: 0; color: #a11; background: none; font-weight: 700; cursor: pointer; }

.jobs-page, .job-detail, .dashboard-page, .social-page, .policy-page { overflow: hidden; }
.jobs-hero, .social-hero, .dashboard-head { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(44px, 8vw, 140px); align-items: end; padding: clamp(72px, 9vw, 144px) var(--pad); border-bottom: 1px solid var(--ink); }
.jobs-hero h1, .social-hero h1, .dashboard-head h1 { margin: 0; font-size: clamp(58px, 8vw, 132px); line-height: .9; letter-spacing: -.085em; }
.jobs-hero > div:last-child > p, .social-hero > div:last-child > p { max-width: 680px; margin: 0 0 34px; font-size: 18px; line-height: 1.75; }
.jobs-hero .button { width: fit-content; }
.jobs-index, .social-section, .dashboard-section { padding: clamp(72px, 8vw, 130px) var(--pad); }
.jobs-index > .section-head > span { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.jobs-empty, .dashboard-empty { display: grid; justify-items: start; padding: clamp(38px, 5vw, 72px); border: 1px dashed var(--line); border-radius: 14px; background: rgba(255,255,255,.5); }
.jobs-empty > span { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.jobs-empty h3, .dashboard-empty h3 { margin: 18px 0 10px; font-size: clamp(30px, 4vw, 56px); letter-spacing: -.06em; }
.jobs-empty p, .dashboard-empty p { max-width: 640px; margin: 0 0 24px; line-height: 1.7; }
.job-list { border-top: 1px solid var(--ink); }
.job-card { border-bottom: 1px solid var(--ink); }
.job-card > a { display: grid; grid-template-columns: 190px 1fr 1.25fr 420px 130px; gap: 28px; align-items: center; min-height: 180px; padding: 26px 0; }
.job-card[hidden] { display: none; }
.job-card .job-meta { display: grid; gap: 10px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .06em; }
.job-card h3 { margin: 0; font-size: clamp(26px, 2.4vw, 40px); letter-spacing: -.055em; }
.job-card > a > p { margin: 0; line-height: 1.65; }
.job-card dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; }
.job-card dt { color: var(--muted); font-size: 10px; }
.job-card dd { margin: 7px 0 0; font-size: 13px; font-weight: 700; }
.job-card > a > strong { text-align: right; font-size: 13px; }
.jobs-principles { margin-top: 0; }

.job-detail-hero { padding: clamp(72px, 9vw, 144px) var(--pad); color: white; background: var(--ink); }
.job-detail-hero h1 { max-width: 1260px; margin: 30px 0; font-size: clamp(54px, 7.5vw, 118px); line-height: .92; letter-spacing: -.08em; }
.job-detail-hero > p { max-width: 830px; margin: 0; color: #dedede; font-size: 20px; line-height: 1.7; }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.job-meta span { display: inline-flex; align-items: center; min-height: 34px; padding: 0 11px; border: 1px solid currentColor; border-radius: 999px; font-size: 11px; font-weight: 800; }
.job-detail-hero dl { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1050px; margin: 60px 0 0; border-top: 1px solid rgba(255,255,255,.35); }
.job-detail-hero dl > div { padding: 18px 18px 0 0; }
.job-detail-hero dt { color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.job-detail-hero dd { margin: 10px 0 0; font-size: 20px; font-weight: 700; }
.job-detail-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(46px, 7vw, 120px); padding: clamp(72px, 8vw, 128px) var(--pad); }
.job-brief section { padding: 0 0 58px; margin-bottom: 58px; border-bottom: 1px solid var(--line); }
.job-brief h2, .job-apply h2 { margin: 0 0 24px; font-size: clamp(34px, 4vw, 60px); line-height: 1; letter-spacing: -.065em; }
.job-brief section > p:last-child { margin: 0; font-size: 18px; line-height: 1.8; }
.tool-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tool-list span { padding: 9px 13px; border: 1px solid var(--ink); border-radius: 999px; font-size: 13px; font-weight: 700; }
.reference-links { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.reference-links a { display: flex; align-items: center; min-height: 48px; padding: 0 16px; border: 1px solid var(--line); border-radius: 9px; background: white; }
.job-apply { position: sticky; top: 100px; align-self: start; padding: clamp(28px, 4vw, 46px); border: 1px solid var(--ink); border-radius: 16px; background: white; }
.job-apply > p:not(.eyebrow) { line-height: 1.7; }
.success-panel.compact { min-height: 0; padding: 20px 0; }
.success-panel.compact h3 { margin: 18px 0 8px; font-size: 28px; }
.social-share { display: grid; gap: 10px; margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); }
.social-share > span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.social-share a, .social-share button { display: flex; align-items: center; min-height: 44px; padding: 0; border: 0; background: transparent; font-size: 13px; font-weight: 700; cursor: pointer; }

.dashboard-head { align-items: end; }
.dashboard-actions { display: flex; justify-content: flex-end; gap: 10px; }
.dashboard-section { border-bottom: 1px solid var(--ink); }
.dashboard-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.dashboard-card { display: flex; flex-direction: column; min-height: 260px; padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: white; }
.dashboard-card > span { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.dashboard-card h3 { margin: auto 0 12px; font-size: 28px; letter-spacing: -.045em; }
.dashboard-card p { margin: 0 0 18px; line-height: 1.6; }
.dashboard-card > strong, .dashboard-card > a { font-size: 13px; font-weight: 750; }
.status-list { display: grid; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.status-list li { display: flex; justify-content: space-between; padding: 14px 16px; border: 1px solid var(--line); border-radius: 8px; background: white; }
.submission-status-list li { align-items: center; gap: 22px; padding: 18px 20px; }
.submission-status-list li > div { display: grid; gap: 7px; }
.submission-status-list small { color: var(--muted); line-height: 1.5; }
.submission-status-list li > span { flex: 0 0 auto; color: var(--accent); font-size: 13px; font-weight: 800; }
.dashboard-job { margin-bottom: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: white; }
.dashboard-job-head { display: flex; justify-content: space-between; gap: 24px; }
.dashboard-job-head h3 { margin: 10px 0; font-size: 30px; }
.dashboard-job-head p { margin: 0; color: var(--muted); }
.dashboard-job-head > div:last-child { display: flex; align-items: flex-start; gap: 12px; }
.dashboard-job-head button { border: 0; background: none; color: #a11; cursor: pointer; }
.application-stack { display: grid; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.application-stack > article { padding: 20px; border-radius: 10px; background: var(--paper); }
.application-person { display: flex; justify-content: space-between; gap: 18px; }
.application-person span { color: var(--accent); font-size: 12px; font-weight: 750; }
.application-stack p { line-height: 1.65; }
.application-links { display: flex; gap: 18px; font-size: 13px; font-weight: 700; }
.response-form { display: grid; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.response-form > div { display: flex; gap: 8px; }
.dashboard-empty-inline { margin: 20px 0 0; color: var(--muted); }
blockquote { margin: 16px 0 0; padding: 14px 18px; border-left: 4px solid var(--accent); background: white; line-height: 1.6; }

.social-accounts { display: flex; flex-wrap: wrap; gap: 8px; }
.social-section { border-bottom: 1px solid var(--ink); }
.social-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.social-card { overflow: hidden; border: 1px solid var(--ink); border-radius: 14px; background: white; }
.social-card > img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.social-card > div { padding: 28px; }
.social-card span { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.social-card h3 { margin: 32px 0 12px; font-size: clamp(30px, 3.5vw, 54px); letter-spacing: -.06em; }
.social-card p { margin: 0; line-height: 1.65; }
.social-card-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.social-card-actions .button { width: auto; min-height: 48px; cursor: pointer; }
.social-card-grid.text-only .social-card { min-height: 360px; }
.social-card-grid.text-only .social-card > div { display: flex; flex-direction: column; height: 100%; }
.social-card-grid.text-only .social-card-actions { margin-top: auto; padding-top: 30px; }
.social-policy { display: grid; grid-template-columns: .45fr .8fr 1fr; gap: 40px; padding: clamp(72px, 8vw, 130px) var(--pad); color: white; background: var(--ink); }
.social-policy h2 { margin: 0; font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -.07em; }
.social-policy > p:last-child { margin: 0; color: #d3d3d3; font-size: 17px; line-height: 1.7; }

.policy-page { max-width: 1100px; margin: 0 auto; padding: clamp(72px, 9vw, 140px) var(--pad); }
.policy-page > h1 { margin: 0; font-size: clamp(52px, 7vw, 100px); line-height: .94; letter-spacing: -.08em; }
.policy-lead { max-width: 820px; margin: 36px 0 80px; font-size: 20px; line-height: 1.75; }
.policy-page section { display: grid; grid-template-columns: .55fr 1.45fr; gap: 50px; padding: 32px 0; border-top: 1px solid var(--line); }
.policy-page section h2 { margin: 0; font-size: 24px; }
.policy-page section p { margin: 0; line-height: 1.8; }
.policy-date { margin-top: 40px; color: var(--muted); font-size: 12px; }

/* Rules and forms */
.review-principle { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 var(--pad) clamp(78px, 9vw, 140px); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.review-principle > div { min-height: 190px; padding: 28px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.review-principle span { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.review-principle strong { display: block; margin-top: 72px; font-size: clamp(24px, 2.5vw, 38px); letter-spacing: -.05em; }
.standard-intro { display: grid; grid-template-columns: .42fr 1fr .75fr; gap: 40px; align-items: start; padding: clamp(72px, 8vw, 120px) var(--pad); color: white; background: var(--ink); }
.standard-intro h2 { margin: 0; font-size: clamp(36px, 4vw, 62px); line-height: 1.08; letter-spacing: -.06em; }
.standard-intro > p:last-child { margin: 0; color: #d0d0d0; font-size: 16px; line-height: 1.7; }
.criteria-grid { display: grid; grid-template-columns: repeat(6, 1fr); padding: clamp(72px, 8vw, 120px) var(--pad); }
.criteria-grid article { grid-column: span 2; min-height: 300px; padding: 28px; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.criteria-grid article:nth-child(3n) { border-right: 1px solid var(--ink); }
.criteria-grid article:nth-last-child(-n+2) { grid-column: span 3; border-bottom: 1px solid var(--ink); }
.criteria-grid article:nth-child(4) { border-right: 0; }
.criteria-grid article:nth-child(5) { border-right: 1px solid var(--ink); }
.criteria-grid article:nth-child(1), .criteria-grid article:nth-child(2) { background: var(--lime); }
.criteria-grid article span { font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.criteria-grid article h2 { margin: 76px 0 16px; font-size: 29px; letter-spacing: -.05em; }
.criteria-grid article p { margin: 0; line-height: 1.7; }
.rule-band { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; padding: clamp(72px, 8vw, 120px) var(--pad); background: white; }
.rule-band h2 { margin: 0; font-size: clamp(42px, 4.8vw, 74px); line-height: 1; letter-spacing: -.07em; }
.rule-band ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.rule-band li { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
.rule-band li strong { text-align: right; }
.submission-standard { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; padding: clamp(72px, 8vw, 120px) var(--pad); }
.submission-standard h2 { margin: 0; font-size: clamp(42px, 4.8vw, 74px); letter-spacing: -.07em; }
.submission-standard ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.submission-standard li { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.submission-standard li > span { color: var(--accent); font-size: 11px; font-weight: 800; }
.submission-standard li p { display: grid; gap: 8px; margin: 0; line-height: 1.65; }
.submission-standard li strong { font-size: 20px; }

.form-page { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(42px, 6vw, 96px); align-items: start; padding: clamp(70px, 8vw, 120px) var(--pad); }
.form-intro { position: sticky; top: 116px; }
.form-intro h1 { margin: 0; font-size: clamp(50px, 6vw, 92px); line-height: .96; letter-spacing: -.075em; }
.form-intro > p:not(.eyebrow) { max-width: 650px; margin: 30px 0; font-size: 17px; line-height: 1.75; }
.form-intro > a { font-size: 14px; font-weight: 750; text-decoration: underline; text-underline-offset: 5px; }
.form-shell { padding: clamp(26px, 4vw, 52px); border: 1px solid var(--ink); border-radius: 16px; background: white; }
.submission-form { display: grid; gap: 24px; }
.submission-form label, .admin-login label, .score-form label { display: grid; gap: 9px; }
.submission-form label > span, .admin-login label > span, .score-form label > span { font-size: 14px; font-weight: 750; }
.field-grid { display: grid; gap: 16px; }
.field-grid.two { grid-template-columns: 1fr 1fr; }
.field-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
input, textarea, select { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid rgba(17,17,17,.28); border-radius: 9px; color: var(--ink); background: white; }
textarea { min-height: 128px; resize: vertical; line-height: 1.65; }
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(49,91,255,.18); border-color: var(--blue); }
.upload-field { padding: 20px; border: 1px dashed rgba(17,17,17,.4); border-radius: 12px; }
.upload-field input { padding: 10px; }
.upload-field small { color: var(--muted); }
.check-stack { display: grid; gap: 10px; }
.check-row { grid-template-columns: 22px 1fr !important; align-items: start; gap: 10px !important; }
.check-row input { width: 20px; min-height: 20px; margin: 2px 0 0; accent-color: var(--accent); }
.check-row span { font-weight: 500 !important; line-height: 1.5; }
.submit-button { width: 100%; border: 0; cursor: pointer; }
.error-panel { margin-bottom: 24px; padding: 18px 20px; border: 1px solid #d54545; border-radius: 10px; color: #7e1111; background: #fff2f2; }
.error-panel ul { margin: 10px 0 0; padding-left: 18px; line-height: 1.6; }
.success-panel { min-height: 420px; display: flex; flex-direction: column; justify-content: center; }
.success-panel > span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--lime); font-size: 24px; }
.success-panel h2 { margin: 24px 0 12px; font-size: 38px; }
.success-panel p { max-width: 560px; margin: 0; font-size: 17px; line-height: 1.7; }
.board-page { padding: 0 0 clamp(80px, 8vw, 120px); }
.board-page > section:not(.page-heading) { padding: 0 var(--pad); }
.saved-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.saved-card { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: white; }
.saved-card-cover { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #deded8; }
.saved-card-cover img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.saved-card > div { padding: 20px; }
.saved-card > div > span { color: var(--muted); font-size: 11px; font-weight: 750; }
.saved-card h2 { margin: 30px 0 12px; font-size: 30px; letter-spacing: -.055em; }
.saved-card p { min-height: 48px; margin: 0; color: #454545; font-size: 14px; line-height: 1.65; }
.empty-state { padding: 70px 24px; border: 1px dashed var(--line); border-radius: 14px; text-align: center; }
.empty-state strong { font-size: 26px; }
.empty-state p { margin: 12px 0 28px; }

.verification-page { display: grid; place-items: center; min-height: calc(100svh - 72px); padding: 60px var(--pad); }
.verification-card { width: min(100%, 720px); padding: clamp(30px, 5vw, 68px); border: 1px solid var(--ink); border-radius: 16px; background: white; }
.verification-card h1 { margin: 0; font-size: clamp(46px, 6vw, 78px); line-height: .96; letter-spacing: -.072em; }
.verification-card > p:not(.eyebrow) { max-width: 580px; margin: 26px 0 30px; font-size: 17px; line-height: 1.7; }
.resend-form { display: grid; gap: 14px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.resend-form label { display: grid; gap: 8px; }
.resend-form label span { font-size: 13px; font-weight: 750; }
.resend-form input { min-height: 52px; padding: 0 14px; border: 1px solid var(--line); border-radius: 9px; }
.resend-form .button { justify-self: start; }

/* Admin */
.admin-body { background: #e7e7e3; }
.admin-login { width: min(440px, calc(100% - 40px)); margin: 12vh auto; padding: 34px; border-radius: 16px; background: white; }
.admin-login .eyebrow { margin-top: 60px; }
.admin-login h1 { margin: 0 0 28px; font-size: 40px; }
.admin-login form { display: grid; gap: 14px; }
.admin-login .button { width: 100%; }
.admin-header { position: sticky; top: 0; z-index: 20; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 66px; padding: 10px 24px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.92); backdrop-filter: blur(14px); }
.admin-header form { text-align: right; }
.admin-header button { border: 0; background: none; cursor: pointer; }
.admin-main { width: min(1220px, calc(100% - 40px)); margin: 40px auto 100px; }
.admin-message { padding: 16px 18px; border-radius: 10px; }
.admin-message.success { background: #e9ffc5; }
.admin-message.error { color: #7e1111; background: #fff0f0; }
.admin-section { margin-top: 48px; }
.admin-section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 22px; }
.admin-section-head h1 { margin: 0; font-size: 40px; }
.admin-section-head > span { font-weight: 700; }
.admin-empty { padding: 40px; border-radius: 14px; background: white; }
.submission-review, .score-card { margin-bottom: 18px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: white; }
.submission-review { display: grid; grid-template-columns: minmax(260px, .7fr) 1.3fr; gap: 24px; }
.review-cover { overflow: hidden; min-height: 340px; border-radius: 10px; background: #ddd; }
.review-cover img { width: 100%; height: 100%; object-fit: cover; }
.review-copy h2, .score-card h2 { margin: 16px 0 8px; font-size: 30px; }
.review-tagline { font-size: 18px; }
.review-copy dl { display: grid; gap: 14px; }
.review-copy dl div { display: grid; grid-template-columns: 90px 1fr; gap: 14px; }
.review-copy dt { color: var(--muted); font-size: 13px; font-weight: 700; }
.review-copy dd { margin: 0; line-height: 1.6; }
.review-actions { display: flex; gap: 10px; margin-top: 24px; }
.review-actions form { display: flex; gap: 8px; }
.reject-form { flex: 1; }
.reject-form input { flex: 1; }
.score-card-head { display: flex; justify-content: space-between; gap: 20px; }
.score-total { font-size: 52px; }
.score-total small { font-size: 14px; }
.score-form { display: grid; gap: 16px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.score-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.score-form .button { justify-self: end; }
.admin-brief { display: grid; gap: 14px; margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--line); }
.admin-brief div { display: grid; grid-template-columns: 120px 1fr; gap: 18px; }
.admin-brief dt { color: var(--muted); font-size: 12px; font-weight: 700; }
.admin-brief dd { margin: 0; line-height: 1.65; }
.seo-status-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.seo-status-grid article { display: flex; flex-direction: column; min-height: 170px; padding: 20px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.seo-status-grid article > span { color: var(--muted); font-size: 12px; font-weight: 750; }
.seo-status-grid article > strong { margin: 18px 0 auto; font-size: 18px; line-height: 1.4; }
.seo-status-grid article > a, .seo-status-grid article > div a { font-size: 13px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.seo-status-grid article > div { display: flex; flex-wrap: wrap; gap: 12px; }
.seo-status-grid article small { color: var(--muted); line-height: 1.45; }
.seo-settings-form { display: grid; gap: 18px; margin-top: 14px; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: white; }
.seo-settings-form label { display: grid; gap: 9px; }
.seo-settings-form label > span { font-size: 14px; font-weight: 750; }
.seo-settings-form label > small { color: var(--muted); line-height: 1.5; }
.seo-settings-form .button { justify-self: end; }
.indexnow-form { display: flex; justify-content: space-between; gap: 28px; align-items: center; margin-top: 14px; padding: 20px 24px; border: 1px solid var(--line); border-radius: 14px; background: #f7f7f4; }
.indexnow-form strong { font-size: 18px; }
.indexnow-form p { margin: 7px 0 0; color: var(--muted); line-height: 1.5; }
.indexnow-form .button { flex: 0 0 auto; }

@media (max-width: 1080px) {
  .quality-hero-foot, .quality-chain, .quality-passport, .project-story, .maker-proof, .rule-band, .submission-standard, .work-bridge, .project-share, .account-page, .jobs-hero, .social-hero, .dashboard-head, .job-detail-grid, .social-policy, .references-hero, .reference-detail-hero, .reference-passport, .reference-summary, .reference-origin { grid-template-columns: 1fr; }
  .quality-hero-foot { gap: 34px; }
  .quality-hero-foot .hero-actions { justify-content: flex-start; }
  .quality-chain-head { position: static; }
  .featured-facts { grid-template-columns: 1fr 1fr; }
  .featured-facts > div:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .project-hero, .expert-profile-hero, .form-page { grid-template-columns: 1fr; }
  .project-cover { max-width: 900px; }
  .form-intro { position: static; }
  .expert-row { grid-template-columns: 42px 82px 1fr 240px 24px; }
  .expert-tools { display: none; }
  .standard-intro { grid-template-columns: 1fr 1fr; }
  .standard-intro > .eyebrow { grid-column: 1 / -1; }
  .score-grid { grid-template-columns: repeat(3, 1fr); }
  .account-intro, .job-apply { position: static; }
  .job-card > a { grid-template-columns: 140px 1fr 1.2fr 300px; }
  .job-card > a > strong { display: none; }
  .dashboard-cards { grid-template-columns: 1fr 1fr; }
  .social-policy { gap: 24px; }
  .references-hero, .reference-detail-hero { align-items: start; }
  .reference-grid, .reference-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reference-detail-cover { width: min(100% - 18px, 900px); }
  .reference-passport { gap: 52px; }
  .reference-summary, .reference-origin { gap: 42px; }
  .discovery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .saved-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compact-reference-grid { grid-template-columns: 1fr; }
  .compact-reference-cover { max-width: 1000px; }
}

@media (max-width: 760px) {
  .site-header { min-height: 66px; }
  nav > a:not(.nav-cta) { display: none; }
  .nav-cta { min-height: 44px; padding: 0 15px; }
  .quality-hero { padding-top: 42px; }
  .quality-kicker { align-items: flex-start; flex-direction: column; gap: 10px; margin-bottom: 52px; }
  .quality-kicker span { text-align: left; }
  .quality-hero h1 { font-size: clamp(38px, 12vw, 58px); line-height: .94; letter-spacing: -.075em; }
  .quality-hero-foot { margin-top: 38px; }
  .quality-hero-foot > p { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .featured-work { padding-top: 74px; }
  .featured-heading { align-items: start; flex-direction: column; }
  .featured-heading h2 { font-size: 58px; }
  .featured-maker { min-width: 0; }
  .featured-visual { aspect-ratio: 4 / 3; }
  .featured-visual span, .featured-visual strong { bottom: 15px; }
  .featured-visual span { left: 15px; }
  .featured-visual strong { right: 15px; }
  .featured-facts { grid-template-columns: 1fr; }
  .featured-facts > div, .featured-facts > div:not(:first-child) { min-height: 0; padding: 22px 0; border-right: 0; border-top: 1px solid var(--line); }
  .quality-chain { padding-top: 68px; }
  .quality-chain h2 { font-size: 48px; }
  .quality-chain li { grid-template-columns: 1fr; gap: 12px; min-height: 0; }
  .section-head { display: block; }
  .section-head > p, .section-head > a { display: block; margin-top: 18px; }
  .section-head h2, .closing-panel h2 { font-size: 42px; }
  .selected-grid, .project-grid, .expert-grid { grid-template-columns: 1fr; }
  .selected-card, .expert-card { grid-template-columns: 1fr; }
  .selected-card img { aspect-ratio: 16 / 10; }
  .expert-cover { min-height: 280px; }
  .browse-tools { align-items: stretch; flex-direction: column; }
  .search-field { flex-basis: auto; }
  .filter-row { margin-right: calc(var(--pad) * -1); padding-right: var(--pad); }
  .project-card-title { grid-template-columns: 1fr; }
  .project-card-title > span { text-align: left; }
  .project-credits { grid-template-columns: 1fr; }
  .project-actions { align-items: stretch; flex-direction: column; }
  .project-actions > a { min-height: 44px; display: flex; align-items: center; }
  .discovery-hero { padding: 30px 12px 38px; }
  .discovery-hero h1 { font-size: clamp(32px, 9.7vw, 44px); line-height: .94; }
  .discovery-hero h1 span, .discovery-hero h1 strong { display: block; }
  .discovery-catalog { padding-top: 12px; }
  .catalog-search-wrap { grid-template-columns: 1fr; gap: 10px; }
  .catalog-search input { min-height: 58px; padding-left: 17px; font-size: 16px; }
  .catalog-search-wrap > p { min-width: 0; text-align: left; }
  .catalog-filter-group { margin-right: calc(var(--pad) * -1); }
  .catalog-kind-row, .catalog-chip-row { padding-right: var(--pad); }
  .discovery-grid { grid-template-columns: 1fr; gap: 42px; }
  .discovery-card h2 { font-size: 32px; }
  .discovery-card-body > p { min-height: 0; font-size: 15px; }
  .engagement-bar.detail { border-radius: 12px; }
  .engagement-bar > span, .engagement-bar > button { min-height: 44px; padding: 0 3px; font-size: 10px; }
  .catalog-more { min-height: 56px; margin-top: 42px; }
  .compact-reference { min-height: 0; padding-top: 34px; }
  .compact-reference-grid { gap: 36px; }
  .compact-reference-copy h1 { font-size: 52px; }
  .compact-reference-copy > p { font-size: 17px; }
  .compact-reference-copy dl > div { grid-template-columns: 82px 1fr; }
  .compact-reference-actions { align-items: stretch; flex-direction: column; }
  .reference-preview-section, .references-index, .source-ledger { padding-top: 72px; padding-bottom: 72px; }
  .reference-grid, .reference-grid.compact { grid-template-columns: 1fr; }
  .reference-card-copy { min-height: 310px; padding: 22px 20px; }
  .reference-card h2, .reference-card h3 { margin-top: 38px; }
  .references-hero { gap: 42px; padding-top: 58px; padding-bottom: 58px; }
  .references-hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .references-hero-copy dl { margin-top: 34px; }
  .source-ledger li { grid-template-columns: 42px 1fr auto; gap: 12px; padding: 16px 0; }
  .source-ledger li > a { grid-column: 2 / -1; min-height: 44px; display: flex; align-items: center; text-align: left; }
  .reference-disclaimer { padding: 40px 24px; border-radius: 14px; }
  .reference-disclaimer h2 { font-size: 42px; }
  .reference-detail-hero { min-height: 0; gap: 48px; padding-top: 58px; padding-bottom: 72px; }
  .reference-detail-copy h1 { font-size: clamp(52px, 16vw, 76px); }
  .reference-detail-copy .hero-actions { align-items: stretch; }
  .reference-detail-cover { width: calc(100% - 10px); box-shadow: 10px 10px 0 var(--blue); }
  .reference-passport dl { grid-template-columns: 1fr; }
  .reference-passport dl > div { min-height: 136px; }
  .reference-summary > p { font-size: 23px; }
  .reference-origin > div:last-child > p { font-size: 16px; }
  .closing-panel { padding: 40px 24px; }
  footer { grid-template-columns: 1fr; }
  footer p:last-child { text-align: left; }
  .project-hero { min-height: 0; padding-top: 58px; }
  .project-title-block h1 { font-size: 56px; }
  .project-title-block > p { font-size: 18px; }
  .project-cover { box-shadow: 9px 9px 0 var(--accent); }
  .quality-passport > dl { grid-template-columns: 1fr; }
  .quality-passport > dl > div { min-height: 136px; }
  .review-breakdown { grid-template-columns: 1fr; gap: 36px; }
  .story-lead { font-size: 22px; }
  .validation-note { grid-template-columns: 1fr; }
  .reference-points li { grid-template-columns: 52px 1fr; min-height: 100px; }
  .page-heading h1 { font-size: 44px; }
  .review-principle, .standard-intro { grid-template-columns: 1fr; }
  .review-principle > div { min-height: 150px; }
  .review-principle strong { margin-top: 48px; }
  .criteria-grid { grid-template-columns: 1fr; }
  .criteria-grid article, .criteria-grid article:nth-last-child(-n+2) { grid-column: auto; min-height: 250px; border-right: 1px solid var(--ink); border-bottom: 0; }
  .criteria-grid article:last-child { border-bottom: 1px solid var(--ink); }
  .criteria-grid article h2 { margin-top: 54px; }
  .rule-band li { align-items: flex-start; flex-direction: column; }
  .rule-band li strong { text-align: left; }
  .submission-standard li { grid-template-columns: 42px 1fr; }
  .field-grid.two { grid-template-columns: 1fr; }
  .field-grid.three, .seo-status-grid { grid-template-columns: 1fr; }
  .expert-row { grid-template-columns: 34px 72px 1fr 24px; min-height: 116px; gap: 14px; }
  .expert-row > dl { display: none; }
  .expert-name strong { font-size: 30px; }
  .directory-label { align-items: flex-start; flex-direction: column; gap: 8px; }
  .expert-profile-hero { min-height: 0; padding-top: 64px; }
  .expert-profile-copy h1 { font-size: 74px; }
  .expert-profile-copy > dl { grid-template-columns: repeat(3, 1fr); }
  .expert-profile-cover { aspect-ratio: 4 / 5; }
  .maker-proof dl > div { grid-template-columns: 1fr; gap: 10px; }
  .submission-review { grid-template-columns: 1fr; }
  .review-cover { min-height: 250px; }
  .review-actions, .review-actions form { align-items: stretch; flex-direction: column; }
  .score-grid { grid-template-columns: 1fr 1fr; }
  .admin-header { grid-template-columns: 1fr auto; }
  .admin-header > strong { display: none; }
  .admin-main { width: min(100% - 24px, 1220px); }
  .admin-section-head h1 { font-size: 30px; }
  .work-bridge .button { width: 100%; }
  .account-page { min-height: 0; padding-top: 58px; }
  .account-intro { position: static; }
  .account-intro h1, .jobs-hero h1, .social-hero h1, .dashboard-head h1 { font-size: 48px; }
  .account-quick, .dashboard-actions { align-items: stretch; flex-direction: column; }
  .account-shell { padding: 24px 18px; }
  .verified-email { grid-template-columns: 1fr auto; }
  .verified-email span { grid-column: 1 / -1; }
  .jobs-hero, .social-hero, .dashboard-head { padding-top: 58px; }
  .jobs-hero .button { width: 100%; }
  .job-card > a { grid-template-columns: 1fr; gap: 14px; min-height: 0; padding: 24px 0; }
  .job-card .job-meta { display: flex; justify-content: space-between; }
  .job-card dl { grid-template-columns: 1fr 1fr 1fr; padding-top: 14px; border-top: 1px solid var(--line); }
  .job-detail-hero { padding-top: 58px; }
  .job-detail-hero h1 { font-size: 48px; }
  .job-detail-hero > p { font-size: 17px; }
  .job-detail-hero dl { grid-template-columns: 1fr 1fr; gap: 0; }
  .job-detail-hero dl > div { min-height: 94px; border-bottom: 1px solid rgba(255,255,255,.2); }
  .job-detail-hero dd { font-size: 16px; }
  .dashboard-cards, .social-card-grid { grid-template-columns: 1fr; }
  .saved-grid { grid-template-columns: 1fr; }
  .saved-card p { min-height: 0; }
  .submission-status-list li { align-items: flex-start; flex-direction: column; }
  .verification-page { padding: 34px 16px; }
  .verification-card { padding: 30px 20px; }
  .verification-card h1 { font-size: 44px; }
  .resend-form .button { width: 100%; }
  .dashboard-job-head { flex-direction: column; }
  .dashboard-job-head > div:last-child, .response-form > div { align-items: stretch; flex-direction: column; }
  .response-form .button { width: 100%; }
  .social-card-actions { align-items: stretch; flex-direction: column; }
  .social-card-actions .button { width: 100%; }
  .policy-page section { grid-template-columns: 1fr; gap: 12px; }
  .policy-lead { margin-bottom: 58px; font-size: 17px; }
  .admin-brief div { grid-template-columns: 1fr; gap: 6px; }
  .seo-settings-form { padding: 20px 16px; }
  .seo-settings-form .button { justify-self: stretch; }
  .indexnow-form { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Search-intent guides */
.guide-index-hero {
  display: grid;
  grid-template-columns: .55fr 1.15fr .7fr;
  gap: clamp(28px, 5vw, 90px);
  align-items: end;
  padding: clamp(72px, 9vw, 148px) var(--pad);
  border-bottom: 1px solid var(--ink);
}
.guide-index-hero h1 { margin: 0; font-size: clamp(54px, 6.8vw, 110px); line-height: .92; letter-spacing: -.075em; }
.guide-index-hero > p:last-child { margin: 0; font-size: 18px; line-height: 1.75; }
.guide-index { padding: clamp(70px, 8vw, 126px) var(--pad); }
.guide-index-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 30px; }
.guide-index-head h2 { margin: 0; font-size: clamp(36px, 4vw, 60px); letter-spacing: -.06em; }
.guide-index-head span { font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.guide-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.guide-card { border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper); }
.guide-card > a { display: flex; flex-direction: column; min-height: 420px; padding: 28px; }
.guide-card > a > span { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.guide-card h2 { margin: 60px 0 18px; font-size: clamp(27px, 2.3vw, 38px); letter-spacing: -.055em; }
.guide-card p { display: -webkit-box; overflow: hidden; margin: 0; color: #4e4e4e; font-size: 16px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 5; }
.guide-card strong { margin-top: auto; padding-top: 32px; font-size: 14px; }
.guide-card > a:hover { color: white; background: var(--ink); }
.guide-card > a:hover > span { color: var(--lime); }
.guide-card > a:hover p { color: #d4d4d4; }

.guide-article { width: min(100%, var(--max)); margin: 0 auto; }
.breadcrumbs { display: flex; align-items: center; gap: 9px; padding: 22px var(--pad); color: var(--muted); font-size: 13px; }
.breadcrumbs strong { color: var(--ink); }
.guide-hero { display: grid; grid-template-columns: 1.4fr .6fr; gap: clamp(50px, 8vw, 150px); align-items: end; padding: clamp(56px, 7vw, 110px) var(--pad) clamp(70px, 8vw, 126px); }
.guide-hero h1 { max-width: 1050px; margin: 0; font-size: clamp(50px, 6.5vw, 106px); line-height: .96; letter-spacing: -.075em; }
.guide-hero dl { margin: 0; border-top: 1px solid var(--ink); }
.guide-hero dl > div { display: grid; grid-template-columns: 88px 1fr; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.guide-hero dt { color: var(--muted); font-size: 12px; font-weight: 750; }
.guide-hero dd { margin: 0; font-size: 14px; font-weight: 650; }
.direct-answer { display: grid; grid-template-columns: .28fr 1fr; gap: clamp(40px, 8vw, 150px); padding: clamp(46px, 6vw, 88px) var(--pad); color: white; background: var(--ink); }
.direct-answer > span { color: var(--lime); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.direct-answer h2 { max-width: 1200px; margin: 0; font-size: clamp(25px, 2.8vw, 44px); line-height: 1.45; letter-spacing: -.04em; }
.guide-content { padding: 0 var(--pad); }
.guide-section { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(48px, 8vw, 150px); padding: clamp(68px, 8vw, 120px) 0; border-bottom: 1px solid var(--ink); }
.guide-section > div:first-child > span { color: var(--accent); font-size: 12px; font-weight: 800; }
.guide-section h2 { max-width: 550px; margin: 24px 0 0; font-size: clamp(38px, 4.4vw, 70px); line-height: 1.02; letter-spacing: -.065em; }
.guide-section > div:last-child > p { max-width: 780px; margin: 0 0 38px; font-size: 19px; line-height: 1.75; }
.guide-section ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.guide-section li { position: relative; padding: 19px 12px 19px 38px; border-bottom: 1px solid var(--line); font-size: 17px; line-height: 1.55; }
.guide-section li::before { content: "↳"; position: absolute; left: 5px; color: var(--accent); font-weight: 800; }
.guide-faq { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(48px, 8vw, 150px); padding: clamp(70px, 8vw, 122px) var(--pad); background: white; }
.guide-faq h2 { margin: 0; font-size: clamp(44px, 5vw, 78px); letter-spacing: -.07em; }
.guide-faq details { border-top: 1px solid var(--ink); }
.guide-faq details:last-child { border-bottom: 1px solid var(--ink); }
.guide-faq summary { position: relative; padding: 24px 44px 24px 0; cursor: pointer; font-size: 19px; font-weight: 750; list-style: none; }
.guide-faq summary::-webkit-details-marker { display: none; }
.guide-faq summary::after { content: "+"; position: absolute; right: 5px; font-size: 24px; }
.guide-faq details[open] summary::after { content: "−"; }
.guide-faq details p { max-width: 760px; margin: 0; padding: 0 44px 26px 0; color: #4f4f4f; font-size: 16px; line-height: 1.75; }
.guide-next { display: flex; justify-content: space-between; gap: 50px; align-items: end; padding: clamp(70px, 8vw, 124px) var(--pad); color: white; background: var(--blue); }
.guide-next h2 { margin: 0; font-size: clamp(46px, 5.4vw, 86px); line-height: .98; letter-spacing: -.07em; }
.guide-next .button { flex: 0 0 auto; color: var(--ink); border-color: var(--lime); background: var(--lime); }
.related-guides { padding: clamp(70px, 8vw, 120px) var(--pad); }
.related-guides > h2 { margin: 0 0 26px; font-size: 32px; }
.related-guides > div { border-top: 1px solid var(--ink); }
.related-guides a { display: grid; grid-template-columns: 180px 1fr 30px; gap: 20px; align-items: center; min-height: 88px; border-bottom: 1px solid var(--line); }
.related-guides a span { color: var(--muted); font-size: 12px; font-weight: 750; }
.related-guides a strong { font-size: 21px; }
.related-guides a b { font-size: 18px; }

@media (max-width: 1080px) {
  .guide-index-hero { grid-template-columns: 1fr 1.3fr; }
  .guide-index-hero > .eyebrow { grid-column: 1 / -1; }
  .guide-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-hero, .guide-section, .guide-faq { grid-template-columns: 1fr; }
  .guide-hero dl { max-width: 620px; }
}

@media (max-width: 760px) {
  .guide-index-hero { grid-template-columns: 1fr; gap: 28px; padding-top: 58px; }
  .guide-index-hero > .eyebrow { grid-column: auto; }
  .guide-index-hero h1 { font-size: 48px; }
  .guide-index-hero > p:last-child { font-size: 16px; }
  .guide-card-grid { grid-template-columns: 1fr; }
  .guide-card > a { min-height: 340px; padding: 24px 20px; }
  .guide-card h2 { margin-top: 42px; font-size: 31px; }
  .breadcrumbs { overflow-x: auto; white-space: nowrap; }
  .guide-hero { gap: 42px; padding-top: 44px; }
  .guide-hero h1 { font-size: 48px; }
  .direct-answer { grid-template-columns: 1fr; gap: 24px; }
  .direct-answer h2 { font-size: 24px; }
  .guide-section { gap: 38px; }
  .guide-section h2 { font-size: 42px; }
  .guide-section > div:last-child > p { font-size: 17px; }
  .guide-section li { font-size: 16px; }
  .guide-faq { gap: 42px; }
  .guide-faq h2 { font-size: 46px; }
  .guide-faq summary { font-size: 17px; }
  .guide-next { align-items: stretch; flex-direction: column; }
  .guide-next h2 { font-size: 46px; }
  .related-guides a { grid-template-columns: 1fr 28px; gap: 8px; padding: 16px 0; }
  .related-guides a span { grid-column: 1 / -1; }
}
