@font-face {
  font-family: "Neue Montreal";
  src: url("../Assets/fonts/NeueMontreal-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("../Assets/fonts/NeueMontreal-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("../Assets/fonts/NeueMontreal-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "OTJ Garamond";
  src: local("Garamond"), local("EB Garamond"), local("Cormorant Garamond");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --paper: #f5eadf;
  --paper-light: #fffaf2;
  --paper-soft: #f2dfcd;
  --paper-deep: #e4cdbb;

  --ink: #101010;
  --ink-soft: #3f3a35;
  --ink-muted: #83786e;
  --ink-faint: #aaa097;

  --accent-yellow: #e6d492;
  --accent-yellow-soft: #f6e9ad;
  --accent-brown: #7b563c;
  --accent-pink: #ead0cc;
  --accent-green: #dbe4d6;

  --rule: rgba(16, 16, 16, 0.82);
  --rule-soft: rgba(16, 16, 16, 0.18);
  --rule-faint: rgba(16, 16, 16, 0.075);

  --error: #8f1616;

  --shadow-paper: 0 34px 100px rgba(44, 33, 25, 0.16);
  --shadow-lift: 0 18px 50px rgba(44, 33, 25, 0.14);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --texture-sand: url("https://source.unsplash.com/900x700/?sand,texture");
  --texture-sky: url("https://source.unsplash.com/800x500/?sky,cloud,minimal");
  --texture-paper: url("https://source.unsplash.com/900x700/?paper,texture");
  --texture-interior: url("https://source.unsplash.com/900x900/?wood,interior,texture");
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: "OTJ Garamond", Garamond, "Times New Roman", serif;
  font-weight: 400;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 84% 9%, rgba(231, 207, 118, 0.22), transparent 24%),
    radial-gradient(circle at 8% 88%, rgba(123, 86, 60, 0.10), transparent 28%),
    linear-gradient(180deg, #efe0d3 0%, #e7d5c6 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(16, 16, 16, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 16, 0.043) 1px, transparent 1px);
  background-size: 88px 88px;
  mix-blend-mode: multiply;
}

button,
input {
  font-family: "Neue Montreal", Arial, Helvetica, sans-serif;
}

button {
  border-radius: 0;
}

/* ================================
   PAGE / MODERN JOURNAL PAPER
================================ */

.page {
  width: min(1260px, calc(100% - 34px));
  min-height: calc(100vh - 34px);
  margin: 17px auto;
  padding: 54px 76px 86px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.965), rgba(249, 238, 226, 0.965)),
    var(--paper-light);
  box-shadow: var(--shadow-paper);
  border: 1px solid rgba(16, 16, 16, 0.08);
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, transparent 75px, rgba(16, 16, 16, 0.10) 76px, transparent 77px),
    linear-gradient(rgba(16, 16, 16, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 16, 0.045) 1px, transparent 1px);
  background-size: 100% 100%, 184px 184px, 184px 184px;
  opacity: 0.45;
}

.page::after {
  content: "";
  position: absolute;
  top: 56px;
  right: 76px;
  width: 82px;
  height: 82px;
  background-image: url("../Assets/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.052;
  pointer-events: none;
}

/* ================================
   HEADER / BRAND
================================ */

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rule);
}

.topbar::after {
  content: "Evidence\A has texture";
  white-space: pre-line;
  position: absolute;
  right: 0;
  bottom: -172px;
  font-family: "OTJ Garamond", Garamond, "Times New Roman", serif;
  font-size: clamp(58px, 8vw, 120px);
  line-height: 0.82;
  letter-spacing: -0.085em;
  color: rgba(16, 16, 16, 0.055);
  pointer-events: none;
  user-select: none;
}

.brand-image-wrap {
  width: 352px;
  max-width: 100%;
  display: block;
  overflow: hidden;
  transform-origin: left center;
  transition:
    transform 0.7s var(--ease-out),
    filter 0.7s var(--ease-out);
}

.brand-image-wrap:hover {
  transform: translateY(-2px) rotate(-0.25deg);
  filter: contrast(1.08);
}

.brand-main-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  user-select: none;
  pointer-events: none;
}

/* ================================
   DECORATIVE IMAGE TILES
================================ */

.analyzer::before,
.analyzer::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0.92;
  filter: saturate(0.78) contrast(0.92);
}

