:root {
  --ink: #2c1810;
  --ink-soft: #3a2e28;
  --paper: #faf6f0;
  --paper-deep: #e8d5b0;
  --white: #ffffff;
  --green: #2a6b6b;
  --green-dark: #1a4a4a;
  --teal-light: #d6e8e8;
  --moss: #2e7e7e;
  --clay: #c4622d;
  --gold: #e8d5b0;
  --line: rgba(42, 107, 107, 0.18);
  --shadow: 0 24px 80px rgba(44, 24, 16, 0.14);
  --bark-grain-light: repeating-linear-gradient(102deg, rgba(44, 24, 16, 0.028) 0 1px, transparent 1px 18px);
  --bark-grain-warm: repeating-linear-gradient(96deg, rgba(44, 24, 16, 0.035) 0 1px, transparent 1px 22px);
  --bark-grain-dark: repeating-linear-gradient(104deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 20px);
  --lichen-fleck-light: radial-gradient(circle at 1px 1px, rgba(42, 107, 107, 0.055) 0 1px, transparent 1.35px);
  --lichen-fleck-dark: radial-gradient(circle at 1px 1px, rgba(232, 213, 176, 0.11) 0 1px, transparent 1.3px);
  --moss-edge-light: linear-gradient(180deg, rgba(46, 126, 126, 0.065), transparent 7.5rem);
  --moss-edge-dark: linear-gradient(180deg, rgba(232, 213, 176, 0.055), transparent 8rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(232, 213, 176, 0.1), transparent 24rem),
    linear-gradient(90deg, rgba(44, 24, 16, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(44, 24, 16, 0.02) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 42px 42px, 42px 42px, auto;
  font-family: "Jost", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(44, 24, 16, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(44, 24, 16, 0.12) 0 1px, transparent 1px);
  background-size: 17px 19px, 23px 29px;
}

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

a {
  color: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--ink);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: var(--white);
  background: rgba(48, 55, 49, 0.52);
  border-bottom: 1px solid rgba(232, 213, 176, 0.28);
  box-shadow: 0 10px 34px rgba(15, 28, 28, 0.16);
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(42, 107, 107, 0.92);
  border-bottom-color: rgba(232, 213, 176, 0.36);
  box-shadow: 0 10px 40px rgba(26, 74, 74, 0.2);
  backdrop-filter: blur(14px);
}

.site-header .brand {
  transition: opacity 0.25s ease;
}

.site-header:not(.is-scrolled):not(.is-open) .brand {
  opacity: 0;
  pointer-events: none;
}

.brand,
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.08rem;
  align-items: flex-start;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand span {
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  line-height: 1;
  color: var(--white);
}

.brand em,
.footer-brand em {
  color: var(--clay);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.15;
}

.brand em {
  color: var(--clay);
  font-size: inherit;
}

.brand-tagline {
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-top: 0.22rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.35vw, 1.25rem);
  font-size: clamp(0.86rem, 0.82vw, 0.94rem);
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-cta {
  padding: 0.65rem 0.95rem;
  background: var(--clay);
  color: var(--white);
  border-radius: 3px;
  opacity: 1;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  width: 100%;
  padding: 7rem clamp(1rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 74, 74, 0.93), rgba(26, 74, 74, 0.72) 45%, rgba(26, 74, 74, 0.12)),
    linear-gradient(0deg, rgba(26, 74, 74, 0.88), transparent 35%);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 72%;
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  min-width: 0;
  padding: clamp(1rem, 4vw, 3rem) 0;
}

.eyebrow {
  max-width: 100%;
  margin: 0 0 0.9rem;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  width: 100%;
  max-width: 620px;
  font-size: 6.25rem;
}

h2 {
  width: 100%;
  max-width: 820px;
  font-size: 4.7rem;
}

h3 {
  font-size: 1.9rem;
}

.hero-copy {
  max-width: 610px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid currentColor;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  border-color: var(--clay);
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 16px 44px rgba(196, 98, 45, 0.28);
}

