@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-500-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-500-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/montserrat-400-800-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/montserrat-400-800-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --paper: #eee8dd;
  --paper-soft: #f7f2ea;
  --paper-warm: #e5ddd0;
  --ink: #191714;
  --muted: #5f594f;
  --muted-2: #82796c;
  --rule: #c7beaf;
  --rule-soft: #ddd3c4;
  --navy: #172332;
  --red: #8f342d;
  --brass: #9a7634;
  --charcoal: #1c1e22;
  --white: #fffaf2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.32), transparent 22%, transparent 78%, rgba(255, 250, 242, 0.26)),
    var(--paper);
  color: var(--ink);
  font-family: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.52;
}

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

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 26px 0 42px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 64px;
  border-bottom: 1px solid var(--rule);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 250px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand span {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
  line-height: 1.02;
}

.brand strong,
.brand em {
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.brand em {
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--red);
}

.nav a.active {
  color: var(--ink);
  border-bottom: 1px solid var(--red);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(290px, 0.82fr);
  gap: clamp(34px, 4.6vw, 62px);
  align-items: center;
  padding: clamp(34px, 5.3vh, 46px) 0 clamp(32px, 4.8vh, 42px);
  border-bottom: 1px solid var(--rule);
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker,
.status-label {
  margin: 0;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
.dossier h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 730px;
  margin: 16px 0 18px;
  font-size: clamp(48px, 4.35vw, 62px);
  line-height: 1.02;
}

.lede {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 19px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.cta.primary {
  color: var(--navy);
}

.cta.primary::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 10px;
  background: var(--red);
}

.cta.secondary {
  color: var(--muted);
}

.signal-strip {
  display: none;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.signal-strip span {
  flex: 1 1 160px;
  min-height: 42px;
  padding: 12px 18px 11px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-strip span + span {
  border-left: 1px solid var(--rule);
  padding-left: 18px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 760px;
  margin-top: 30px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.hero-proof span {
  flex: 1 1 190px;
  padding: 12px 18px 11px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof span + span {
  border-left: 1px solid var(--rule);
  padding-left: 18px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 400px;
}

.image-frame {
  height: min(390px, 46vh);
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper-soft);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(0.96) brightness(1.03) sepia(0.08);
}

.dossier-note {
  position: absolute;
  right: -18px;
  bottom: 12px;
  width: min(246px, 80%);
  padding: 16px 16px 14px;
  border: 1px solid var(--rule);
  background: rgba(247, 242, 234, 0.94);
  box-shadow: 0 18px 40px rgba(25, 23, 20, 0.09);
}

.note-label {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dossier-note strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.05;
}

.dossier-note p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.section {
  padding: clamp(58px, 8vw, 88px) 0;
  border-bottom: 1px solid var(--rule);
}

.section h2,
.ai-band h2,
.contact-section h2 {
  margin: 10px 0 0;
  font-size: clamp(40px, 4.6vw, 58px);
  line-height: 1;
}

.section h3,
.process-line h3,
.audience h3 {
  margin: 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(230px, 0.44fr) minmax(0, 0.78fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head .section-kicker {
  grid-column: 1 / -1;
}

.section-head h2 {
  max-width: 590px;
}

.section-head p:not(.section-kicker) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.section-head.compact {
  align-items: start;
}

.clarify {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.78fr);
  gap: 42px;
  padding-top: 54px;
}

.clarify h2 {
  max-width: 360px;
}

.clarify-body > p {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.rule-list,
.ai-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.rule-list li,
.ai-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid var(--rule);
}

.rule-list span,
.ai-list span,
.number,
.process-line span {
  color: var(--brass);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.service-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.service-table article {
  min-height: 390px;
  padding: 24px 22px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.service-table h3 {
  margin: 18px 0 12px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.18;
}

.service-table p,
.service-table li,
.audience p,
.dossier p,
.process-line p,
.about-block p,
.trust-panel li,
.ai-band p,
.contact-section p {
  color: var(--muted);
}

.service-table p {
  margin: 0;
  font-size: 15px;
}

.service-table ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-table li {
  position: relative;
  padding: 8px 0 8px 14px;
  border-top: 1px solid var(--rule-soft);
  font-size: 14px;
}

.service-table li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--red);
}

.audience {
  display: grid;
  grid-template-columns: minmax(230px, 0.6fr) minmax(0, 1fr);
  gap: 42px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.audience-grid article {
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

.audience-grid h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.05;
}

.dossier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dossier {
  min-height: 270px;
  padding: 24px 24px 22px;
  border: 1px solid var(--rule);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.74), rgba(247, 242, 234, 0.5)),
    var(--paper-soft);
}

.dossier h3 {
  margin: 20px 0 14px;
  font-size: 31px;
  line-height: 1.02;
}

.dossier p:last-child {
  margin-bottom: 0;
  font-size: 15px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.process-line article {
  min-height: 210px;
  padding: 22px 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.process-line h3 {
  margin-top: 22px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.process-line p {
  margin: 12px 0 0;
  font-size: 14px;
}

.ai-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 54px;
  margin: clamp(54px, 7vw, 82px) calc((100vw - min(1180px, calc(100vw - 64px))) / -2) 0;
  padding: clamp(54px, 7vw, 76px) calc((100vw - min(1180px, calc(100vw - 64px))) / 2);
  background: var(--charcoal);
  color: var(--white);
}

.ai-band .section-kicker,
.ai-band .ai-list span {
  color: #c59c55;
}

.ai-band h2 {
  max-width: 470px;
  color: var(--white);
}

.ai-band p {
  margin: 0 0 24px;
  color: #d9d1c3;
}

.ai-list {
  border-color: rgba(255, 250, 242, 0.2);
}

.ai-list li {
  border-color: rgba(255, 250, 242, 0.2);
  color: var(--white);
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
  gap: 52px;
  align-items: start;
}

.about-block h2 {
  max-width: 760px;
}

.about-block p {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 18px;
}

.trust-panel {
  padding: 8px 0 0;
}

.trust-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.trust-panel li {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}

.contact-section {
  padding: clamp(60px, 8vw, 92px) 0;
  border-bottom: 1px solid var(--rule);
}

.contact-section h2 {
  max-width: 820px;
}

.contact-section p {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 18px;
}

.email-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  color: var(--muted);
  font-size: 12px;
}

.footer a {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.56fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: end;
  padding: clamp(50px, 8vw, 86px) 0 clamp(42px, 6vw, 66px);
  border-bottom: 1px solid var(--rule);
}

.page-hero h1 {
  max-width: 820px;
  margin: 14px 0 20px;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 19px);
}

.page-context {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}

.page-context dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.page-context div {
  display: grid;
  gap: 4px;
}

.page-context dt,
.meta-label {
  color: var(--brass);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-context dd {
  margin: 0;
  color: var(--muted);
}

.featured-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.38fr);
  gap: 46px;
  align-items: stretch;
  padding: clamp(34px, 5.5vw, 56px);
  border: 1px solid var(--rule);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.8), rgba(229, 221, 208, 0.34)),
    var(--paper-soft);
}

.feature-copy h2,
.preview-main h2,
.work-highlight h2,
.audience-routes h2 {
  max-width: 760px;
}

.feature-copy p:not(.section-kicker),
.preview-main p,
.work-highlight p,
.audience-routes p,
.pathway-item p,
.preview-rail p,
.update-list span {
  color: var(--muted);
}

.feature-copy p:not(.section-kicker),
.preview-main p,
.work-highlight p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 18px;
}

