/* ===========================================================
   The TJ Method — calm clarity for leaders in transition.
   Palette: warm cream + slate + burnt sienna accent.
   =========================================================== */

:root {
  --cream:      #F5F0E8;
  --cream-2:    #EEE7DA;
  --cream-3:    #E6DFD0;
  --ink:        #1F2937;
  --ink-soft:   #3F4858;
  --ink-quiet:  #6B7280;
  --line:       #D9D1C2;
  --accent:     #B45309;
  --accent-2:   #8A3E07;
  --white:      #FBFAF7;
  --max:        1080px;
  --max-narrow: 760px;
  --r:          14px;
  --r-sm:       8px;
  --t:          0.25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

/* HTML `hidden` attribute should always hide, even when an element has
   a custom display value (flex / grid). Without this, .read-card and
   .progress quietly ignore .hidden = true. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--t);
}
a:hover { color: var(--accent-2); }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
  line-height: 1.18;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--accent); }

p { margin: 0 0 1em; }

/* container */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ----- NAV ----- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,250,247,0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); font-family: 'Fraunces', serif;
}
.nav-brand:hover { color: var(--ink); }
.nav-mark {
  width: 32px; height: 32px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
}
.nav-name { font-size: 17px; font-weight: 500; }

.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: 14.5px;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 500;
}
.nav-cta:hover { background: var(--accent-2); color: var(--white) !important; }

@media (max-width: 720px) {
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  text-align: center;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 16.5px;
}

/* ----- HERO ----- */
.hero {
  padding: 88px 0 96px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 880px; }