.button.quiet {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.button.secondary-action {
  margin-top: 1.5rem;
  border-color: var(--green);
  background: transparent;
  color: var(--green);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.light-link {
  color: var(--gold);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

section {
  position: relative;
  padding: clamp(3.25rem, 6vw, 6rem) 0;
}

.proof-bar {
  padding: 0;
  background: var(--green-dark);
  color: var(--white);
  border-bottom: 8px solid var(--clay);
}

.proof-bar::before,
.proof-bar::after {
  display: none;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.proof-grid div {
  min-height: 130px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: clamp(1rem, 2.4vw, 1.6rem);
  background:
    linear-gradient(135deg, rgba(232, 213, 176, 0.08), transparent 44%),
    #123f3f;
}

.proof-grid strong {
  font-family: "Cormorant Garamond", serif;
  color: var(--clay);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 0.9;
}

.proof-grid span {
  max-width: 230px;
  color: rgba(232, 213, 176, 0.65);
  font-size: 0.82rem;
  line-height: 1.45;
}

section:not(.hero)::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 126, 126, 0.14), rgba(196, 98, 45, 0.14), transparent);
}

section:not(.hero)::after {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(1rem, 4vw, 3rem);
  width: 84px;
  height: 5px;
  background:
    repeating-linear-gradient(90deg, rgba(232, 213, 176, 0.38) 0 1px, transparent 1px 9px),
    linear-gradient(90deg, var(--clay), rgba(196, 98, 45, 0.66) 58%, transparent);
  opacity: 0.72;
}

.proof-bar + section::after,
.quote-band + section::after,
.evidence + section::after,
.about + section::after,
.process + section::after {
  width: 140px;
}

.band-light {
  background:
    var(--moss-edge-light),
    var(--bark-grain-light),
    linear-gradient(135deg, rgba(196, 98, 45, 0.06), transparent 34%),
    linear-gradient(90deg, rgba(44, 24, 16, 0.045) 1px, transparent 1px),
    var(--white);
  background-size: auto, 90px 160px, auto, 38px 38px;
}

.problem-section {
  background:
    radial-gradient(ellipse at 14% 18%, rgba(196, 98, 45, 0.08), transparent 24rem),
    linear-gradient(90deg, rgba(44, 24, 16, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 38px 38px, auto;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.problem-copy {
  display: grid;
  gap: 1rem;
  color: #3a2e28;
}

.kayak-metaphor {
  margin: 0 0 0.25rem;
  overflow: hidden;
  border: 1px solid rgba(44, 24, 16, 0.14);
  background: var(--green-dark);
  box-shadow: 0 18px 48px rgba(44, 24, 16, 0.13);
}

.kayak-metaphor img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.problem-copy p {
  margin: 0;
  font-size: 1.04rem;
}

.guide-note {
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--clay);
  background: var(--teal-light);
  box-shadow: 0 14px 34px rgba(44, 24, 16, 0.08);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.stack-copy p,
.compact-head p,
.section-intro,
.threshold-note,
.evidence p,
.about-copy p {
  color: var(--ink-soft);
}

.stack-copy p:first-child,
.evidence p:first-of-type,
.about-copy p:first-of-type {
  margin-top: 0;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  position: relative;
}

.section-head::after {
  content: "";
  width: min(100%, 520px);
  height: 12px;
  margin-top: 0.35rem;
  background:
    linear-gradient(90deg, var(--clay), transparent 18%),
    repeating-linear-gradient(90deg, rgba(44, 24, 16, 0.16) 0 1px, transparent 1px 13px);
  opacity: 0.7;
}

.transition-map {
  background:
    radial-gradient(ellipse at 82% 12%, rgba(42, 107, 107, 0.18), transparent 28rem),
    repeating-linear-gradient(120deg, rgba(44, 24, 16, 0.035) 0 1px, transparent 1px 18px),
    var(--white);
}

.transition-map.source-dark {
  background:
    var(--moss-edge-dark),
    var(--lichen-fleck-dark),
    radial-gradient(ellipse at 82% 12%, rgba(232, 213, 176, 0.12), transparent 28rem),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px),
    var(--moss);
  background-size: auto, 30px 34px, auto, auto;
  color: var(--white);
  border-bottom: 8px solid var(--gold);
}

.transition-map.source-dark .eyebrow,
.transition-map.source-dark .threshold-note,
.transition-map.source-dark .text-link {
  color: var(--gold);
}

.transition-map.source-dark h2,
.transition-map.source-dark h3 {
  color: var(--white);
}

.transition-map.source-dark .crossroad-grid h3 {
  color: var(--gold);
}

.transition-map.source-dark .premise-copy p,
.transition-map.source-dark .crossroad-grid p {
  color: rgba(214, 232, 232, 0.9);
}

.transition-map.source-dark .crossroad-grid article {
  background: #1f5d5a;
  border-color: rgba(214, 232, 232, 0.24);
  box-shadow: 0 16px 34px rgba(15, 28, 28, 0.12);
}

.transition-map.source-dark .inline-crossroads {
  border-color: rgba(255, 255, 255, 0.22);
}

.transition-hero {
  min-height: clamp(540px, 56vw, 744px);
  display: grid;
  align-items: end;
  padding-top: clamp(5.5rem, 7vw, 7rem);
  padding-bottom: clamp(1.5rem, 4vw, 3.25rem);
  overflow: hidden;
}

.transition-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(180deg, rgba(15, 42, 42, 0.62) 0%, rgba(15, 42, 42, 0.26) 20%, transparent 44%),
    linear-gradient(90deg, rgba(26, 74, 74, 0.01), rgba(26, 74, 74, 0.04) 38%, rgba(26, 74, 74, 0.34) 68%, rgba(48, 55, 49, 0.54)),
    linear-gradient(0deg, rgba(26, 74, 74, 0.4), rgba(26, 74, 74, 0.035) 52%, rgba(26, 74, 74, 0.01));
}

.transition-hero::after {
  z-index: 2;
  top: 6rem;
  width: 180px;
}

.transition-hero h1 {
  max-width: 640px;
  font-size: clamp(3.6rem, 5.25vw, 5.7rem);
  line-height: 0.98;
}

.transition-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: end;
  align-items: end;
}

.transition-hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

.transition-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 43% 24%, rgba(250, 246, 240, 0.08), transparent 15rem),
    linear-gradient(90deg, rgba(26, 74, 74, 0.03), transparent 48%, rgba(26, 74, 74, 0.16)),
    linear-gradient(0deg, rgba(26, 74, 74, 0.18), transparent 42%),
    repeating-radial-gradient(circle at 20% 30%, rgba(250, 246, 240, 0.05) 0 1px, transparent 1px 4px);
  opacity: 0.88;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.transition-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(0.9) contrast(0.95) brightness(0.92);
}