.feature-aside {
  display: grid;
  align-content: end;
  border-left: 1px solid var(--rule);
  padding-left: 28px;
}

.brief-points {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin: 24px 0 8px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.brief-points li {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}

.brief-points strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.24;
  text-transform: uppercase;
}

.brief-points span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.brief-preview-card {
  display: grid;
  gap: 14px;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--rule);
  background:
    linear-gradient(135deg, rgba(143, 52, 45, 0.06), transparent 40%),
    rgba(255, 250, 242, 0.72);
}

.brief-preview-card ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: brief-step;
}

.brief-preview-card li {
  position: relative;
  min-height: 50px;
  padding: 12px 0 12px 44px;
  border-top: 1px solid var(--rule);
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.1;
  counter-increment: brief-step;
}

.brief-preview-card li::before {
  content: counter(brief-step, decimal-leading-zero);
  position: absolute;
  top: 13px;
  left: 0;
  color: var(--brass);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.link-list,
.update-list {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.link-list li,
.update-list li {
  border-bottom: 1px solid var(--rule);
}

.link-list a,
.update-list a {
  display: grid;
  gap: 5px;
  padding: 14px 0;
  text-decoration: none;
}

.link-list a:hover,
.update-list a:hover {
  color: var(--red);
}

.service-pathways .section-head {
  display: block;
  max-width: 820px;
  margin-bottom: 40px;
}

.service-pathways .section-head .section-kicker {
  margin-bottom: 20px;
}

.service-pathways .section-head h2 {
  max-width: 760px;
}

.service-pathways .section-head p:not(.section-kicker) {
  max-width: 720px;
  margin-top: 18px;
}

.pathway-list {
  display: grid;
  border-top: 1px solid var(--rule);
}

.pathway-item {
  display: grid;
  grid-template-columns: 78px minmax(220px, 0.42fr) minmax(0, 0.78fr);
  gap: 28px;
  align-items: center;
  min-height: 126px;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}

.pathway-item:hover h3 {
  color: var(--red);
}

.static-pathway:hover h3 {
  color: var(--navy);
}

.pathway-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.18;
}

.pathway-item p {
  margin: 0;
}

.section-cta-row {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 24px;
}

.audience-routes {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.audience-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.audience-panels article {
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}

.audience-panels h3,
.preview-rail h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.04;
}

.audience-panels p {
  margin: 16px 0 0;
}

.audience-cta-row {
  grid-column: 2;
  justify-content: flex-start;
  margin-top: -18px;
}

.editorial-preview,
.work-and-notes {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.44fr);
  gap: 54px;
  align-items: start;
}