.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
}
.hero h1 {
  font-size: clamp(38px, 6.2vw, 64px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex; flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
.hero-note {
  color: var(--ink-quiet);
  font-size: 14px;
  margin: 0;
}

/* ----- SECTIONS ----- */
.section { padding: 96px 0; }
.section-cream { background: var(--cream); }

.kicker {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 20px;
}
.kicker-quiet { color: var(--ink-quiet); }
.section-h {
  font-size: clamp(28px, 4.2vw, 44px);
  max-width: 720px;
  margin-bottom: 24px;
}
.section-lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 56px;
}

/* ----- GRIDS ----- */
.grid { display: grid; gap: 40px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 760px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 56px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.grid-lg { gap: 64px; }

/* ----- PROBLEM NUMBERED ----- */
.numbered .num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.numbered h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.numbered p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

/* ----- 5 CEES ----- */
.cees {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-bottom: 80px;
}
@media (min-width: 720px) { .cees { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cees { grid-template-columns: repeat(5, 1fr); gap: 16px; } }

.cee {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 22px 26px;
  transition: transform var(--t), box-shadow var(--t);
}
.cee:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px -10px rgba(31,41,55,0.15);
}
.cee-letter {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.cee h3 { font-size: 19px; margin-bottom: 8px; }
.cee p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* ----- DOUBLE DIAMOND ----- */
.dd {
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.dd-h { font-size: clamp(22px, 3vw, 30px); margin-bottom: 24px; max-width: 600px; }
.dd-list {
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: ddc;
  display: grid;
  gap: 20px;
}
@media (min-width: 720px) {
  .dd-list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1000px) {
  .dd-list { grid-template-columns: repeat(7, 1fr); gap: 14px; }
  .dd-list li { padding: 20px 16px; font-size: 14px; }
  .dd-list strong { font-size: 16px; }
}
.dd-list li {
  position: relative;
  counter-increment: ddc;
  padding: 22px 22px 22px 22px;
  background: var(--cream);
  border-radius: var(--r);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.dd-list li::before {
  content: "0" counter(ddc);
  display: block;
  font-family: 'Fraunces', serif;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.dd-list strong { color: var(--ink); display: block; font-size: 17px; font-weight: 600; margin-bottom: 4px; font-family: 'Fraunces', serif; }

/* ----- PATHS ----- */
.path {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 40px 36px;
}
.path-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
  font-weight: 600;
}
.path h3 { font-size: 26px; margin-bottom: 16px; }
.path > p { color: var(--ink-soft); }
.checks {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
}
.checks li {
  position: relative;
  padding: 6px 0 6px 26px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 8px;
  border-left: 1.8px solid var(--accent);
  border-bottom: 1.8px solid var(--accent);
  transform: rotate(-45deg);
}
.path-shape {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.path-shape strong { color: var(--ink); }

/* ----- DIAGNOSTIC TEASER ----- */
.diag-teaser { background: var(--ink); color: var(--cream); padding: 80px 0; }
.diag-teaser .kicker { color: var(--cream-3); }
.diag-teaser .section-h { color: var(--cream); }
.diag-teaser .section-lede { color: var(--cream-2); }
.diag-teaser em { color: var(--cream); }
.diag-teaser .btn-primary {
  background: var(--cream);
  color: var(--ink);
}
.diag-teaser .btn-primary:hover { background: var(--accent); color: var(--cream); }
.diag-inner { text-align: center; max-width: 720px; }
.diag-inner .section-lede { margin-left: auto; margin-right: auto; margin-bottom: 36px; }

/* ----- PRINCIPLES (homepage) ----- */
.section-principles {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}
@media (min-width: 820px) {
  .principles { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.principle {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px 28px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.principle:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(31,41,55,0.16);
}
.principle-tag {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 14px;
}
.principle h3 {
  font-size: 24px;
  margin: 0 0 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.principle p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0;
}
.principle p strong { color: var(--ink); font-weight: 600; }

/* ----- READS HUB STATS STRIP ----- */
.reads-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 760px;
}
@media (min-width: 640px) {
  .reads-stats { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(34px, 4.8vw, 48px);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-sub {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-quiet);
  letter-spacing: 0.04em;
  margin-left: 4px;
  text-transform: lowercase;
}
.stat-lbl {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  font-weight: 500;
}
.reads-promise {
  margin-top: 24px;
  font-size: 14.5px;
  color: var(--ink-quiet);
}
.reads-promise em { font-style: italic; }

/* ----- STOP / START / CONTINUE prompt (results pages) ----- */
.ssc-prompt {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r);
  padding: 32px 32px 28px;
  margin: 32px 0;
}
@media (max-width: 640px) { .ssc-prompt { padding: 26px 22px 22px; } }

.ssc-kicker {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 600;
  margin: 0 0 8px;
}
.ssc-h {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 14px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.ssc-intro {
  color: var(--cream-2);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 640px;
}
.ssc-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .ssc-cols { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.ssc-col {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: var(--r-sm);
  padding: 18px 18px 16px;
}
.ssc-lbl {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ssc-col p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-2);
}

/* ----- WORKED WITH (clients) ----- */
.section-clients {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 96px 0 88px;
  overflow: hidden; /* keep the marquee tidy at viewport edges */
}
.clients-head { margin-bottom: 48px; }
.clients-head .section-h { max-width: 720px; }

.clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  padding: 8px 0;
}

.clients-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: clientsScroll 70s linear infinite;
  will-change: transform;
}
.clients-marquee:hover .clients-track,
.clients-marquee:focus-within .clients-track { animation-play-state: paused; }

@keyframes clientsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  padding: 6px 0;
  opacity: 0.85;
  transition: opacity var(--t), color var(--t);
}
.client:hover { opacity: 1; color: var(--accent); }

/* delicate divider between wordmarks */
.client:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  vertical-align: middle;
  margin-left: 64px;
  transform: translateY(-2px);
}

.clients-foot {
  margin: 44px auto 0;
  font-size: 14px;
  color: var(--ink-quiet);
  text-align: center;
  max-width: 740px;
  line-height: 1.6;
  font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; gap: 28px 56px; }
  .client:not(:last-child)::after { display: none; }
}

@media (max-width: 720px) {
  .section-clients { padding: 72px 0 64px; }
  .clients-track { gap: 44px; animation-duration: 55s; }
  .client:not(:last-child)::after { margin-left: 44px; }
}

/* ----- ABOUT ----- */
.about-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .about-grid { grid-template-columns: 1.5fr 1fr; gap: 64px; } }
.about-copy p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 18px;
}
.about-credentials {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 28px 24px;
  height: fit-content;
}
.about-credentials h4 {
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.about-credentials ul {
  list-style: none;
  padding: 0; margin: 0;
}
.about-credentials li {
  padding: 9px 0;
  border-bottom: 1px solid var(--cream-3);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.about-credentials li:last-child { border-bottom: 0; }

/* ----- CONTACT ----- */
.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 56px; } }

.contact-card {
  background: var(--cream);
  border-radius: var(--r);
  padding: 32px 30px;
  border: 1px solid var(--line);
  height: fit-content;
}
.contact-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.contact-line {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
}
.contact-line .lbl {
  display: inline-block;
  width: 76px;
  color: var(--ink-quiet);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-line a { color: var(--ink); border-bottom: 1px solid var(--cream-3); }
.contact-line a:hover { color: var(--accent); border-color: var(--accent); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 36px 32px;
}
.contact-form h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label > span {
  display: block;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15.5px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--t);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-note {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--ink-quiet);
  min-height: 1.4em;
}
.form-note.ok { color: var(--accent); }
.form-note.err { color: #b91c1c; }

/* ----- FOOTER ----- */
.footer {
  background: var(--ink);
  color: var(--cream-2);
  padding: 56px 0 48px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
}
.foot-brand {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  margin: 0 0 6px;
  color: var(--cream);
}
.foot-sep { color: var(--ink-quiet); }
.foot-small {
  font-size: 13.5px;
  color: var(--cream-3);
  margin: 0 0 6px;
  line-height: 1.6;
}
.foot-confidential { font-style: italic; }
.footer a { color: var(--cream); border-bottom: 1px solid rgba(245,240,232,0.25); }
.footer a:hover { color: var(--cream); border-color: var(--cream); }
.foot-right { text-align: right; }
@media (max-width: 640px) { .foot-right { text-align: left; } }

/* ===========================================================
   SURVEY PAGE
   =========================================================== */

.survey-page { background: var(--cream); min-height: 100vh; padding: 64px 0 80px; }

.survey-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
}

.survey-head { text-align: center; margin-bottom: 40px; }
.survey-head .eyebrow { color: var(--accent); }
.survey-head h1 {
  font-size: clamp(32px, 4.5vw, 44px);
  margin-bottom: 14px;
}
.survey-head p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
}