.hero-brand {
  position: absolute;
  top: clamp(5.25rem, 11vw, 8rem);
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  pointer-events: none;
}

.hero-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(12, 26, 26, 0.5), 0 4px 30px rgba(12, 26, 26, 0.6);
}

.hero-brand-name em {
  color: var(--clay);
  font-style: italic;
}

.hero-brand-tagline {
  margin-top: 0.7rem;
  font-family: "Jost", sans-serif;
  font-size: clamp(0.92rem, 1.6vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(10, 22, 22, 0.9), 0 2px 14px rgba(10, 22, 22, 0.65);
}

.transition-hero-copy {
  position: relative;
  z-index: 2;
  width: min(640px, 52vw);
  max-width: 640px;
  margin-right: clamp(1.25rem, 5vw, 4.5rem);
  padding: clamp(1.55rem, 3.35vw, 2.85rem);
  background:
    linear-gradient(135deg, rgba(232, 213, 176, 0.18), rgba(26, 74, 74, 0.3)),
    rgba(44, 24, 16, 0.26);
  border: 1px solid rgba(232, 213, 176, 0.28);
  box-shadow: 0 22px 62px rgba(15, 28, 28, 0.24);
  backdrop-filter: blur(2px);
  transform: translateY(-1.25rem);
}

.transition-hero .transition-hero-copy .eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.45rem;
  padding: 0.72rem 1.05rem;
  color: var(--white);
  background: rgba(26, 74, 74, 0.55);
  border: 1px solid rgba(232, 213, 176, 0.5);
  border-radius: 3px;
  box-shadow: 0 8px 22px rgba(15, 28, 28, 0.18);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.transition-hero-copy::after {
  display: none;
}

.transition-hero-copy p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(214, 232, 232, 0.9);
  font-size: 1.14rem;
  line-height: 1.55;
}

.transition-hero-copy p:first-of-type:not(.eyebrow) {
  font-size: 0.98rem;
}

.transition-actions {
  margin-top: 1.35rem;
}

.transition-actions .button {
  min-height: 56px;
  padding: 1rem 1.38rem;
  font-size: 0.88rem;
}