.analyzer::before {
  top: -106px;
  right: 210px;
  width: 146px;
  height: 86px;
  background-image:
    linear-gradient(rgba(255, 250, 242, 0.02), rgba(255, 250, 242, 0.02)),
    var(--texture-sky);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(16, 16, 16, 0.08);
}

.analyzer::after {
  top: 188px;
  right: 0;
  width: 218px;
  height: 142px;
  background-image:
    linear-gradient(rgba(255, 250, 242, 0.06), rgba(255, 250, 242, 0.06)),
    var(--texture-interior);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(16, 16, 16, 0.08);
}

/* ================================
   SEARCH AREA / EDITORIAL LEAD
================================ */

.analyzer {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin-top: 70px;
}

.instruction {
  width: min(960px, 100%);
  margin-bottom: 20px;
  color: var(--ink-muted);
  font-family: "Neue Montreal", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.005em;
}

.search-form {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1fr 218px;
  align-items: stretch;
  position: relative;
  border: 1px solid var(--rule);
  background: rgba(255, 250, 242, 0.52);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
}

.search-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(44, 33, 25, 0.10);
  background: rgba(255, 250, 242, 0.76);
}

.search-form:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(44, 33, 25, 0.15);
}

.input-row {
  position: relative;
  min-width: 0;
  height: 78px;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.035), transparent 36%),
    rgba(243, 228, 215, 0.54);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--rule);
  transition:
    background 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.input-row:focus-within {
  background: rgba(255, 250, 242, 0.97);
}

.search-icon {
  width: 76px;
  flex: 0 0 76px;
  text-align: center;
  color: rgba(16, 16, 16, 0.48);
  font-family: "Neue Montreal", Arial, Helvetica, sans-serif;
  font-size: 38px;
  line-height: 1;
  transform: translateY(-3px);
  user-select: none;
  transition:
    transform 0.35s var(--ease-out),
    color 0.35s var(--ease-out);
}

.input-row:focus-within .search-icon,
.search-form:hover .search-icon {
  color: var(--ink);
  transform: translateY(-3px) scale(1.05);
}

.input-row input {
  width: 100%;
  height: 100%;
  padding: 0 28px 0 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  font-style: normal;
  letter-spacing: -0.025em;
}

.input-row input::placeholder {
  color: rgba(16, 16, 16, 0.42);
  opacity: 1;
}

.input-row input:focus::placeholder {
  color: rgba(16, 16, 16, 0.28);
}

#analyzeButton {
  width: 100%;
  height: 78px;
  border: none;
  background: var(--ink);
  color: var(--paper-light);
  font-size: 19px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    background 0.25s var(--ease-out),
    color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
}

#analyzeButton::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-yellow);
  transform: translateX(-101%);
  transition: transform 0.38s var(--ease-out);
  z-index: -1;
}

#analyzeButton::after {
  content: "→";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate(-8px, -50%);
  opacity: 0;
  transition:
    transform 0.35s var(--ease-out),
    opacity 0.35s var(--ease-out);
  z-index: 1;
}

#analyzeButton:hover::before {
  transform: translateX(0);
}

#analyzeButton:hover::after {
  transform: translate(0, -50%);
  opacity: 1;
}

#analyzeButton:hover {
  color: var(--ink);
}

#analyzeButton:active {
  transform: translateY(1px);
}

#analyzeButton:disabled {
  cursor: wait;
  opacity: 0.62;
}

/* ================================
   LIVE PROCESS LOGS
================================ */

.process-panel {
  width: min(980px, 100%);
  margin-top: 42px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule-soft);
  background: rgba(255, 250, 242, 0.42);
  backdrop-filter: blur(8px);
  animation: riseIn 0.55s var(--ease-out) both;
}