.preview-rail,
.notes-preview {
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}

.preview-rail article {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}

.preview-rail h3 {
  margin-top: 14px;
}

.preview-rail p {
  margin: 12px 0 0;
  font-size: 15px;
}

.visual-preview-rail {
  padding: 24px;
  border: 1px solid var(--rule);
  background: rgba(255, 250, 242, 0.5);
}

.library-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 24px 0 8px;
}

.library-status article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--rule);
  background: rgba(255, 250, 242, 0.58);
}

.library-status span {
  color: var(--brass);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.library-status strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.08;
}

.library-status p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.work-highlight {
  min-height: 320px;
  padding: clamp(34px, 5vw, 50px);
  border: 1px solid var(--rule);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.72), rgba(247, 242, 234, 0.44)),
    var(--paper-soft);
}

.update-list strong {
  color: var(--navy);
  font-size: 15px;
}

.update-list span {
  font-size: 14px;
}

.update-card,
.meta-panel,
.note-panel {
  border: 1px solid var(--rule);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.7), rgba(247, 242, 234, 0.42)),
    var(--paper-soft);
}

.update-card {
  display: grid;
  align-content: space-between;
  min-height: 245px;
  padding: 24px;
  text-decoration: none;
}

.update-card h3,
.detail-title h2 {
  margin: 16px 0 12px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.04;
}

.update-card p,
.detail-copy p,
.article-body p,
.article-body li,
.meta-panel li,
.note-panel p {
  color: var(--muted);
}

.research-index-list {
  display: grid;
  border-top: 1px solid var(--rule);
}

.research-index-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  min-height: 132px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}

.research-index-item h3 {
  max-width: 720px;
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.02;
}

.research-index-item p:not(.status-label) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.research-index-item .cta {
  align-self: center;
  justify-self: end;
  margin-top: 0;
  white-space: nowrap;
}

.research-state {
  align-self: center;
  justify-self: end;
  color: var(--brass);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.split-list {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
  gap: 42px;
}

.detail-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.detail-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}

.detail-list strong {
  color: var(--navy);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.34fr);
  gap: 52px;
  align-items: start;
}

.article-body {
  max-width: 760px;
}

.article-body h2 {
  margin: 36px 0 14px;
  font-size: clamp(34px, 4.2vw, 52px);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  margin: 0 0 18px;
  font-size: 18px;
}

.article-body ul {
  margin: 0 0 24px;
  padding-left: 20px;
}

.meta-panel,
.note-panel {
  padding: 24px;
}

.meta-panel ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.meta-panel li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}

.update-stack {
  display: grid;
  gap: 16px;
}

.update-card {
  min-height: 0;
}

.update-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.46fr);
  gap: 52px;
  align-items: start;
}

.contact-card {
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}

.contact-note {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  color: var(--muted-2);
  font-size: 13px;
}

.hero-visual-editorial {
  min-height: 420px;
}