.transition-categories {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse at 82% 12%, rgba(232, 213, 176, 0.08), transparent 26rem),
    linear-gradient(180deg, rgba(26, 74, 74, 0.98), rgba(26, 74, 74, 0.96)),
    var(--moss);
}

.transition-categories::after {
  display: none;
}

.transition-categories .section-head {
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.transition-map.source-dark .section-head::after {
  width: 96px;
  height: 3px;
  margin-top: 0.15rem;
  background: var(--clay);
  opacity: 0.72;
}

.transition-bridge {
  max-width: 780px;
  margin: 0;
  color: rgba(232, 213, 176, 0.95);
  font-size: 1.12rem;
}

.compact-head {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 1rem 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.compact-head .eyebrow,
.compact-head h1,
.compact-head h2 {
  grid-column: 1;
}

.premise-copy {
  grid-column: 2;
  align-self: end;
}

.premise-copy p {
  margin: 0;
  font-size: 1.02rem;
}

.premise-copy p + p {
  margin-top: 0.9rem;
}

.inline-crossroads {
  float: right;
  width: min(42%, 250px);
  margin: 0 0 0.75rem 1rem;
  overflow: hidden;
  border: 1px solid rgba(44, 24, 16, 0.16);
  background: var(--green-dark);
  box-shadow: 0 18px 48px rgba(44, 24, 16, 0.13);
}

.inline-crossroads img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.crossroad-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.crossroad-grid article,
.service-grid article {
  min-height: 210px;
  padding: clamp(1.2rem, 2.8vw, 2rem);
  background: var(--white);
  border: 1px solid rgba(42, 107, 107, 0.14);
  box-shadow: 0 14px 34px rgba(44, 24, 16, 0.07);
}

.compact-grid article {
  min-height: 190px;
}

.spacious-grid {
  margin-top: clamp(1.25rem, 3vw, 2.5rem);
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.8rem;
  border: 1px solid var(--clay);
  color: var(--clay);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 650;
}

.crossroad-grid p,
.service-grid p,
.process-steps p,
.comparison p {
  color: var(--ink-soft);
}

.crossroad-grid h3,
.service-grid h3 {
  font-size: 1.58rem;
  line-height: 1.05;
}

.crossroad-grid p,
.service-grid p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.threshold-note {
  max-width: none;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0 calc((100% + clamp(1rem, 2vw, 1.5rem)) / 3);
  padding-left: 1.25rem;
  border-left: 4px solid var(--clay);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  line-height: 1.16;
}

.quote-band {
  padding: clamp(2.4rem, 4vw, 3.75rem) 0;
  background:
    radial-gradient(ellipse at 16% 30%, rgba(232, 213, 176, 0.08), transparent 24rem),
    linear-gradient(90deg, rgba(26, 74, 74, 0.96), rgba(26, 74, 74, 0.9)),
    var(--green-dark);
  color: var(--white);
  overflow: hidden;
  border-bottom: 8px solid var(--paper);
}

.quote-band::after {
  left: auto;
  right: clamp(1rem, 4vw, 3rem);
  width: 120px;
  background: var(--gold);
}

blockquote {
  margin: 0;
}

blockquote p {
  max-width: 980px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.4vw, 3.55rem);
  font-style: italic;
  line-height: 1.05;
}

.coaching {
  background:
    radial-gradient(ellipse at 12% 78%, rgba(42, 107, 107, 0.08), transparent 24rem),
    var(--paper);
  color: var(--ink);
  padding-block: clamp(3.5rem, 6vw, 5.75rem);
  overflow: hidden;
  border-bottom: 8px solid var(--paper-deep);
}

.coaching .split {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.coaching .split > div:first-child {
  grid-column: 2;
  max-width: 760px;
}

.coaching .eyebrow {
  color: var(--clay);
}

.coaching h2 {
  max-width: 760px;
  color: var(--green-dark);
  font-size: clamp(3.1rem, 5.4vw, 5.4rem);
  line-height: 0.96;
}

.coaching .section-intro {
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: #3a2e28;
  font-size: clamp(1.02rem, 1.45vw, 1.25rem);
  font-weight: 550;
  line-height: 1.45;
}

.coaching .text-link {
  margin-top: 1.75rem;
  color: var(--green);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
}

.comparison {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  grid-template-columns: 1fr;
  gap: 1px;
  width: min(100%, 430px);
  justify-self: start;
  background: rgba(42, 107, 107, 0.18);
  border: 1px solid var(--teal-light);
}

.comparison div {
  min-height: auto;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  background: var(--white);
}

.comparison h3 {
  margin-bottom: 0.75rem;
  color: var(--green-dark);
  font-size: clamp(1.85rem, 3.1vw, 3rem);
  line-height: 0.96;
}

.comparison p {
  max-width: 940px;
  margin: 0;
  color: #3a2e28;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  font-weight: 550;
  line-height: 1.45;
}

.work {
  background: linear-gradient(125deg, #faf4ea 0% 47%, #ecdfc6 47% 100%);
  border-bottom: 5px solid rgba(46, 126, 126, 0.55);
}

.service-grid .moment {
  color: var(--clay);
  font-weight: 650;
}

.section-kicker {
  max-width: 540px;
  margin: 0;
  color: var(--ink-soft);
}

.work-bridge {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.75fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
}

.work-bridge .eyebrow,
.work-bridge h2 {
  grid-column: 1;
}

.work-bridge p:not(.eyebrow) {
  grid-column: 2;
  margin: 0;
  color: var(--ink-soft);
}

.work-bridge .button {
  grid-column: 2;
  justify-self: start;
}

.evidence {
  background:
    var(--lichen-fleck-dark),
    var(--bark-grain-dark),
    radial-gradient(circle at 76% 16%, rgba(232, 213, 176, 0.12), transparent 18rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 42px),
    var(--moss);
  background-size: 29px 33px, 92px 150px, auto, 42px 42px;
  color: var(--white);
  border-bottom: 8px solid var(--paper);
}

.evidence::before,
.coaching::before,
.discovery::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.evidence .eyebrow {
  color: var(--gold);
}

.evidence-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.evidence p {
  color: rgba(232, 213, 176, 0.95);
}

.evidence .fine-print {
  color: rgba(232, 213, 176, 0.62);
}

.fine-print {
  font-size: 0.85rem;
}

.evidence-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.75rem;
}

.evidence-list span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(232, 213, 176, 0.22);
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.1;
}

.evidence-list span i {
  flex: none;
  font-style: normal;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
}

.evidence-list span.up i {
  color: #9fe0cd;
}

.evidence-list span.down i {
  color: var(--gold);
}

.evidence-list span.no-arrow {
  padding-left: 1.55rem;
}

.about {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-bottom: 8px solid var(--teal-light);
}

.about-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 40, 40, 0.26) 0%, rgba(16, 40, 40, 0.52) 26%, rgba(16, 40, 40, 0.2) 44%, transparent 58%);
  pointer-events: none;
}