.survey-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 44px 44px 36px;
  box-shadow: 0 12px 40px -16px rgba(31,41,55,0.12);
}
@media (max-width: 640px) { .survey-card { padding: 32px 24px; } }

.progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--ink-quiet);
  letter-spacing: 0.05em;
}
.progress-bar {
  flex: 1;
  height: 4px;
  background: var(--cream-3);
  margin: 0 16px;
  border-radius: 999px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--accent);
  width: 10%;
  transition: width 0.4s cubic-bezier(.4,0,.2,1);
}

.step { display: none; }
.step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: none; } }

.step-cee {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 12px;
}
.step h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 12px;
}
.step-desc {
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-size: 16px;
}

.question {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-3);
}
.question:last-of-type { border-bottom: 0; padding-bottom: 0; }
.question p { font-size: 16.5px; color: var(--ink); margin: 0 0 14px; font-weight: 500; }
.scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.scale label {
  position: relative;
  cursor: pointer;
}
.scale input { position: absolute; opacity: 0; pointer-events: none; }
.scale span {
  display: block;
  text-align: center;
  padding: 14px 6px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  font-size: 14px;
  color: var(--ink-soft);
  transition: all var(--t);
  line-height: 1.25;
}
.scale input:checked + span {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.scale label:hover span { border-color: var(--accent); color: var(--accent); }
.scale input:checked + span:hover { color: var(--white); border-color: var(--ink); }
.scale-num { display: block; font-family: 'Fraunces', serif; font-size: 18px; margin-bottom: 2px; font-weight: 500; }
.scale-lbl { display: block; font-size: 11.5px; letter-spacing: 0.04em; line-height: 1.1; }

.step-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 12px;
}
.step-nav .btn { min-width: 120px; }
.btn-back {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}
.btn-back:hover { background: var(--cream); color: var(--ink); }