.editorial-atmosphere {
  position: relative;
  height: min(390px, 46vh);
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background:
    linear-gradient(90deg, rgba(199, 190, 175, 0.26) 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 190, 175, 0.2) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 250, 242, 0.94), rgba(229, 221, 208, 0.72));
  background-size: 34px 34px, 34px 34px, auto;
}

.desk-document,
.chart-card,
.review-card {
  position: absolute;
  border: 1px solid var(--rule);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: 0 18px 38px rgba(25, 23, 20, 0.08);
}

.desk-document {
  display: grid;
  gap: 11px;
  padding: 18px;
}

.desk-document span,
.review-card span,
.report-cover span,
.brief-cover-large span,
.process-visual span,
.issue-strip span,
.analysis-panel span,
.ai-workflow-card span {
  color: var(--brass);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desk-document strong,
.review-card strong,
.report-cover strong,
.brief-cover-large strong {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.04;
}

.desk-document i,
.report-cover i,
.brief-cover-large i {
  display: block;
  height: 1px;
  background: var(--rule);
}

.document-large {
  left: 11%;
  top: 11%;
  width: 58%;
  min-height: 210px;
  transform: rotate(-2deg);
}

.document-small {
  right: 10%;
  top: 13%;
  width: 34%;
  min-height: 132px;
  transform: rotate(3deg);
}

.chart-card {
  left: 15%;
  bottom: 12%;
  display: flex;
  align-items: end;
  gap: 9px;
  width: 34%;
  height: 112px;
  padding: 16px;
  transform: rotate(2deg);
}

.chart-card span {
  flex: 1;
  background: var(--navy);
}

.chart-card span:nth-child(1) {
  height: 35%;
}

.chart-card span:nth-child(2) {
  height: 62%;
  background: var(--red);
}

.chart-card span:nth-child(3) {
  height: 48%;
  background: var(--brass);
}

.chart-card span:nth-child(4) {
  height: 76%;
}

.review-card {
  right: 9%;
  bottom: 17%;
  width: 38%;
  padding: 16px;
  transform: rotate(-1deg);
}

.feature-aside-visual {
  align-content: start;
  gap: 22px;
}

.report-cover,
.brief-cover-large {
  display: grid;
  gap: 12px;
  border: 1px solid var(--rule);
  background:
    linear-gradient(135deg, rgba(23, 35, 50, 0.08), transparent 42%),
    rgba(255, 250, 242, 0.76);
}

.report-cover {
  min-height: 190px;
  padding: 20px;
}

.brief-cover-large {
  min-height: 230px;
  margin-bottom: 24px;
  padding: 22px;
}

.pathway-item {
  grid-template-columns: 72px minmax(220px, 0.42fr) minmax(0, 0.78fr);
  align-items: start;
  padding: 24px 0;
}

.pathway-item .number {
  padding-top: 2px;
}

.pathway-item h3 {
  padding-top: 2px;
}

.market-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.market-map span {
  min-height: 58px;
  padding: 12px;
  border: 1px solid var(--rule);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.analysis-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 8px;
}

.analysis-panel div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--rule);
  background: rgba(255, 250, 242, 0.66);
}

.analysis-panel strong {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.24;
}

.ai-workflow-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 22px;
  border: 1px solid rgba(255, 250, 242, 0.22);
}

.ai-workflow-card span {
  min-height: 70px;
  padding: 16px;
  color: #d7b06b;
  border-right: 1px solid rgba(255, 250, 242, 0.22);
}

.ai-workflow-card span:last-child {
  border-right: 0;
}

.service-asset-band,
.about-place-visual {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.service-asset-band p:not(.section-kicker),
.about-place-visual p:not(.section-kicker) {
  color: var(--muted);
}

.process-visual {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.process-visual span {
  min-height: 120px;
  padding: 18px;
  color: var(--navy);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.meta-panel-visual,
.note-panel-visual {
  padding-top: 24px;
}

.matrix-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 22px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.matrix-preview span,
.matrix-preview i {
  min-height: 40px;
  padding: 10px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.matrix-preview span {
  color: var(--brass);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.matrix-preview i {
  background: rgba(255, 250, 242, 0.52);
}

.updates-asset-band {
  padding-top: 36px;
  padding-bottom: 0;
  border-bottom: 0;
}

.issue-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.issue-strip span {
  min-height: 84px;
  padding: 18px;
  color: var(--navy);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 250, 242, 0.52);
}

.office-trust-frame {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--rule);
  background: rgba(255, 250, 242, 0.68);
}

.office-trust-frame img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  border: 1px solid var(--rule-soft);
  background: var(--paper-soft);
  filter: saturate(0.86) contrast(0.98) brightness(1.02) sepia(0.05);
}

.photo-hero {
  position: relative;
  align-self: stretch;
  min-height: 420px;
}

.photo-frame,
.section-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper-soft);
  box-shadow: 0 20px 46px rgba(25, 23, 20, 0.12);
}