.about-feature-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(640px, 88vh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding-top: clamp(4rem, 6.5vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about-heading {
  max-width: 720px;
}

.about-heading .eyebrow {
  color: var(--green-dark);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(255, 255, 255, 0.85);
}

.about-heading h2 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  text-shadow: 0 1px 3px rgba(8, 20, 20, 0.75), 0 3px 22px rgba(8, 20, 20, 0.6);
}

.about-panel {
  max-width: 770px;
  margin-left: auto;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: rgba(250, 246, 240, 0.96);
  border: 1px solid rgba(232, 213, 176, 0.55);
  box-shadow: 0 26px 64px rgba(15, 28, 28, 0.32);
}

.about-panel p {
  color: var(--ink-soft);
}

.about-panel p + p {
  margin-top: 1rem;
}

.about-panel .text-link {
  display: inline-block;
  margin-top: 1.1rem;
}

.about-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--green-dark);
  border: 1px solid rgba(232, 213, 176, 0.24);
  border-right-width: 8px;
  border-right-color: var(--green-dark);
  box-shadow:
    0 24px 72px rgba(15, 28, 28, 0.18),
    inset 0 0 0 1px rgba(250, 246, 240, 0.1);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 38% 20%, rgba(250, 246, 240, 0.22), transparent 14rem),
    linear-gradient(90deg, rgba(26, 74, 74, 0.22), rgba(26, 74, 74, 0.04) 45%, rgba(196, 98, 45, 0.12)),
    linear-gradient(0deg, rgba(15, 28, 28, 0.26), transparent 46%, rgba(26, 74, 74, 0.08)),
    repeating-radial-gradient(circle at 18% 26%, rgba(250, 246, 240, 0.045) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(90deg, rgba(26, 74, 74, 0.2), transparent 36%, rgba(26, 74, 74, 0.08)),
    linear-gradient(0deg, rgba(15, 28, 28, 0.24), transparent 42%);
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
  filter: saturate(1.08) contrast(1.12) brightness(0.96);
}