/* RESULTS */
.results { display: none; }
.results.active { display: block; animation: fadeIn 0.4s ease; }
.results-h {
  font-size: clamp(26px, 3.6vw, 36px);
  margin-bottom: 12px;
}
.results-summary {
  background: var(--cream);
  border-radius: var(--r);
  padding: 22px 26px;
  margin: 24px 0 32px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.results-summary strong { color: var(--ink); }

.bars { margin: 24px 0 32px; }
.bar-row {
  margin-bottom: 18px;
}
.bar-row:last-child { margin-bottom: 0; }
.bar-label {
  display: flex; justify-content: space-between;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.bar-label .bar-name { font-weight: 600; }
.bar-label .bar-score { font-family: 'Fraunces', serif; color: var(--accent); }
.bar-track {
  height: 10px;
  background: var(--cream-3);
  border-radius: 999px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  width: 0;
  transition: width 0.9s cubic-bezier(.4,0,.2,1);
}

/* Results CTA + email form (brand-aligned, no nested forms) */
.results-cta {
  margin-top: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 36px 36px 30px;
}
@media (max-width: 640px) { .results-cta { padding: 28px 22px 24px; } }

.results-cta-h {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.results-cta-p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 540px;
}

.email-form { margin: 0; }
.email-form label {
  display: block;
  margin-bottom: 18px;
}
.email-form label > span {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 8px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.email-form input,
.email-form textarea {
  width: 100%;
  display: block;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  line-height: 1.5;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  resize: vertical;
}
.email-form input:focus,
.email-form textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180,83,9,0.12);
}
.email-form textarea { min-height: 88px; }

.email-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px) {
  .email-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .email-row label { margin-bottom: 0; }
}

.email-submit {
  display: block;
  width: 100%;
  margin-top: 22px;
  padding: 16px 26px;
  font-size: 15.5px;
}
@media (min-width: 560px) {
  .email-submit { width: auto; min-width: 280px; }
}

.results-actions {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-3);
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* small */
.muted { color: var(--ink-quiet); }
.center { text-align: center; }

/* ===========================================================
   THE METHOD READS — hub + dynamic read page
   =========================================================== */

/* hub hero */
.reads-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 80px 0 72px;
}
.reads-hero h1 {
  font-size: clamp(38px, 6vw, 60px);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.reads-hero h1 em { color: var(--accent); font-style: italic; font-weight: 400; }
.reads-hero .lede { max-width: 700px; color: var(--ink-soft); font-size: 18px; }
.reads-meta {
  margin-top: 18px;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--ink-quiet);
  text-transform: uppercase;
}

/* hub situational filter */
.reads-filter {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 44px 0 32px;
}
.reads-filter-q {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 22px;
}
.reads-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.pill {
  appearance: none;
  cursor: pointer;
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  line-height: 1.3;
  transition: all var(--t);
}
.pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pill.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.pill.is-active:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: var(--cream);
}
.reads-filter-intro {
  max-width: 720px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  font-style: italic;
  transition: opacity var(--t);
}
.reads-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-quiet);
  font-size: 15px;
  padding: 32px 0;
}
@media (max-width: 640px) {
  .reads-filter { padding: 36px 0 28px; }
  .pill { padding: 9px 14px; font-size: 13.5px; }
}