.photo-frame img,
.section-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98) brightness(1.02) sepia(0.05);
}

.hero-photo-frame {
  height: min(410px, 48vh);
  min-height: 320px;
  transform: rotate(-0.7deg);
}

.photo-note {
  position: absolute;
  right: -18px;
  bottom: 12px;
  width: min(270px, 80%);
  padding: 16px 16px 14px;
  border: 1px solid var(--rule);
  background: rgba(247, 242, 234, 0.95);
  box-shadow: 0 18px 40px rgba(25, 23, 20, 0.09);
  transform: rotate(1.2deg);
}

.photo-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.photo-note strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.05;
}

.photo-note p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.research-photo {
  height: 150px;
  margin-bottom: 18px;
}

.service-photo {
  height: 320px;
  margin-top: 34px;
}

.work-photo {
  height: 190px;
  margin: 22px 0 8px;
}

.research-wide-photo {
  height: 310px;
}

.brief-photo,
.applied-photo {
  height: 170px;
  margin-bottom: 22px;
}

.trust-photos {
  display: grid;
  gap: 18px;
}

.trust-photos .office-trust-frame {
  transform: rotate(-0.4deg);
}

.trust-photos .secondary-place {
  width: 82%;
  margin-left: auto;
  transform: rotate(1.1deg);
}