.about-copy {
  align-self: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process.band-light {
  background:
    var(--lichen-fleck-light),
    var(--moss-edge-light),
    radial-gradient(ellipse at 82% 10%, rgba(42, 107, 107, 0.14), transparent 24rem),
    linear-gradient(90deg, rgba(44, 24, 16, 0.028) 1px, transparent 1px),
    var(--teal-light);
  background-size: 28px 32px, auto, auto, 38px 38px;
  border-bottom: 8px solid var(--green-dark);
}

.process-steps div {
  padding: 1rem;
  border: 1px solid rgba(42, 107, 107, 0.14);
  background: #eef8f6;
  box-shadow: 0 12px 28px rgba(42, 107, 107, 0.07);
}

.process-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.35rem);
}

.discovery {
  background:
    var(--bark-grain-dark),
    var(--lichen-fleck-dark),
    radial-gradient(ellipse at 12% 20%, rgba(196, 98, 45, 0.18), transparent 26rem),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 24px),
    var(--green-dark);
  background-size: 96px 160px, 32px 36px, auto, auto;
  color: var(--white);
}

.discovery .eyebrow {
  color: var(--gold);
}

.discovery p {
  color: rgba(255, 255, 255, 0.76);
}

.discovery .discovery-tagline {
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 1.08rem;
  font-weight: 500;
}

.discovery .discovery-note {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
}

.discovery-box {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  gap: 2rem;
  align-items: center;
}

.discovery-action {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  background: #0f1c1c;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  margin-left: 1rem;
  text-decoration: none;
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.copyright {
  align-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

.detail-page {
  background:
    var(--bark-grain-light),
    radial-gradient(ellipse at 88% 8%, rgba(42, 107, 107, 0.08), transparent 26rem),
    radial-gradient(ellipse at 10% 46%, rgba(196, 98, 45, 0.055), transparent 24rem),
    var(--paper);
  background-size: 104px 180px, auto, auto, auto;
}

.detail-hero {
  padding-top: 10rem;
  background:
    var(--bark-grain-warm),
    var(--lichen-fleck-light),
    radial-gradient(ellipse at 78% 18%, rgba(42, 107, 107, 0.2), transparent 26rem),
    radial-gradient(ellipse at 18% 76%, rgba(196, 98, 45, 0.13), transparent 24rem),
    linear-gradient(135deg, rgba(232, 213, 176, 0.54), rgba(255, 255, 255, 0.94) 48%, rgba(214, 232, 232, 0.82)),
    var(--white);
  background-size: 108px 190px, 34px 38px, auto, auto, auto, auto;
  border-bottom: 8px solid rgba(196, 98, 45, 0.42);
}

.narrow {
  width: min(980px, calc(100% - 2rem));
}

.detail-hero p:not(.eyebrow),
.detail-copy p,
.detail-list p {
  color: var(--ink-soft);
}

.detail-section h2 {
  margin-bottom: 2rem;
}

.detail-section:not(.band-light) {
  background:
    var(--bark-grain-light),
    linear-gradient(180deg, rgba(250, 246, 240, 0.58), transparent 18rem),
    var(--paper);
  background-size: 118px 210px, auto, auto;
}

.detail-section.band-light#transitions {
  background:
    var(--lichen-fleck-light),
    var(--bark-grain-light),
    radial-gradient(ellipse at 82% 12%, rgba(196, 98, 45, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(214, 232, 232, 0.82), rgba(250, 246, 240, 0.44)),
    var(--teal-light);
  background-size: 28px 32px, 108px 190px, auto, auto, auto;
}

.detail-section.band-light#work {
  background: linear-gradient(125deg, #faf4ea 0% 47%, #ecdfc6 47% 100%);
}

.detail-section#coaching {
  background:
    var(--moss-edge-dark),
    radial-gradient(ellipse at 84% 14%, rgba(232, 213, 176, 0.12), transparent 26rem),
    linear-gradient(135deg, rgba(26, 74, 74, 0.98), rgba(26, 74, 74, 0.96)),
    var(--green-dark);
  color: var(--white);
  border-bottom: 8px solid var(--gold);
}

.detail-section#coaching .eyebrow {
  color: var(--gold);
}