.process-header {
  min-height: 54px;
  padding: 0 2px;
  border-bottom: 1px solid var(--rule-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.process-header p {
  color: var(--ink-muted);
  font-family: "Neue Montreal", Arial, Helvetica, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

#processStatus {
  min-width: 94px;
  padding: 7px 12px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  text-align: center;
  font-family: "Neue Montreal", Arial, Helvetica, sans-serif;
  font-size: 12px;
  transition:
    background 0.25s var(--ease-out),
    color 0.25s var(--ease-out);
}

.log-box {
  max-height: 300px;
  overflow-y: auto;
  padding: 16px 0 18px;
}

.log-box::-webkit-scrollbar {
  width: 8px;
}

.log-box::-webkit-scrollbar-track {
  background: rgba(16, 16, 16, 0.06);
}

.log-box::-webkit-scrollbar-thumb {
  background: rgba(16, 16, 16, 0.32);
}

.log-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
  transition:
    background 0.25s var(--ease-out),
    padding-left 0.25s var(--ease-out);
}

.log-item:hover {
  background: rgba(255, 250, 242, 0.62);
  padding-left: 8px;
}

.log-item:last-child {
  border-bottom: none;
}

.log-time {
  color: var(--ink-muted);
  font-family: "Neue Montreal", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.log-message {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.45;
}

/* ================================
   ERROR
================================ */

.error-box {
  width: min(980px, 100%);
  margin-top: 32px;
  padding: 18px 0;
  color: var(--error);
  border-top: 1px solid var(--error);
  border-bottom: 1px solid rgba(143, 22, 22, 0.22);
  background: transparent;
  font-size: 17px;
  line-height: 1.5;
  animation: riseIn 0.4s var(--ease-out) both;
}

/* ================================
   REPORT
================================ */

.result-box {
  position: relative;
  margin-top: 78px;
  padding-top: 46px;
  border-top: 3px double var(--rule);
  animation: riseIn 0.75s var(--ease-out) both;
}

.result-box::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--rule-faint);
}

.result-box::after {
  content: "";
  position: absolute;
  top: 52px;
  right: 0;
  width: 92px;
  height: 92px;
  background-image: url("../Assets/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.report-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  margin-bottom: 54px;
  padding-right: 118px;
}

.report-label {
  margin-bottom: 11px;
  color: var(--ink-muted);
  font-family: "Neue Montreal", Arial, Helvetica, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-style: normal;
}

.motto {
  max-width: 680px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

#downloadPdfButton {
  min-width: 166px;
  height: 48px;
  padding: 0 18px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  font-family: "Neue Montreal", Arial, Helvetica, sans-serif;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  transition:
    background 0.25s var(--ease-out),
    color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

#downloadPdfButton:hover {
  background: var(--accent-yellow);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(44, 33, 25, 0.12);
}

#downloadPdfButton:active {
  transform: translateY(1px);
}

#downloadPdfButton:disabled {
  opacity: 0.55;
  cursor: wait;
}

.score-line {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 24px;
  margin-bottom: 58px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rule-soft);
}

#scoreValue {
  color: var(--ink);
  font-size: clamp(96px, 12vw, 164px);
  line-height: 0.76;
  font-weight: 400;
  letter-spacing: -0.095em;
}

#classificationValue {
  padding-bottom: 12px;
  color: var(--ink-soft);
  font-size: 34px;
  line-height: 1.05;
  font-style: italic;
  letter-spacing: -0.05em;
}

/* ================================
   ARTICLE-LIKE SECTIONS
================================ */

.report-section {
  margin-top: 62px;
}

.section-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--ink-muted);
  font-family: "Neue Montreal", Arial, Helvetica, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

#claimTitle {
  max-width: 990px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.075em;
}

.summary {
  max-width: 900px;
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

/* ================================
   FACT TABLE
================================ */

.details-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 68px 0 22px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  background: rgba(255, 250, 242, 0.32);
}

.details-grid div {
  min-height: 142px;
  padding: 17px 16px 18px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.42), rgba(243, 228, 215, 0.28));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    background 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.details-grid div:hover {
  background: var(--accent-yellow-soft);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(44, 33, 25, 0.08);
}

.details-grid span {
  display: block;
  color: var(--ink-muted);
  font-family: "Neue Montreal", Arial, Helvetica, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  line-height: 1.35;
}