@media (max-width: 980px) {
  .page-shell {
    width: min(100% - 38px, 820px);
  }

  .site-header,
  .hero,
  .page-hero,
  .featured-band,
  .audience-routes,
  .editorial-preview,
  .work-and-notes,
  .clarify,
  .audience,
  .closing,
  .ai-band,
  .split-list,
  .detail-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 18px;
  }

  .nav {
    justify-content: flex-start;
  }

  .feature-aside {
    border-left: 0;
    border-top: 1px solid var(--rule);
    padding: 24px 0 0;
  }

  .pathway-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px 22px;
    align-items: start;
    padding: 22px 0;
  }

  .pathway-item p {
    grid-column: 2;
  }

  .hero {
    gap: 34px;
    padding-top: 38px;
  }

  .hero-visual {
    min-height: 0;
  }

  .photo-hero {
    min-height: 0;
  }

  .image-frame {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .dossier-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -1px;
    box-shadow: none;
  }

  .photo-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -1px;
    box-shadow: none;
    transform: none;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-cta-row {
    grid-column: auto;
    margin-top: -18px;
  }

  .library-status {
    grid-template-columns: 1fr;
  }

  .dossier-grid,
  .audience-grid,
  .audience-panels,
  .research-index-item {
    grid-template-columns: 1fr;
  }

  .research-index-item {
    gap: 12px;
    min-height: 0;
  }

  .research-index-item .cta {
    justify-self: start;
    margin-top: 4px;
  }

  .research-state {
    justify-self: start;
    margin-top: 4px;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-line article {
    min-height: 0;
  }

  .ai-band {
    margin-inline: calc((100vw - min(100% - 38px, 820px)) / -2);
    padding-inline: calc((100vw - min(100% - 38px, 820px)) / 2);
  }

  .research-wide-photo {
    height: auto;
    aspect-ratio: 16 / 7;
  }
}

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

  .page-shell {
    width: min(100% - 28px, 460px);
    padding-top: 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand strong,
  .brand em {
    font-size: 12px;
  }

  .nav {
    gap: 8px 14px;
    font-size: 11px;
    letter-spacing: 0.07em;
  }

  .hero {
    padding: 34px 0 38px;
  }

  h1 {
    margin-top: 14px;
    font-size: clamp(38px, 11.4vw, 45px);
    line-height: 1.02;
  }

  .lede {
    font-size: 16px;
  }

  .cta-row {
    gap: 10px 18px;
    margin-top: 20px;
  }

  .cta {
    min-height: 32px;
    font-size: 12px;
  }

  .signal-strip {
    display: none;
  }

  .hero-proof span {
    flex-basis: 100%;
    padding: 10px 0;
  }

  .hero-proof span + span {
    border-left: 0;
    border-top: 1px solid var(--rule);
    padding-left: 0;
  }

  .image-frame {
    aspect-ratio: 5 / 4;
  }

  .hero-photo-frame,
  .service-photo,
  .work-photo,
  .brief-photo,
  .applied-photo {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .research-photo {
    height: auto;
    aspect-ratio: 16 / 7;
  }

  .section {
    padding: 46px 0;
  }

  .section h2,
  .ai-band h2,
  .contact-section h2 {
    font-size: clamp(32px, 9vw, 40px);
  }

  .clarify-body > p,
  .about-block p,
  .contact-section p {
    font-size: 16px;
  }

  .rule-list li,
  .ai-list li {
    grid-template-columns: 42px 1fr;
    min-height: 50px;
  }

  .rule-list span,
  .ai-list span,
  .number,
  .process-line span {
    font-size: 26px;
  }

  .service-table {
    grid-template-columns: 1fr;
  }

  .service-table article {
    min-height: 0;
    padding: 22px 18px;
  }

  .dossier {
    min-height: 0;
    padding: 22px 18px;
  }

  .featured-band,
  .work-highlight {
    padding: 24px 18px;
  }

  .pathway-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pathway-item p {
    grid-column: auto;
  }

  .brief-points li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .brief-preview-card {
    min-height: 0;
    padding: 18px;
  }

  .brief-preview-card li {
    font-size: 17px;
  }

  .section-cta-row {
    justify-content: flex-start;
  }

  .dossier h3,
  .audience-grid h3,
  .audience-panels h3,
  .preview-rail h3 {
    font-size: 28px;
  }

  .ai-band {
    margin-inline: 0;
    padding: 48px 18px;
  }

  .trust-photos .secondary-place {
    width: 100%;
  }

  .email-link {
    font-size: 15px;
    word-break: break-word;
  }

  .page-hero {
    padding: 36px 0 42px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .update-card,
  .meta-panel,
  .note-panel {
    padding: 20px 18px;
  }

  .detail-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .page-shell {
    width: min(100% - 24px, 360px);
  }

  .site-header {
    gap: 14px;
    min-height: 0;
    padding-bottom: 14px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand strong,
  .brand em {
    font-size: 11px;
  }

  .nav {
    gap: 7px 12px;
    font-size: 10px;
  }

  .eyebrow,
  .section-kicker,
  .status-label {
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .hero {
    padding-top: 24px;
  }

  h1 {
    margin: 10px 0 12px;
    font-size: clamp(33px, 10.6vw, 38px);
    line-height: 1;
  }

  .lede {
    font-size: 15px;
    line-height: 1.42;
  }

  .cta-row {
    margin-top: 15px;
  }

  .cta {
    min-height: 28px;
    font-size: 11px;
  }
}

@media (max-width: 980px) {
  .editorial-atmosphere {
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: 300px;
  }

  .pathway-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .pathway-item h3,
  .pathway-item p {
    grid-column: 2;
  }

  .service-asset-band,
  .about-place-visual {
    grid-template-columns: 1fr;
  }

  .process-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .office-trust-frame img {
    max-height: none;
  }
}

@media (max-width: 620px) {
  .editorial-atmosphere {
    aspect-ratio: 5 / 4;
    min-height: 280px;
  }

  .document-large {
    left: 8%;
    top: 9%;
    width: 66%;
  }

  .document-small {
    right: 7%;
    top: 18%;
    width: 40%;
  }

  .chart-card {
    left: 9%;
    width: 42%;
  }

  .review-card {
    right: 7%;
    width: 46%;
  }

  .pathway-item {
    grid-template-columns: 42px 1fr;
  }

  .pathway-item h3,
  .pathway-item p {
    grid-column: 2;
  }

  .analysis-panel,
  .ai-workflow-card,
  .issue-strip,
  .process-visual {
    grid-template-columns: 1fr;
  }

  .ai-workflow-card span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.22);
  }

  .ai-workflow-card span:last-child {
    border-bottom: 0;
  }

  .market-map {
    grid-template-columns: 1fr;
  }
}