/* hub list */
.reads-list {
  padding: 72px 28px 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 940px;
}
@media (min-width: 720px) {
  .reads-list { grid-template-columns: 1fr 1fr; gap: 20px; }
}

.read-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 28px 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.read-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 14px 30px -16px rgba(31,41,55,0.16);
}
.read-card-num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  min-width: 44px;
  padding-top: 4px;
}
.read-card-body { flex: 1; }
.read-card h2 {
  font-size: 22px;
  margin: 0 0 8px;
  font-weight: 500;
}
.read-card-tag {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0 0 14px;
}
.read-card-meta {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-quiet);
  margin: 0 0 18px;
  text-transform: uppercase;
}
.read-card .btn-primary { padding: 10px 20px; font-size: 14.5px; }
.read-card-pin {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(180,83,9,0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin: 0 0 12px;
  font-weight: 600;
}
.read-card-master {
  grid-column: 1 / -1;
  background: var(--cream);
  border-color: var(--accent);
}
@media (max-width: 720px) {
  .read-card-master { grid-column: auto; }
}

/* hub footer block */
.reads-foot { padding: 72px 0 88px; }
.reads-foot h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 16px;
  font-weight: 500;
  max-width: 640px;
}
.reads-foot p {
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 680px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.reads-foot .btn { margin-top: 12px; }

/* read.html — intro panel and audience line */
.read-intro {
  padding-bottom: 8px;
}
.read-intro-copy {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 18px;
}
.read-audience {
  font-size: 14.5px;
  color: var(--ink-quiet);
  border-top: 1px solid var(--cream-3);
  padding-top: 18px;
  margin: 0 0 24px;
}
.read-audience strong { color: var(--ink); font-weight: 600; }

/* ===========================================================
   THE METHOD FRAMES — working templates
   =========================================================== */

.frame-page {
  background: var(--cream);
  min-height: 100vh;
}
.frame-main { padding: 56px 0 80px; }
.frame-container {
  max-width: 880px;
  padding: 0 28px;
}

/* ----- frame head ---------------------------------------- */
.frame-head {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 44px 44px 36px;
  margin-bottom: 28px;
  box-shadow: 0 12px 40px -22px rgba(31,41,55,0.16);
}
@media (max-width: 640px) { .frame-head { padding: 30px 24px 26px; } }

.frame-head .eyebrow { margin-bottom: 16px; }
.frame-head h1 {
  font-size: clamp(30px, 4.6vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.15;
}
.frame-tag {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 700px;
}
.frame-audience {
  font-size: 14.5px;
  color: var(--ink-quiet);
  border-top: 1px solid var(--cream-3);
  padding-top: 18px;
  margin: 0 0 18px;
  line-height: 1.6;
}
.frame-audience strong { color: var(--ink); font-weight: 600; }

.frame-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  align-items: center;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  font-weight: 500;
}
.frame-meta .dot { opacity: 0.6; }

/* ----- intro panel --------------------------------------- */
.frame-intro {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 32px 22px;
  margin-bottom: 28px;
}
@media (max-width: 640px) { .frame-intro { padding: 22px 22px 16px; } }
.frame-intro .kicker { margin-top: 0; margin-bottom: 8px; }
.frame-intro .kicker + p { margin-bottom: 18px; }
.frame-intro p:last-child { margin-bottom: 0; }
.frame-intro p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ----- form / sections ----------------------------------- */
.frame-form { margin: 0; }

.frame-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 36px 30px;
  margin-bottom: 22px;
}
@media (max-width: 640px) { .frame-section { padding: 24px 22px 22px; } }