.details-grid strong {
  display: block;
  margin-top: 26px;
  color: var(--ink);
  font-size: 31px;
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.details-grid div:nth-child(6) strong {
  font-size: 24px;
  line-height: 1;
}

/* ================================
   SOURCES
================================ */

.sources-list {
  list-style: none;
  max-width: 980px;
  border-top: 2px solid var(--rule);
}

.sources-list li {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.38;
  transition:
    padding-left 0.25s var(--ease-out),
    background 0.25s var(--ease-out);
}

.sources-list li:hover {
  padding-left: 10px;
  background: rgba(246, 233, 173, 0.28);
}

.sources-list strong {
  color: var(--ink);
  font-weight: 400;
}

.sources-list span {
  color: var(--ink-soft);
}

/* ================================
   ANALYSIS BODY COPY
================================ */

.analysis-text {
  max-width: 940px;
  border-top: 2px solid var(--rule);
  padding-top: 26px;
  column-count: 2;
  column-gap: 54px;
}

.analysis-text p {
  margin-bottom: 18px;
  break-inside: avoid;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.analysis-text p:first-child {
  color: var(--ink);
}

/* ================================
   TRANSPARENCY FOOTNOTE
================================ */

.transparency-section {
  margin-top: 72px;
  padding: 30px 0 0;
  background: transparent;
  border: none;
  border-top: 2px solid var(--rule);
}

.transparency-section p {
  max-width: 920px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.48;
  letter-spacing: -0.015em;
}

/* ================================
   SELECTION / CURSOR FEEL
================================ */

::selection {
  background: var(--accent-yellow);
  color: var(--ink);
}

a,
button,
.sources-list li,
.details-grid div,
.brand-image-wrap {
  cursor: pointer;
}

input {
  cursor: text;
}

.hidden {
  display: none !important;
}

/* ================================
   ANIMATIONS
================================ */

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1180px) {
  .details-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sources-list li {
    grid-template-columns: 220px 1fr;
  }

  .analyzer::after {
    opacity: 0.28;
  }
}

@media (max-width: 980px) {
  .page {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 52px 36px 78px;
  }

  .page::before {
    background:
      linear-gradient(90deg, transparent 0, transparent 34px, rgba(16, 16, 16, 0.08) 35px, transparent 36px),
      linear-gradient(rgba(16, 16, 16, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(16, 16, 16, 0.035) 1px, transparent 1px);
    background-size: 100% 100%, 144px 144px, 144px 144px;
  }

  .page::after {
    right: 36px;
    top: 52px;
    width: 72px;
    height: 72px;
  }

  .brand-image-wrap {
    width: 318px;
  }

  .analyzer {
    margin-top: 64px;
  }

  .analyzer::before {
    right: 92px;
  }

  .analyzer::after {
    display: none;
  }

  .report-header {
    padding-right: 104px;
  }

  .analysis-text {
    column-count: 1;
  }
}

@media (max-width: 720px) {
  body {
    background: #ead9cc;
  }

  .page {
    padding: 34px 20px 58px;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    border: none;
  }

  .page::before,
  .page::after,
  .topbar::after,
  .analyzer::before,
  .analyzer::after {
    display: none;
  }

  .topbar {
    padding-bottom: 24px;
  }

  .brand-image-wrap {
    width: 266px;
  }

  .analyzer {
    margin-top: 48px;
  }

  .instruction {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .input-row {
    height: 66px;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  .search-icon {
    width: 58px;
    flex-basis: 58px;
    font-size: 32px;
  }

  .input-row input {
    font-size: 16px;
  }

  #analyzeButton {
    height: 62px;
  }

  #analyzeButton::after {
    right: 22px;
  }

  .process-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  #processStatus {
    min-width: 0;
  }

  .log-box {
    max-height: 260px;
  }

  .log-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }

  .result-box::after {
    display: none;
  }

  .report-header {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  #downloadPdfButton {
    width: 100%;
  }

  .score-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #classificationValue {
    padding-bottom: 0;
    font-size: 28px;
  }

  #claimTitle {
    letter-spacing: -0.055em;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .details-grid div {
    min-height: 104px;
  }

  .sources-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .analysis-text {
    column-count: 1;
  }
}

@media (max-width: 420px) {
  .page {
    padding: 30px 16px 48px;
  }

  .brand-image-wrap {
    width: 232px;
  }

  #scoreValue {
    font-size: 82px;
  }
}
/* ================================
   FORCE OTJ GARAMOND EVERYWHERE
================================ */

body,
.page,
.analyzer,
.result-box,
.report-section,
.summary,
.analysis-text,
.analysis-text p,
.sources-list,
.sources-list li,
.sources-list strong,
.sources-list span,
.details-grid,
.details-grid div,
.details-grid strong,
.motto,
#claimTitle,
#scoreValue,
#classificationValue,
.log-message,
.error-box,
.transparency-section p {
  font-family: "OTJ Garamond", Garamond, "Times New Roman", serif !important;
}

/* Keep only technical micro-labels cleaner */
.section-kicker,
.report-label,
.details-grid span,
.process-header p,
#processStatus,
.log-time {
  font-family: "Neue Montreal", Arial, Helvetica, sans-serif !important;
}

/* Make input and buttons Garamond too */
input,
button,
#analyzeButton,
#downloadPdfButton {
  font-family: "OTJ Garamond", Garamond, "Times New Roman", serif !important;
}