.detail-section#coaching h2 {
  color: var(--white);
}

.detail-section#coaching .detail-copy p {
  color: var(--white);
}

.accent {
  color: var(--clay);
}

.work h2,
.about-copy h2,
.detail-hero h1,
.detail-section#work h2 {
  color: var(--green-dark);
}

.detail-section#coaching h2 .accent {
  color: var(--clay);
}

.detail-section#evidence {
  background:
    var(--moss-edge-dark),
    radial-gradient(ellipse at 84% 14%, rgba(232, 213, 176, 0.13), transparent 26rem),
    linear-gradient(135deg, rgba(26, 74, 74, 0.98), rgba(42, 107, 107, 0.92)),
    var(--green-dark);
  color: var(--white);
  border-bottom: 8px solid var(--gold);
}

.detail-section#evidence .eyebrow {
  color: var(--gold);
}

.detail-section#evidence h2,
.detail-section#evidence .detail-copy p {
  color: var(--white);
}

.detail-section#evidence .detail-copy p.fine-print {
  color: rgba(214, 232, 232, 0.72);
}

.detail-section.band-light#credentials {
  background:
    var(--lichen-fleck-dark),
    var(--bark-grain-dark),
    radial-gradient(circle at 76% 16%, rgba(232, 213, 176, 0.12), transparent 18rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 42px),
    var(--moss);
  background-size: 29px 33px, 92px 150px, auto, 42px 42px;
  color: var(--white);
  border-bottom: 8px solid var(--gold);
}

.detail-section#credentials .eyebrow {
  color: var(--gold);
}

.detail-section#credentials .narrow {
  width: min(1080px, calc(100% - 2rem));
}

.detail-section#credentials .credential-list {
  max-width: 900px;
}

.detail-copy {
  display: grid;
  gap: 1rem;
  max-width: 760px;
}

.detail-lead {
  max-width: 760px;
  margin: -1rem 0 2rem;
  color: var(--ink-soft);
}