.frame-section-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-bottom: 1px solid var(--cream-3);
  padding-bottom: 18px;
  margin-bottom: 22px;
}
.frame-section-n {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  min-width: 36px;
  padding-top: 4px;
}
.frame-section-head h2 {
  font-size: clamp(20px, 2.6vw, 26px);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.frame-section-intro {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  max-width: 720px;
}
.frame-section-intro strong { color: var(--ink); }

/* closing — visually distinct */
.frame-closing {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.frame-closing .frame-section-head {
  border-bottom-color: rgba(245,240,232,0.18);
}
.frame-closing .frame-section-n { color: var(--cream); }
.frame-closing .kicker { color: var(--cream-3); margin-top: 0; margin-bottom: 6px; }
.frame-closing h2 { color: var(--cream); }
.frame-closing .frame-section-intro { color: var(--cream-2); }
.frame-closing .ff-label { color: var(--cream); }
.frame-closing .ff-input {
  background: rgba(245,240,232,0.06);
  border-color: rgba(245,240,232,0.22);
  color: var(--cream);
}
.frame-closing .ff-input::placeholder { color: rgba(245,240,232,0.4); }
.frame-closing .ff-input:focus {
  background: rgba(245,240,232,0.1);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180,83,9,0.2);
}

/* ----- fields -------------------------------------------- */
.frame-fields {
  display: grid;
  gap: 20px;
}
.ff { margin: 0; }
.ff-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}
.ff-input {
  width: 100%;
  display: block;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  line-height: 1.55;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  resize: vertical;
}
.ff-input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180,83,9,0.12);
}
.ff-textarea { min-height: 96px; }

.ff-list { display: grid; gap: 8px; }
.ff-list .ff-input { background: var(--cream); }

/* ----- table fields -------------------------------------- */
.ff-table {}
.frame-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
}
.frame-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 580px;
}
.frame-table thead th {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  text-align: left;
  padding: 12px 12px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  vertical-align: bottom;
}
.frame-table tbody td {
  padding: 8px 8px;
  vertical-align: top;
  border-bottom: 1px solid var(--cream-3);
}
.frame-table tbody tr:last-child td { border-bottom: 0; }
.frame-table .cell-readonly {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--ink);
  padding-top: 16px;
  padding-left: 14px;
  min-width: 110px;
  white-space: nowrap;
}
.frame-table .ff-cell {
  width: 100%;
  min-height: 56px;
  padding: 9px 10px;
  font-size: 14px;
  line-height: 1.45;
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: inherit;
  resize: vertical;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.frame-table .ff-cell:focus {
  outline: none;
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(180,83,9,0.12);
}
.frame-table .ff-select {
  width: 100%;
  padding: 9px 10px;
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: inherit;
}
.frame-table .ff-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 2px rgba(180,83,9,0.12); }

/* ----- actions ------------------------------------------- */
.frame-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 8px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-3);
}
.frame-actions .btn { min-width: 160px; }
@media (max-width: 640px) {
  .frame-actions .btn { width: 100%; min-width: 0; }
}
.frame-savenote {
  font-size: 13px;
  margin: 4px 0 28px;
  opacity: 0.7;
  transition: color var(--t), opacity var(--t);
}
.frame-savenote.is-fresh { color: var(--accent); opacity: 1; }

.frame-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-3);
}
.frame-foot .btn { font-size: 14.5px; padding: 12px 22px; }

.frame-empty {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 56px 44px;
  text-align: center;
}
.frame-empty .kicker { justify-content: center; }
.frame-empty h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 14px; }

/* ----- toast --------------------------------------------- */
.frame-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 12px);
  background: var(--ink);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 32px -12px rgba(31,41,55,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.frame-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ----- print --------------------------------------------- */
.print-only { display: none; }

@media print {
  body.frame-page { background: #fff; color: #111; }
  .no-print { display: none !important; }
  .print-only { display: block; }

  .frame-main { padding: 0; }
  .frame-container { max-width: none; padding: 0 8mm; }

  .frame-head,
  .frame-intro,
  .frame-section,
  .frame-closing {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
    margin-bottom: 14px;
    padding: 14px 18px;
  }
  .frame-closing { background: #f3efe6; color: #111; }
  .frame-closing h2,
  .frame-closing .kicker,
  .frame-closing .frame-section-intro,
  .frame-closing .ff-label { color: #111; }

  .frame-head h1 { font-size: 26px; margin-bottom: 10px; }
  .frame-tag { font-size: 14px; }
  .frame-audience { font-size: 12px; padding-top: 10px; margin-bottom: 8px; }
  .frame-meta { font-size: 10px; }

  .frame-section-head { padding-bottom: 8px; margin-bottom: 12px; gap: 12px; }
  .frame-section-n { font-size: 18px; min-width: 22px; padding-top: 2px; }
  .frame-section-head h2 { font-size: 17px; }
  .frame-section-intro { font-size: 12px; line-height: 1.45; }

  .ff-label { font-size: 10.5px; margin-bottom: 6px; }
  .ff-input {
    background: #fff !important;
    border: 1px solid #ccc !important;
    color: #111 !important;
    font-size: 12px;
    padding: 8px 10px;
    box-shadow: none !important;
  }
  .ff-textarea { min-height: 60px; }
  .ff-list { gap: 6px; }

  .frame-table { font-size: 11px; min-width: 0; }
  .frame-table thead th { font-size: 9px; padding: 6px 6px; background: #f3efe6; }
  .frame-table tbody td { padding: 4px 4px; }
  .frame-table .ff-cell,
  .frame-table .ff-select { font-size: 11px; min-height: 36px; padding: 6px 6px; }
  .frame-table .cell-readonly { font-size: 12px; padding-top: 8px; padding-left: 8px; }

  .print-head {
    position: fixed; top: 0; left: 0; right: 0;
    padding: 6mm 8mm 2mm;
    font-size: 10px;
    color: #6b7280;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid #e5e0d4;
    background: #fff;
  }
  .print-head .print-brand {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    color: #111;
    letter-spacing: 0;
    text-transform: none;
    font-size: 12px;
    margin-right: 6px;
  }
  .print-head .print-sep { margin: 0 6px; opacity: 0.5; }

  .print-foot {
    position: fixed; bottom: 0; left: 0; right: 0;
    padding: 2mm 8mm 5mm;
    font-size: 10px;
    color: #6b7280;
    font-style: italic;
    border-top: 1px solid #e5e0d4;
    background: #fff;
    text-align: center;
  }

  @page {
    size: A4;
    margin: 18mm 10mm 18mm 10mm;
  }
}

/* ===========================================================
   THE WORKBENCH — umbrella hub (Reads + Frames)
   =========================================================== */

.bench-grid-wrap {
  background: var(--white);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line);
}

.bench-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1120px;
  padding: 0 28px;
}
@media (min-width: 880px) {
  .bench-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.bench-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
@media (max-width: 640px) { .bench-card { padding: 30px 24px 28px; } }

.bench-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px -22px rgba(31,41,55,0.18);
}

.bench-tag {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 14px;
}

.bench-card h2 {
  font-size: clamp(26px, 3vw, 32px);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.bench-lede {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 24px;
}

.bench-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--cream-3);
}
.bench-list li {
  border-bottom: 1px solid var(--cream-3);
}
.bench-list li a {
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-areas:
    "num name"
    "num tag";
  column-gap: 14px;
  row-gap: 2px;
  align-items: baseline;
  padding: 14px 4px;
  color: var(--ink);
  border-bottom: 0;
  transition: background var(--t), color var(--t), padding var(--t);
}
.bench-list li a:hover {
  background: rgba(180,83,9,0.04);
  color: var(--accent);
  padding-left: 10px;
}
.bench-list-num {
  grid-area: num;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.bench-list-name {
  grid-area: name;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.bench-list-tag {
  grid-area: tag;
  font-size: 13.5px;
  color: var(--ink-quiet);
  line-height: 1.4;
}
.bench-list li a:hover .bench-list-tag { color: var(--ink-soft); }

.bench-list-pin {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  background: rgba(180,83,9,0.1);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: 2px;
}

.bench-card .btn-primary {
  align-self: flex-start;
  margin-top: auto;
}