.detail-hero .detail-lead {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.detail-list {
  display: grid;
  gap: 1.25rem;
  padding: 0.25rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(42, 107, 107, 0.12);
  box-shadow: 0 14px 34px rgba(44, 24, 16, 0.06);
}

.detail-list article {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.detail-list article:first-child {
  border-top: 0;
}

.detail-list h3 {
  margin-bottom: 0.45rem;
}

.detail-list p {
  max-width: 740px;
  margin: 0;
}

.detail-cta {
  margin-top: 2rem;
}

.credential-list {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin-top: 2rem;
  padding: 1.25rem;
  border-left: 4px solid var(--clay);
  background: var(--white);
  color: var(--ink-soft);
  box-shadow: 0 14px 34px rgba(44, 24, 16, 0.06);
}

.credentials-body {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.credentials-body .credential-list {
  margin-top: 0;
}

.cert-badge {
  margin: 0;
  display: flex;
  justify-content: center;
}

.cert-badge img {
  width: clamp(132px, 13vw, 168px);
  height: auto;
  display: block;
}

.credential-list div {
  display: grid;
  gap: 0.45rem;
}

.credential-list p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.5;
}

.credential-list strong {
  color: var(--ink);
}

.credential-list span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .transition-hero {
    min-height: 100svh;
  }

  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3.45rem;
  }

  h3 {
    font-size: 1.65rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  blockquote p {
    font-size: 3rem;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem;
    background: rgba(26, 74, 74, 0.98);
  }

  .site-nav.is-open {
    display: grid;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 4px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: var(--white);
    border-radius: 3px;
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .hero {
    min-height: 760px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(26, 74, 74, 0.95), rgba(26, 74, 74, 0.76) 58%, rgba(26, 74, 74, 0.28)),
      linear-gradient(90deg, rgba(26, 74, 74, 0.7), transparent);
  }

  .split,
  .problem-layout,
  .evidence-layout,
  .about,
  .discovery-box,
  .work-bridge {
    grid-template-columns: 1fr;
  }

  .compact-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .compact-head .eyebrow,
  .compact-head h1,
  .compact-head h2,
  .premise-copy {
    grid-column: auto;
  }

  .transition-hero-shell {
    grid-template-columns: 1fr;
  }

  .transition-hero-copy {
    margin-right: 0;
  }

  .transition-hero-image {
    min-height: 420px;
  }

  .coaching .split {
    grid-template-columns: 1fr;
  }

  .coaching .split > div:first-child,
  .comparison {
    grid-column: auto;
    grid-row: auto;
  }

  .comparison div {
    min-height: auto;
  }

  .inline-crossroads {
    width: min(44%, 240px);
  }

  .work-bridge .eyebrow,
  .work-bridge h2,
  .work-bridge p:not(.eyebrow),
  .work-bridge .button {
    grid-column: auto;
  }

  .crossroad-grid,
  .service-grid,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .threshold-note {
    margin-left: calc((100% + clamp(1rem, 2vw, 1.5rem)) / 2);
  }

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

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

  h1 {
    max-width: calc(100vw - 2rem);
    font-size: 2.85rem;
    line-height: 1.02;
  }

  h2 {
    max-width: calc(100vw - 2rem);
    font-size: 2.55rem;
  }

  .hero-panel,
  .hero-copy,
  .hero .eyebrow {
    max-width: calc(100vw - 2rem);
  }

  h3 {
    font-size: 1.45rem;
  }

  blockquote p {
    font-size: 2.2rem;
  }

  .site-header {
    padding: 0.85rem 1rem;
  }

  .brand {
    font-size: 1.22rem;
    max-width: calc(100% - 58px);
  }

  .brand span {
    font-size: clamp(1.28rem, 6vw, 1.45rem);
  }

  .brand em {
    font-size: inherit;
  }

  .brand-tagline {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding-top: 5.5rem;
  }

  .transition-hero {
    min-height: 100svh;
    padding-top: 7.2rem;
    padding-bottom: 2rem;
  }

  .transition-hero h1 {
    max-width: calc(100vw - 2rem);
    font-size: 3rem;
    line-height: 1.02;
  }

  .transition-hero-shell {
    gap: 1.5rem;
    align-items: end;
  }

  .transition-hero-image {
    min-height: 100%;
  }

  .transition-hero-image img {
    object-position: 30% center;
  }

  .transition-hero-copy {
    width: 100%;
    max-width: calc(100vw - 2rem);
    padding: 1.25rem;
    background:
      linear-gradient(135deg, rgba(232, 213, 176, 0.18), rgba(26, 74, 74, 0.42)),
      rgba(44, 24, 16, 0.28);
    transform: none;
  }

  .transition-hero-copy p:not(.eyebrow) {
    max-width: calc(100vw - 2rem);
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .transition-hero-copy .eyebrow {
    padding: 0.4rem 0.54rem;
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .transition-hero-copy::after {
    height: 8px;
    margin-top: 0.75rem;
  }

  .transition-actions {
    gap: 0.55rem;
    margin-top: 0.85rem;
  }

  .transition-actions .button {
    min-height: 48px;
    padding: 0.8rem 0.98rem;
    font-size: 0.78rem;
  }

  .hero-media img {
    object-position: 54% center;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .button {
    min-width: 0;
    text-align: center;
    line-height: 1.25;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .crossroad-grid,
  .service-grid,
  .evidence-list,
  .comparison,
  .process-steps,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .threshold-note {
    margin-left: 0;
  }

  .proof-grid div {
    min-height: auto;
  }

  .crossroad-grid article,
  .service-grid article {
    min-height: auto;
  }

  .about {
    overflow: visible;
    background: var(--paper);
  }

  .about-photo {
    position: relative;
    inset: auto;
    height: 52vh;
    min-height: 320px;
    object-position: 8% 42%;
  }

  .about::before {
    display: none;
  }

  .about-feature-inner {
    position: relative;
    min-height: auto;
    gap: 1.1rem;
    padding-top: clamp(1.75rem, 6vw, 2.5rem);
    padding-bottom: clamp(2rem, 6vw, 3rem);
  }

  .about-heading {
    max-width: none;
  }

  .about-heading .eyebrow {
    color: var(--clay);
    text-shadow: none;
  }

  .about-heading h2 {
    color: var(--green-dark);
    text-shadow: none;
  }

  .about-panel {
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer a {
    margin: 0 1rem 0 0;
  }
}

@media (max-width: 640px) {
  .credentials-body {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
  }

  .credentials-body .credential-list {
    width: 100%;
  }

  .cert-badge {
    order: -1;
  }

  .cert-badge img {
    width: 128px;
  }
}
