:root {
  color-scheme: light;
  --paper: #fcfbf8;
  --ink: #002f42;
  --ink-soft: rgba(0, 47, 66, 0.74);
  --ink-muted: rgba(0, 47, 66, 0.66);
  --line: rgba(0, 47, 66, 0.14);
  --line-strong: rgba(0, 47, 66, 0.25);
  --accent: #f27636;
  --accent-text: #b75022;
  --accent-wash: #fff0e7;
  --heritage: #2f6b61;
  --heritage-wash: #e9f0ed;
  --civic: #2e7192;
  --civic-wash: #e8f1f5;
  --brick: #a6533a;
  --white: #ffffff;
  --focus: #1479b8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes etcWave {
  0% { transform: translateY(0); }
  30% { transform: translateY(-0.22em); }
  55% { transform: translateY(0.09em); }
  75% { transform: translateY(-0.04em); }
  100% { transform: translateY(0); }
}

@keyframes logoUnderlight {
  0%, 100% {
    opacity: 0.22;
    transform: translateY(0) scaleX(0.92);
  }
  50% {
    opacity: 0.42;
    transform: translateY(1px) scaleX(1);
  }
}

@keyframes factBubbleIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }
  72% {
    opacity: 1;
    transform: translateY(-2px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes factBubblePop {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  45% {
    opacity: 1;
    transform: translateY(-1px) scale(1.08);
  }
  100% {
    opacity: 0;
    transform: translateY(3px) scale(0.08);
  }
}

@keyframes factBubbleFloat {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(16px, -42px) rotate(5deg) scale(0.98);
  }
  50% {
    transform: translate(-12px, -94px) rotate(-6deg) scale(0.94);
  }
  75% {
    opacity: 0.78;
    transform: translate(20px, -154px) rotate(7deg) scale(0.88);
  }
  100% {
    opacity: 0;
    transform: translate(-10px, -240px) rotate(-8deg) scale(0.78);
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

a:hover {
  color: var(--accent-text);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site {
  min-height: 100vh;
}

.wrap {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.section {
  border-bottom: 1px solid var(--line);
}

.pad {
  padding: clamp(56px, 9vw, 120px) 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 251, 248, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  min-height: 98px;
  padding: 14px 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 16px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo,
.logo-mark {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  line-height: 1;
  color: var(--ink);
  user-select: none;
}

.logo {
  font-size: 26px;
}

.logo-mark {
  position: relative;
  cursor: pointer;
}

.logo-mark::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: 0.04em;
  bottom: -0.09em;
  height: 0.11em;
  border-radius: 999px;
  background: #35a7ff;
  filter: blur(0.12em);
  opacity: 0.28;
  pointer-events: none;
  transform-origin: center;
  animation: logoUnderlight 3.8s ease-in-out infinite;
}

.logo-mark > span {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.logo-mark.is-waving > span {
  animation: etcWave 0.7s cubic-bezier(0.36, 0.07, 0.19, 0.97) calc(var(--i) * 0.07s) both;
}

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

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

.brand__name {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}

.nav__cluster {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav__links a {
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav__links a[aria-current="page"] {
  color: var(--accent-text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.button,
.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 24px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.nav__cta {
  min-height: 38px;
  padding: 9px 16px;
  font-size: 11px;
}

.button:hover,
.nav__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.button--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(252, 251, 248, 0.45);
}

.lang {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(0, 47, 66, 0.18);
  border-radius: 999px;
  background: rgba(0, 47, 66, 0.035);
}

.lang button {
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.18s, color 0.18s;
}

.lang button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}

.copy-switcher {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  width: auto;
  max-width: calc(100vw - 8px);
  padding: 4px 6px;
  border: 1px solid rgba(252, 251, 248, 0.28);
  border-radius: 8px;
  background: rgba(0, 47, 66, 0.94);
  color: var(--paper);
  box-shadow: 0 18px 44px rgba(0, 47, 66, 0.22);
}

.copy-switcher span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(252, 251, 248, 0.7);
}

.copy-switcher__buttons {
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
}

.copy-switcher button {
  min-height: 26px;
  border: 1px solid rgba(252, 251, 248, 0.34);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 600;
}

.copy-switcher button[aria-pressed="true"] {
  background: var(--paper);
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-weight: 600;
}

.hero {
  padding: clamp(48px, 7vw, 92px) 0 clamp(58px, 8vw, 104px);
}

.hero__logo-wrap {
  margin: 0 0 24px;
}

.hero__logo {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(88px, 14vw, 156px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1.12;
  text-wrap: pretty;
}

.hero h1.hero__statement {
  max-width: 690px;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.75vw, 52px);
  line-height: 1.05;
  font-weight: 400;
  text-wrap: pretty;
}

.lead {
  margin: 0;
  max-width: 680px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  font-weight: 300;
}

.help-signature {
  margin-top: 36px;
  max-width: 680px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.help-signature h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  font-weight: 400;
}

.help-signature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.small-note {
  margin: 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.6;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 48px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.display {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.25;
  text-wrap: pretty;
}

.row-list {
  border-top: 1px solid var(--line);
}

.row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}

.row strong {
  font-weight: 500;
}

.row span {
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.5;
}

.help-list {
  border-top: 1px solid var(--line);
}

.help-card {
  width: 100%;
  padding: 22px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 26px;
  gap: 16px;
}

.help-card:hover {
  background: var(--white);
}

.help-card__num,
.help-card__plus {
  color: var(--accent-text);
}

.help-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
}

.help-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.help-card small {
  display: block;
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.6;
}

.dark {
  background: var(--ink);
  color: var(--paper);
}

.dark .eyebrow {
  color: var(--accent);
}

.dark .copy,
.dark .small-note {
  color: rgba(252, 251, 248, 0.78);
}

.dark .row-list,
.dark .row {
  border-color: rgba(252, 251, 248, 0.16);
}

.dark .row span {
  color: rgba(252, 251, 248, 0.68);
}

.card {
  border-top: 2px solid var(--ink);
  padding-top: 22px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.price-card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 28px 24px;
  min-height: 190px;
}

.price-card strong {
  display: block;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.contact-meta {
  border-top: 1px solid var(--line);
}

.contact-line {
  display: flex;
  gap: 20px;
  align-items: baseline;
  flex-wrap: wrap;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}

.contact-line span:first-child {
  width: 72px;
  flex-shrink: 0;
  color: var(--ink-muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-direct {
  min-height: 360px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-direct h3 {
  max-width: 15ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
}

.contact-direct > p:not(.eyebrow) {
  max-width: 42ch;
  margin: 20px 0 28px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.contact-direct__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-direct__actions .button {
  min-width: 132px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  color: rgba(0, 47, 66, 0.68);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  padding: 14px;
  border-radius: 0;
}

.field textarea {
  resize: vertical;
}

.field__error {
  min-height: 18px;
  color: #9f2b12;
  font-size: 13px;
}

.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-box {
  min-height: 70px;
  border: 1px dashed rgba(0, 47, 66, 0.3);
  padding: 12px;
  display: flex;
  align-items: center;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(0, 47, 66, 0.025) 8px, rgba(0, 47, 66, 0.025) 16px);
}

.status {
  min-height: 24px;
  font-size: 14px;
  line-height: 1.5;
}

.status--ok {
  color: #176a3a;
}

.status--error {
  color: #9f2b12;
}

.footer {
  background: var(--ink);
  color: var(--paper);
}

.footer .logo-mark {
  color: var(--paper);
}

.footer .logo-mark::after {
  background: var(--accent);
  opacity: 0.36;
  filter: blur(0.1em);
}

.footer__top {
  padding: 64px 0 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(252, 251, 248, 0.15);
}

.footer__bottom {
  padding: 26px 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(252, 251, 248, 0.55);
  font-size: 13px;
}

.footer__legal {
  flex-basis: 100%;
  max-width: 760px;
  color: rgba(252, 251, 248, 0.82);
  line-height: 1.55;
}

.footer__links a,
.legal-identity a {
  color: inherit;
}

.founder-photo {
  aspect-ratio: 4 / 5;
  width: min(100%, 340px);
  max-width: 340px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 47, 66, 0.08), rgba(242, 118, 54, 0.12));
}

.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.knowledge-card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 28px 24px;
  min-height: 220px;
}

.knowledge-card small {
  color: var(--accent-text);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.fact {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 100;
  width: min(400px, calc(100vw - 36px));
  border: 1px solid rgba(0, 47, 66, 0.16);
  border-radius: 22px 22px 22px 7px;
  background: rgba(252, 251, 248, 0.96);
  color: var(--ink);
  padding: 18px 20px 19px;
  text-align: left;
  box-shadow: 0 16px 34px rgba(0, 47, 66, 0.2), 0 0 18px rgba(53, 167, 255, 0.16);
  transform-origin: 18px calc(100% - 10px);
  will-change: transform, opacity;
}

.fact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.fact .eyebrow {
  margin-bottom: 7px;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.fact--show {
  animation: factBubbleIn 0.32s ease-out both;
}

.fact--pop {
  animation: factBubblePop 0.42s cubic-bezier(0.48, 0, 0.74, 0.2) both;
}

.fact--float {
  pointer-events: none;
  animation: factBubbleFloat 1.5s ease-in both;
}

.text-dot {
  display: inline;
  border: 0;
  background: transparent;
  color: var(--accent);
  padding: 0 0 0 2px;
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  .logo-mark::after,
  .logo-mark.is-waving > span,
  .fact--show,
  .fact--pop,
  .fact--float {
    animation: none;
  }

  .fact--pop,
  .fact--float {
    opacity: 0;
  }
}

.privacy-list {
  max-width: 760px;
}

.privacy-list h2 {
  margin: 36px 0 10px;
  font-size: 20px;
}

.privacy-list p {
  margin: 0 0 18px;
}

.shell-fallback {
  width: min(760px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 80px 0;
}

.shell-fallback h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 8vw, 84px);
  line-height: 0.95;
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 32px, 1120px);
  }

  .nav {
    position: static;
  }

  .nav__inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
  }

  .brand {
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: 100%;
    text-align: center;
  }

  .logo {
    font-size: 30px;
  }

  .brand__name {
    max-width: 34ch;
    font-size: 10.5px;
    line-height: 1.35;
    letter-spacing: 0.22em;
  }

  .nav__cluster {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .nav__links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .nav__cta {
    flex: 1 0 100%;
    width: 100%;
  }

  .lang {
    justify-self: center;
  }

  .hero {
    padding: 46px 0 28px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.18em;
  }

  .hero__logo-wrap {
    margin-bottom: 28px;
  }

  .hero h1.hero__statement {
    font-size: clamp(28px, 7.5vw, 34px);
    line-height: 1.1;
    margin-bottom: 22px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .lead {
    font-size: 17px;
    line-height: 1.5;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .help-card {
    grid-template-columns: 34px minmax(0, 1fr) 22px;
  }

  .hero__logo {
    font-size: clamp(62px, 22vw, 104px);
  }
}

@media (max-width: 420px) {
  .copy-switcher {
    width: auto;
  }

  .copy-switcher__buttons {
    justify-content: end;
  }

  .copy-switcher button {
    padding: 5px 7px;
    font-size: 9px;
  }

  .nav__links {
    gap: 14px;
  }

  .nav__links a {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .lang button {
    padding: 7px 10px;
    font-size: 10.5px;
  }
}

/* Image-led review concept. Activated only by the Visual version. */
.lucide {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  vertical-align: -0.14em;
}

.visual-home {
  overflow: clip;
}

.visual-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  isolation: isolate;
  overflow: hidden;
}

.visual-hero__media,
.visual-hero__media img,
.visual-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visual-hero__media img {
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02);
}

.visual-hero__veil {
  z-index: 1;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(252, 251, 248, 0.99) 34%, rgba(252, 251, 248, 0.88) 48%, rgba(252, 251, 248, 0.2) 66%, rgba(252, 251, 248, 0) 78%);
}

.visual-hero__content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  padding: 48px 0;
  display: flex;
  align-items: center;
}

.visual-hero__copy {
  width: min(600px, 55%);
}

.visual-hero__copy > .eyebrow {
  margin-bottom: 18px;
}

.visual-hero__brand {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 22px;
}

.visual-hero__logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 104px;
  font-style: italic;
  line-height: 0.78;
  color: var(--ink);
}

.visual-hero__brand p {
  max-width: 21ch;
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.visual-hero h1 {
  white-space: pre-line;
  max-width: 560px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: pretty;
}

.visual-hero__intro {
  max-width: 44ch;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.visual-hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.visual-hero__actions > span {
  max-width: 24ch;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.45;
}

.visual-image-switcher {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.visual-image-switcher > span {
  color: var(--ink-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-image-switcher > div {
  display: flex;
  gap: 4px;
}

.visual-image-switcher button {
  min-height: 28px;
  border: 1px solid rgba(0, 47, 66, 0.24);
  border-radius: 999px;
  background: rgba(252, 251, 248, 0.68);
  color: var(--ink);
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
}

.visual-image-switcher button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.visual-image-board {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 64px 0 72px;
}

.visual-image-board .visual-section-head {
  max-width: 650px;
}

.visual-image-board__note {
  max-width: 58ch;
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.55;
}

.visual-image-board__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.visual-image-card {
  min-width: 0;
}

.visual-image-card button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: left;
  overflow: hidden;
}

.visual-image-card button:focus-visible,
.visual-image-card.is-selected button {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.visual-image-card img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.visual-image-card__caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(0, 25, 36, 0.6);
}

.visual-image-card__caption strong {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.visual-image-card__caption span {
  font-size: 18px;
  font-weight: 600;
}

.visual-image-card > p {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.45;
}

.visual-outcomes {
  background: var(--white);
}

.visual-outcomes__inner {
  padding: 24px 0 28px;
}

.visual-outcomes__label {
  margin: 0 0 18px;
  color: var(--accent-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visual-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-outcome {
  min-width: 0;
  padding: 4px 28px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border-left: 1px solid var(--line);
}

.visual-outcome:first-child {
  padding-left: 0;
  border-left: 0;
}

.visual-outcome .lucide {
  width: 28px;
  height: 28px;
  color: var(--ink);
}

.visual-outcome:nth-child(1) .lucide {
  color: var(--civic);
}

.visual-outcome:nth-child(2) .lucide {
  color: var(--accent-text);
}

.visual-outcome:nth-child(3) .lucide {
  color: var(--heritage);
}

.visual-outcome h2,
.visual-outcome p {
  margin: 0;
}

.visual-outcome h2 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.visual-outcome p {
  margin-top: 5px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.45;
}

.visual-services {
  padding-top: 88px;
  padding-bottom: 96px;
}

.visual-section-head {
  max-width: 680px;
  margin-bottom: 38px;
}

.visual-section-head .eyebrow {
  margin-bottom: 14px;
}

.visual-section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.visual-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.visual-service {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.visual-service:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 14px 28px rgba(0, 47, 66, 0.08);
}

.visual-service__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(0, 47, 66, 0.07);
  color: var(--ink);
}

.visual-service:nth-child(1) .visual-service__icon {
  background: var(--civic-wash);
  color: var(--civic);
}

.visual-service:nth-child(2) .visual-service__icon {
  background: var(--accent-wash);
  color: var(--accent-text);
}

.visual-service:nth-child(3) .visual-service__icon {
  background: var(--heritage-wash);
  color: var(--heritage);
}

.visual-service__icon .lucide {
  width: 22px;
  height: 22px;
}

.visual-service h3,
.visual-service p {
  margin: 0;
}

.visual-service h3 {
  font-size: 17px;
  font-weight: 600;
}

.visual-service p {
  margin-top: 9px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.5;
}

.visual-ai {
  padding-top: 88px;
  padding-bottom: 88px;
}

.visual-ai__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: center;
}

.visual-ai__signal {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  border-top: 1px solid rgba(252, 251, 248, 0.16);
  border-bottom: 1px solid rgba(252, 251, 248, 0.16);
}

.visual-ai__signal > .lucide {
  width: 88px;
  height: 88px;
  color: var(--accent);
  stroke-width: 1.3;
}

.visual-ai__wave {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.visual-ai__wave i {
  display: block;
  width: 4px;
  height: 32px;
  background: rgba(252, 251, 248, 0.8);
  animation: visualSignal 1.8s ease-in-out infinite;
}

.visual-ai__wave i:nth-child(2) { height: 64px; animation-delay: -0.3s; }
.visual-ai__wave i:nth-child(3) { height: 88px; animation-delay: -0.6s; }
.visual-ai__wave i:nth-child(4) { height: 54px; animation-delay: -0.9s; }
.visual-ai__wave i:nth-child(5) { height: 26px; animation-delay: -1.2s; }

@keyframes visualSignal {
  0%, 100% { transform: scaleY(0.72); opacity: 0.58; }
  50% { transform: scaleY(1); opacity: 1; }
}

.visual-ai__copy h2 {
  max-width: 14ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.visual-ai__copy > p:not(.eyebrow) {
  max-width: 52ch;
  margin: 20px 0 0;
  color: rgba(252, 251, 248, 0.75);
  font-size: 16px;
  line-height: 1.65;
}

.visual-ai__copy ul {
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.visual-ai__copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
}

.visual-ai__copy li .lucide {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.visual-ai__copy .button {
  gap: 10px;
}

.visual-ai__copy .button .lucide,
.visual-text-link .lucide {
  width: 16px;
  height: 16px;
}

.visual-community__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 72px;
  align-items: center;
}

.visual-community__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 47, 66, 0.06);
}

.visual-community__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.visual-community__copy {
  max-width: 460px;
}

.visual-community__copy .eyebrow {
  margin-bottom: 18px;
}

.visual-community__pin {
  display: block;
  margin-bottom: 22px;
  color: var(--accent-text);
}

.visual-community__pin .lucide {
  width: 36px;
  height: 36px;
}

.visual-community__copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.visual-community__copy > p:not(.eyebrow) {
  margin: 22px 0 26px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.visual-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.visual-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.visual-price-grid article {
  min-width: 0;
  min-height: 138px;
  padding: 26px 22px;
  border-left: 1px solid var(--line);
}

.visual-price-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.visual-price-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.visual-price-grid h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.visual-pricing__note {
  max-width: 760px;
  margin-top: 26px;
}

@media (prefers-reduced-motion: reduce) {
  .visual-service,
  .visual-ai__wave i {
    transition: none;
    animation: none;
  }
}

@media (max-width: 980px) {
  .visual-hero__copy {
    width: min(520px, 58%);
  }

  .visual-hero h1 {
    max-width: 520px;
    font-size: clamp(41px, 4.5vw, 48px);
  }

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

  .visual-ai__grid,
  .visual-community__grid {
    gap: 44px;
  }

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

  .visual-price-grid article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .visual-price-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .copy-switcher {
    top: 4px;
    right: 4px;
    bottom: auto;
  }

  .copy-switcher > span {
    display: none;
  }

  .nav__inner {
    padding-top: 54px;
  }

  .visual-hero {
    min-height: 0;
    display: block;
    background: var(--ink);
    color: var(--paper);
  }

  .visual-hero__media {
    position: relative;
    inset: auto;
    display: block;
    height: 230px;
  }

  .visual-hero__media img {
    position: absolute;
    object-position: center;
  }

  .visual-hero__veil {
    display: none;
  }

  .visual-hero__content {
    min-height: 0;
    padding: 32px 0 38px;
    background: var(--ink);
    align-items: flex-start;
  }

  .visual-hero__copy {
    width: 100%;
  }

  .visual-hero__copy > .eyebrow {
    margin-bottom: 10px;
    color: var(--accent);
    text-shadow: none;
  }

  .visual-hero__brand {
    gap: 12px;
    margin-bottom: 16px;
  }

  .visual-hero__logo {
    color: var(--paper);
    font-size: 72px;
  }

  .visual-hero__brand p,
  .visual-hero__intro,
  .visual-hero__actions > span {
    color: rgba(252, 251, 248, 0.82);
  }

  .visual-hero__brand p {
    max-width: 19ch;
    margin-bottom: 0;
    font-size: 10px;
    text-shadow: none;
  }

  .visual-hero h1 {
    max-width: 560px;
    font-size: 40px;
    line-height: 1;
  }

  .visual-hero__intro {
    max-width: 35ch;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .visual-hero__actions {
    gap: 12px;
    margin-top: 18px;
  }

  .visual-hero__actions .button {
    min-height: 44px;
    border-color: var(--accent);
    background: var(--accent);
    color: var(--ink);
    padding: 11px 16px;
    font-size: 10px;
  }

  .visual-hero__actions > span {
    font-size: 10px;
  }

  .visual-image-switcher {
    margin-top: 14px;
    gap: 8px;
  }

  .visual-image-switcher > span {
    color: rgba(252, 251, 248, 0.78);
  }

  .visual-image-switcher button {
    min-height: 26px;
    border-color: rgba(252, 251, 248, 0.46);
    background: rgba(0, 47, 66, 0.42);
    color: var(--paper);
    padding: 4px 8px;
    font-size: 9px;
  }

  .visual-image-switcher button[aria-pressed="true"] {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--ink);
  }

  .visual-image-board__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .visual-image-board {
    padding: 44px 0 52px;
  }

  .visual-image-card img {
    height: 96px;
  }

  .visual-image-card > p {
    display: none;
  }

  .visual-image-card__caption {
    right: 6px;
    bottom: 7px;
    left: 6px;
    gap: 5px;
    align-items: flex-end;
    flex-direction: column;
  }

  .visual-image-card__caption strong {
    font-size: 8px;
  }

  .visual-image-card__caption span {
    font-size: 11px;
    line-height: 1.05;
  }

  .visual-outcomes__inner {
    padding: 22px 0;
  }

  .visual-outcomes__grid {
    grid-template-columns: 1fr;
  }

  .visual-outcome,
  .visual-outcome:first-child {
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .visual-outcome:last-child {
    padding-bottom: 0;
  }

  .visual-services {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .visual-section-head {
    margin-bottom: 28px;
  }

  .visual-section-head h2,
  .visual-ai__copy h2,
  .visual-community__copy h2 {
    font-size: 34px;
  }

  .visual-services__grid {
    gap: 12px;
  }

  .visual-service {
    min-height: 168px;
    padding: 18px;
  }

  .visual-service__icon {
    margin-bottom: 24px;
  }

  .visual-ai {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .visual-ai__grid,
  .visual-community__grid {
    grid-template-columns: 1fr;
  }

  .visual-ai__signal {
    min-height: 170px;
  }

  .visual-ai__signal > .lucide {
    width: 66px;
    height: 66px;
  }

  .visual-community__grid {
    gap: 38px;
  }

  .visual-community__copy {
    max-width: none;
  }

  .visual-community__pin {
    margin-bottom: 16px;
  }
}

@media (max-width: 460px) {
  .visual-hero h1 {
    font-size: 32px;
  }

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

  .visual-service {
    min-height: 156px;
    padding: 15px;
  }

  .visual-service__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
  }

  .visual-service h3 {
    font-size: 15px;
  }

  .visual-service p {
    font-size: 12px;
  }

  .visual-price-grid strong {
    font-size: 25px;
  }

  .visual-price-grid article {
    min-height: 130px;
    padding: 22px 14px;
  }
}

/* Site-wide Visual mode and review image library. */
.copy-switcher__images {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(252, 251, 248, 0.34);
  border-radius: 4px;
  background: var(--accent);
  color: var(--ink);
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
}

.copy-switcher__images .lucide {
  width: 14px;
  height: 14px;
}

.copy-switcher__images span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0.06em;
}

.visual-page-hero {
  position: relative;
  min-height: 500px;
  isolation: isolate;
  overflow: hidden;
}

.visual-page-hero__media,
.visual-page-hero__media img,
.visual-page-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visual-page-hero__media img {
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02);
}

.visual-page-hero__veil {
  z-index: 1;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(252, 251, 248, 0.99) 36%, rgba(252, 251, 248, 0.88) 52%, rgba(252, 251, 248, 0.12) 78%, rgba(252, 251, 248, 0) 100%);
}

.visual-page-hero__content {
  position: relative;
  z-index: 2;
  min-height: 500px;
  padding: 64px 0;
  display: flex;
  align-items: center;
}

.visual-page-hero__copy {
  width: min(650px, 56%);
}

.visual-page-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.4vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

.visual-page-hero .lead {
  max-width: 50ch;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.62;
}

.visual-page-hero__action {
  margin: 30px 0 0;
}

.visual-subpage > .section.pad,
.visual-subpage > .pad {
  padding-top: 88px;
  padding-bottom: 92px;
}

.visual-subpage .grid-2 {
  gap: 64px;
}

.visual-subpage .display {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.visual-subpage .copy + .copy {
  margin-top: 18px;
}

.visual-knowledge .grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.visual-subpage .knowledge-card {
  min-height: 270px;
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.visual-subpage .knowledge-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 14px 28px rgba(0, 47, 66, 0.08);
}

.visual-card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--civic-wash);
  color: var(--civic);
}

.knowledge-card:nth-child(2n) .visual-card-icon {
  background: var(--accent-wash);
  color: var(--accent-text);
}

.knowledge-card:nth-child(3n) .visual-card-icon {
  background: var(--heritage-wash);
  color: var(--heritage);
}

.visual-card-icon .lucide {
  width: 22px;
  height: 22px;
}

.visual-specialized .card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.visual-privacy .privacy-list {
  max-width: 820px;
}

.visual-privacy .privacy-list h2 {
  margin-top: 48px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.image-library {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 25, 36, 0.62);
  backdrop-filter: blur(5px);
}

body.is-image-library-open {
  overflow: hidden;
}

.image-library__panel {
  width: min(760px, 100%);
  height: 100%;
  overflow-y: auto;
  background: var(--paper);
  box-shadow: -24px 0 60px rgba(0, 25, 36, 0.28);
}

.image-library__header {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 30px 30px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(252, 251, 248, 0.97);
  backdrop-filter: blur(8px);
}

.image-library__header .eyebrow {
  margin-bottom: 8px;
}

.image-library__header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.12;
}

.image-library__header p:last-child {
  margin: 10px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
}

.image-library__close {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.image-library__close .lucide {
  width: 20px;
  height: 20px;
}

.image-library__grid {
  padding: 24px 30px 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.image-library__item {
  position: relative;
  min-width: 0;
  padding: 0;
  display: grid;
  grid-template-rows: 150px 1fr;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  text-align: left;
}

.image-library__item[aria-pressed="true"] {
  border-color: var(--accent-text);
  box-shadow: 0 0 0 2px var(--accent-wash);
}

.image-library__item img {
  width: 100%;
  height: 150px;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.image-library__item > span {
  padding: 14px 16px 16px;
}

.image-library__item strong,
.image-library__item small {
  display: block;
}

.image-library__item strong {
  font-size: 14px;
}

.image-library__item small {
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: 11px;
  line-height: 1.4;
}

.image-library__item > i {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-style: normal;
}

.image-library__item > i .lucide {
  width: 16px;
  height: 16px;
}

@media (max-width: 760px) {
  .copy-switcher__images span {
    display: none;
  }

  .visual-page-hero {
    min-height: 0;
    display: block;
    background: var(--ink);
    color: var(--paper);
  }

  .visual-page-hero__media {
    position: relative;
    inset: auto;
    display: block;
    height: 240px;
  }

  .visual-page-hero__media img {
    position: absolute;
  }

  .visual-page-hero__veil {
    display: none;
  }

  .visual-page-hero__content {
    min-height: 0;
    padding: 34px 0 40px;
    background: var(--ink);
    align-items: flex-start;
  }

  .visual-page-hero__copy {
    width: 100%;
  }

  .visual-page-hero .eyebrow {
    margin-bottom: 12px;
    color: var(--accent);
    text-shadow: none;
  }

  .visual-page-hero h1 {
    max-width: 14ch;
    font-size: 40px;
  }

  .visual-page-hero .lead {
    margin-top: 18px;
    color: rgba(252, 251, 248, 0.84);
    font-size: 15px;
    line-height: 1.5;
  }

  .visual-page-hero__action {
    margin-top: 22px;
  }

  .visual-page-hero__action .button {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--ink);
  }

  .visual-subpage > .section.pad,
  .visual-subpage > .pad {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .visual-subpage .grid-2,
  .visual-knowledge .grid-3 {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .visual-subpage .knowledge-card {
    min-height: 230px;
  }

  .image-library__header {
    padding: 24px 18px 18px;
  }

  .contact-direct {
    min-height: 0;
    padding: 30px 22px;
  }

  .contact-direct h3 {
    font-size: 30px;
  }

  .image-library__header h2 {
    font-size: 27px;
  }

  .image-library__grid {
    padding: 18px 18px 32px;
    grid-template-columns: 1fr;
  }

  .image-library__item {
    grid-template-columns: 42% 1fr;
    grid-template-rows: 118px;
  }

  .image-library__item img {
    height: 118px;
  }
}
.knowledge-publication { background:#fbfaf7; color:#003848; }
.writing-options {
  position:absolute;
  top:18px;
  right:18px;
  z-index:8;
  font-family:Arial,sans-serif;
}
.writing-options__toggle {
  border:1px solid rgba(0,47,66,.24);
  border-radius:999px;
  padding:7px 10px;
  background:rgba(252,251,248,.88);
  color:var(--ink);
  font:700 10px/1 Arial,sans-serif;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 3px 12px rgba(0,47,66,.08);
}
.writing-options__toggle:hover,.writing-options.is-open .writing-options__toggle { background:var(--ink); color:var(--paper); }
.writing-options__menu {
  position:absolute;
  top:34px;
  right:0;
  width:214px;
  padding:6px;
  border:1px solid rgba(0,47,66,.18);
  background:rgba(252,251,248,.98);
  box-shadow:0 14px 34px rgba(0,47,66,.17);
}
.writing-options__menu > p { margin:6px 8px 5px; color:var(--ink-muted); font:700 9px/1 Arial,sans-serif; letter-spacing:.12em; }
.writing-options__menu button { display:flex; flex-direction:column; align-items:flex-start; width:100%; border:0; border-left:3px solid transparent; padding:8px 9px; background:transparent; color:var(--ink); text-align:left; }
.writing-options__menu button:hover,.writing-options__menu button[aria-pressed="true"] { border-left-color:var(--accent); background:var(--accent-wash); }
.writing-options__menu button span { font:700 12px/1.2 Arial,sans-serif; }
.writing-options__menu button small { margin-top:3px; color:var(--ink-muted); font:400 11px/1.25 Arial,sans-serif; }
main section.section,.knowledge-reader > section { position:relative; transition:background-color .2s ease, border-color .2s ease, box-shadow .2s ease; }
body:not([data-review="true"]) .writing-options { display:none; }
body[data-writing-option="operator"] main section.section { border-top-color:rgba(0,47,66,.3); }
body[data-writing-option="doctor"] main section.section { box-shadow:inset 0 3px 0 rgba(166,83,58,.38); }
body[data-writing-option="buffalo"] main section.section { border-left:3px solid rgba(47,107,97,.45); }
body[data-writing-option="field"] main section.section { background-image:linear-gradient(120deg,rgba(47,107,97,.035),transparent 48%); }
.knowledge-reader > section.writing-option--operator { border-left:3px solid #003848; padding-left:22px; }
.knowledge-reader > section.writing-option--doctor { background:rgba(243,247,248,.72); padding:24px; }
.knowledge-reader > section.writing-option--buffalo { border-left:4px solid #2f6b61; padding-left:24px; }
.knowledge-reader > section.writing-option--field { background:linear-gradient(120deg,rgba(47,107,97,.055),transparent 62%); }
.editorial-home { background:var(--paper); color:var(--ink); }
.editorial-hero { padding:92px 0 104px; border-bottom:1px solid var(--line); }
.editorial-hero__inner { max-width:900px; }
.editorial-hero__brand { display:flex; align-items:baseline; gap:18px; margin:4px 0 30px; }
.editorial-hero__logo { font-family:Georgia,"Times New Roman",serif; font-style:italic; font-size:clamp(76px,10vw,126px); line-height:.8; }
.editorial-hero__brand > span { color:var(--ink-muted); font:600 12px/1.2 Arial,sans-serif; letter-spacing:.18em; text-transform:uppercase; }
.editorial-hero h1 { max-width:780px; margin:0 0 22px; font:400 clamp(48px,5.3vw,72px)/1.02 Georgia,serif; text-wrap:balance; }
.editorial-hero__lead { max-width:650px; margin:0; color:var(--ink-soft); font-size:21px; line-height:1.55; }
.editorial-problem { padding:92px 0; background:#fff; }
.editorial-problem__grid,.editorial-services__grid,.editorial-specialized__grid,.editorial-local__grid { display:grid; grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr); gap:76px; align-items:start; }
.editorial-problem h2,.editorial-method h2,.editorial-services h2,.editorial-specialized h2,.editorial-local h2,.editorial-pricing h2 { margin:0; font:400 clamp(34px,4vw,52px)/1.08 Georgia,serif; text-wrap:balance; }
.editorial-problem__grid > div > .copy { max-width:650px; }
.editorial-path { margin-top:36px; border-top:1px solid var(--line); }
.editorial-path__row { display:grid; grid-template-columns:44px 180px minmax(0,1fr); gap:18px; align-items:baseline; padding:18px 0; border-bottom:1px solid var(--line); }
.editorial-path__row > span,.editorial-method strong,.editorial-service-list > div > span { color:var(--accent-text); font:700 11px/1 Arial,sans-serif; letter-spacing:.12em; }
.editorial-path__row strong { font-size:16px; }
.editorial-path__row p { margin:0; color:var(--ink-muted); font-size:15px; line-height:1.45; }
.editorial-method { padding:82px 0; background:var(--civic-wash); }
.editorial-method__grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:1px; margin-top:44px; background:var(--line); border:1px solid var(--line); }
.editorial-method__grid > div { min-height:210px; padding:24px; background:rgba(255,255,255,.72); }
.editorial-method h3 { margin:24px 0 10px; font:400 27px/1 Georgia,serif; }
.editorial-method p { margin:0; color:var(--ink-muted); font-size:15px; line-height:1.55; }
.editorial-services { padding:92px 0; }
.editorial-service-list { border-top:1px solid var(--line); }
.editorial-service-list > div { display:grid; grid-template-columns:42px 190px minmax(0,1fr); gap:16px; align-items:baseline; padding:20px 0; border-bottom:1px solid var(--line); }
.editorial-service-list strong { font-size:16px; }
.editorial-service-list p { margin:0; color:var(--ink-muted); font-size:15px; line-height:1.45; }
.editorial-specialized { padding:84px 0; }
.editorial-specialized .copy { margin:0 0 20px; color:rgba(252,251,248,.82); }
.editorial-specialized .small-note { margin-bottom:26px; color:rgba(252,251,248,.68); }
.editorial-local { padding:92px 0; background:#fff; }
.editorial-local__grid { align-items:center; }
.editorial-local img { display:block; width:100%; aspect-ratio:4/3; object-fit:cover; }
.editorial-local .copy { max-width:600px; }
.editorial-link { display:inline-flex; align-items:center; gap:8px; margin-top:18px; color:var(--ink); font-weight:700; text-decoration:none; }
.editorial-link .lucide { width:16px; height:16px; }
.editorial-pricing { padding:92px 0; border-top:1px solid var(--line); }
.editorial-pricing__grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:1px; margin:38px 0 24px; background:var(--line); border:1px solid var(--line); }
.editorial-pricing__grid .price-card { min-height:210px; border:0; }
@media (max-width:900px) {
  .editorial-problem__grid,.editorial-services__grid,.editorial-specialized__grid,.editorial-local__grid { grid-template-columns:1fr; gap:42px; }
  .editorial-method__grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .editorial-pricing__grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:600px) {
  .editorial-hero { padding:56px 0 68px; }
  .editorial-hero__brand { gap:12px; margin-bottom:26px; }
  .editorial-hero__logo { font-size:78px; }
  .editorial-hero__brand > span { font-size:9px; line-height:1.35; }
  .editorial-hero h1 { font-size:40px; }
  .editorial-hero__lead { font-size:18px; }
  .editorial-problem,.editorial-services,.editorial-local,.editorial-pricing { padding:64px 0; }
  .editorial-method,.editorial-specialized { padding:64px 0; }
  .editorial-problem h2,.editorial-method h2,.editorial-services h2,.editorial-specialized h2,.editorial-local h2,.editorial-pricing h2 { font-size:34px; }
  .editorial-path__row { grid-template-columns:34px 1fr; gap:10px; }
  .editorial-path__row p { grid-column:2; }
  .editorial-method__grid,.editorial-pricing__grid { grid-template-columns:1fr; }
  .editorial-method__grid > div { min-height:0; }
  .editorial-service-list > div { grid-template-columns:32px 1fr; gap:10px; }
  .editorial-service-list p { grid-column:2; }
}
.about-ikigai { background:#eef4f1; }
.about-ikigai__grid { align-items:center; }
.ikigai-figure { margin:0; }
.ikigai-chart { position:relative; isolation:isolate; }
.ikigai-chart img { display:block; width:100%; aspect-ratio:4/3; object-fit:cover; }
.ikigai-label,.ikigai-center { position:absolute; z-index:1; display:block; color:#062f3e; font:700 12px/1.12 Arial,sans-serif; letter-spacing:.08em; text-align:center; text-transform:uppercase; }
.ikigai-label { padding:8px 10px; background:rgba(252,251,248,.88); box-shadow:0 1px 0 rgba(0,47,66,.15); }
.ikigai-label small,.ikigai-center small { display:block; margin-top:4px; font:600 9px/1.1 Arial,sans-serif; letter-spacing:.04em; text-transform:none; }
.ikigai-label--capability { top:12%; left:9%; }
.ikigai-label--useful { top:12%; right:8%; }
.ikigai-label--community { bottom:13%; left:7%; }
.ikigai-label--lasting { bottom:13%; right:7%; }
.ikigai-center { top:50%; left:50%; width:116px; height:58px; display:grid; place-items:center; padding:8px; border:2px solid #f27636; border-radius:50%; background:#fcfbf8; transform:translate(-50%,-50%); color:#b75022; }
.ikigai-translation { margin-top:28px; padding-top:18px; border-top:1px solid rgba(0,47,66,.18); color:#315761; font-size:16px; line-height:1.55; }
.ikigai-figure figcaption { padding-top:12px; color:#617477; font-size:13px; letter-spacing:.08em; text-transform:uppercase; }
.knowledge-status { background:#f3793b; color:#082f3b; border-bottom:1px solid rgba(0,56,72,.18); }
.knowledge-status--preview { background:#dcecf3; }
.knowledge-status--review { box-shadow: inset 0 -3px 0 rgba(0,56,72,.14); }
.knowledge-status__inner { min-height:86px; display:flex; align-items:center; justify-content:space-between; gap:28px; padding-top:18px; padding-bottom:18px; }
.knowledge-status p { margin:3px 0 0; }
.knowledge-mode,.knowledge-filters { display:flex; gap:4px; padding:4px; border:1px solid rgba(0,56,72,.25); background:rgba(255,255,255,.68); }
.knowledge-mode button,.knowledge-filters button { border:0; background:transparent; color:#003848; padding:11px 15px; font:600 13px/1.2 Arial,sans-serif; cursor:pointer; }
.knowledge-mode button[aria-pressed="true"],.knowledge-filters button[aria-pressed="true"] { background:#003848; color:#fff; }
.knowledge-mode--floating { position:fixed; z-index:1000; top:18px; right:18px; align-items:center; gap:3px; padding:3px; border-color:rgba(0,56,72,.32); background:rgba(252,251,248,.94); box-shadow:0 8px 24px rgba(0,47,66,.12); }
.knowledge-mode--floating > span { padding:0 7px; color:#64777b; font:700 9px/1 Arial,sans-serif; letter-spacing:.12em; text-transform:uppercase; }
.knowledge-mode--floating button { padding:8px 10px; font-size:10px; letter-spacing:.04em; text-transform:uppercase; }
.knowledge-hero { padding:72px 0; border-bottom:1px solid #d9dedc; }
.knowledge-hero__grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(360px,.78fr); gap:72px; align-items:center; }
.knowledge-hero h1 { max-width:790px; margin:18px 0 24px; font:400 clamp(48px,5.2vw,82px)/.98 Georgia,serif; }
.knowledge-hero .lead { max-width:710px; }
.knowledge-hero__actions { display:flex; align-items:center; flex-wrap:wrap; gap:20px; margin-top:30px; color:#65777c; }
.knowledge-hero__image { margin:0; }
.knowledge-hero__image picture,.knowledge-hero__image img { display:block; width:100%; }
.knowledge-hero__image img { aspect-ratio:4/3; object-fit:cover; }
.knowledge-hero__image figcaption { padding:10px 0; font-size:13px; color:#65777c; }
.knowledge-heading { display:flex; justify-content:space-between; align-items:end; gap:30px; margin-bottom:34px; }
.knowledge-heading h2,.knowledge-planned h2 { margin:10px 0 0; font:400 44px/1.05 Georgia,serif; }
.knowledge-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1px; background:#cfd8d8; border:1px solid #cfd8d8; margin-top:34px; }
.knowledge-group { margin-top:54px; }
.knowledge-group:first-child { margin-top:0; }
.knowledge-group__heading { display:flex; justify-content:space-between; align-items:end; gap:24px; }
.knowledge-group__heading p:last-child { max-width:620px; margin:8px 0 0; color:#53676d; }
.knowledge-entry { min-height:310px; display:flex; flex-direction:column; padding:30px; background:#fff; }
.knowledge-entry--opinion { background:#f3f7f8; }
.knowledge-entry--workshop { background:#fff7f0; }
.knowledge-entry__meta,.knowledge-entry__foot { display:flex; justify-content:space-between; align-items:center; gap:14px; color:#64777b; font:700 12px/1.3 Arial,sans-serif; text-transform:uppercase; }
.knowledge-entry__meta .visual-card-icon { width:42px; height:42px; }
.knowledge-entry h3 { margin:28px 0 14px; font:400 30px/1.06 Georgia,serif; }
.knowledge-entry p { margin:0; color:#53676d; font-size:17px; line-height:1.55; }
.knowledge-entry__foot { margin-top:auto; padding-top:28px; }
.knowledge-entry__foot button,.knowledge-back { border:0; border-bottom:1px solid currentColor; background:transparent; color:#003848; padding:3px 0; font:700 12px/1.2 Arial,sans-serif; text-transform:uppercase; cursor:pointer; }
.knowledge-close .button { margin-top:24px; }
.knowledge-reader { max-width:820px; margin:0 auto; padding:84px 28px 110px; }
.knowledge-reader header { padding-bottom:38px; border-bottom:1px solid #cad4d4; }
.knowledge-reader h1 { margin:18px 0 24px; font:400 clamp(48px,6vw,76px)/1 Georgia,serif; }
.knowledge-reader__meta { color:#65777c; font-size:14px; }
.knowledge-lens { margin-top:30px; padding-top:20px; border-top:1px solid #cad4d4; }
.knowledge-lens__heading { display:flex; justify-content:space-between; align-items:baseline; gap:14px; color:#65777c; font:600 11px/1.3 Arial,sans-serif; }
.knowledge-lens__heading .eyebrow { color:#b75022; }
.knowledge-lens__buttons { display:flex; flex-wrap:wrap; gap:5px; margin-top:12px; }
.knowledge-lens__buttons button { border:1px solid rgba(0,56,72,.2); background:#fff; color:#003848; padding:8px 11px; font:700 10px/1 Arial,sans-serif; letter-spacing:.07em; text-transform:uppercase; cursor:pointer; }
.knowledge-lens__buttons button:hover,.knowledge-lens__buttons button[aria-pressed="true"] { border-color:#003848; background:#003848; color:#fff; }
.knowledge-lens__copy { max-width:700px; margin:14px 0 0; color:#53676d; font:italic 17px/1.55 Georgia,serif; }
.knowledge-reader section { margin:46px 0; }
.knowledge-reader section h2 { margin:0 0 16px; font:400 34px/1.1 Georgia,serif; }
.knowledge-reader section p,.knowledge-reader aside p { font:400 20px/1.7 Georgia,serif; color:#294c56; }
.knowledge-reader aside { margin:56px 0; padding:26px; border-left:4px solid #f3793b; background:#eef5f6; }
.knowledge-reader aside p { margin-bottom:0; font-size:17px; }
.knowledge-reader__sources { border-left-color:#2f6b61; }
.knowledge-reader__sources ul { margin:14px 0 0; padding-left:20px; color:#294c56; }
.knowledge-reader__sources li { margin:8px 0; }
@media (max-width: 900px) {
  .knowledge-hero__grid { grid-template-columns:1fr; gap:38px; }
  .knowledge-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .knowledge-heading { align-items:flex-start; flex-direction:column; }
}
@media (max-width: 600px) {
  .writing-options { top:12px; right:12px; }
  .writing-options__toggle { padding:6px 8px; font-size:9px; }
  .writing-options__menu { width:min(214px, calc(100vw - 40px)); }
  .knowledge-reader > section.writing-option--doctor { padding:18px; }
  .about-ikigai__grid { gap:28px; }
  .ikigai-figure { margin-left:-8px; margin-right:-8px; }
  .ikigai-label { font-size:8px; padding:6px 7px; letter-spacing:.02em; }
  .ikigai-label small,.ikigai-center small { font-size:7px; margin-top:3px; }
  .ikigai-center { width:88px; height:52px; font-size:10px; }
  .knowledge-status__inner { align-items:flex-start; flex-direction:column; gap:14px; }
  .knowledge-mode { width:100%; }
  .knowledge-mode--floating { width:auto; top:12px; right:12px; }
  .knowledge-mode--floating > span { display:none; }
  .knowledge-mode button { flex:1; padding:10px 6px; }
  .knowledge-hero { padding:46px 0; }
  .knowledge-hero h1 { font-size:44px; }
  .knowledge-hero__grid { gap:30px; }
  .knowledge-hero__image { margin-left:-16px; margin-right:-16px; }
  .knowledge-hero__image figcaption { padding-left:16px; }
  .knowledge-heading h2,.knowledge-planned h2 { font-size:36px; }
  .knowledge-filters { width:100%; overflow:auto; }
  .knowledge-filters button { white-space:nowrap; }
  .knowledge-grid { grid-template-columns:1fr; }
  .knowledge-entry { min-height:280px; padding:26px 22px; }
  .knowledge-reader { padding:54px 24px 80px; }
  .knowledge-reader h1 { font-size:46px; }
  .knowledge-reader section p { font-size:19px; }
}

/* 2026-07-14 credibility pass */
.nav__inner {
  min-height: 78px;
  grid-template-columns: auto 1fr;
  justify-items: stretch;
  gap: 32px;
  padding: 12px 0;
}

.brand {
  justify-content: flex-start;
  text-align: left;
}

.credibility-method__grid,
.offer-ladder__grid,
.principles__grid,
.maturity__grid,
.proof-area__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.credibility-step,
.offer-card,
.principles__grid article,
.maturity__grid article,
.proof-area__grid a {
  background: var(--paper);
  padding: clamp(26px, 4vw, 44px);
}

.credibility-step > strong,
.principles__grid article > strong,
.maturity__grid article > strong {
  color: var(--accent-text);
  font-size: 11px;
  letter-spacing: .16em;
}

.credibility-step h3,
.offer-card h3,
.principles__grid h3,
.proof-area__grid h2 {
  margin: 20px 0 12px;
  font: 400 clamp(25px, 3vw, 34px)/1.08 Georgia, "Times New Roman", serif;
}

.credibility-step p,
.offer-card p,
.principles__grid p,
.maturity__grid p,
.proof-area__grid p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.offer-ladder__grid {
  align-items: stretch;
}

.offer-ladder__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-ladder__details {
  margin: 28px 0 0;
}

.offer-card {
  display: flex;
  flex-direction: column;
}

.offer-card > strong {
  color: var(--accent-text);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.offer-card__includes {
  margin-top: 22px !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.offer-card .small-note {
  margin-top: 22px;
}

.offer-card--featured {
  box-shadow: inset 0 5px 0 var(--accent);
}

.package-detail__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.package-detail__heading h2 {
  margin: 0;
}

.package-detail__heading > strong {
  color: var(--accent);
  white-space: nowrap;
}

.package-detail > .wrap > .copy {
  max-width: 780px;
}

.package-detail__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  margin: 40px 0 28px;
}

.package-detail__columns > div {
  border: 1px solid rgba(255,255,255,.18);
  padding: 28px;
}

.package-detail__columns h3 {
  margin: 0 0 22px;
  font: 400 23.8px/1.1 Georgia, serif;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.package-detail__columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-detail__columns li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  line-height: 1.45;
}

.package-detail__columns li svg {
  width: 18px;
  flex: 0 0 18px;
}

.principles__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.16);
}

.principles__grid article {
  background: transparent;
}

.principles__grid p {
  color: rgba(255,255,255,.76);
}

.founder-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.founder-intro__copy {
  max-width: 760px;
}

.founder-intro__portrait {
  display: flex;
  justify-content: flex-end;
}

.founder-portrait {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 28%;
}

.maturity__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.proof-area__grid a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .principles__grid,
  .maturity__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav {
    position: sticky;
  }

  .nav__inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0 0;
  }

  .brand {
    width: auto;
    justify-self: start;
    justify-content: flex-start;
    text-align: left;
  }

  .brand__name {
    max-width: 24ch;
    font-size: 9px;
  }

  .nav__cluster {
    display: block;
    grid-column: 1;
    padding: 0;
  }

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

  .nav__links a {
    display: block;
    width: 100%;
    padding: 12px 4px;
    border-top: 1px solid var(--line);
    text-align: center;
  }

  .nav__links .nav__cta {
    display: none;
  }

  .credibility-method__grid,
  .offer-ladder__grid,
  .principles__grid,
  .maturity__grid,
  .proof-area__grid,
  .offer-ladder__grid--two,
  .package-detail__columns {
    grid-template-columns: 1fr;
  }

  .package-detail__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .package-detail__heading > strong {
    white-space: normal;
  }

  .visual-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .visual-hero__actions .button,
  .visual-hero__actions > span {
    width: 100%;
    max-width: none;
  }

  .visual-hero__actions > span {
    font-size: 11px;
  }

  .founder-photo {
    width: min(72vw, 260px);
    margin-left: auto;
    margin-right: auto;
  }

  .founder-photo {
    margin-bottom: 18px;
  }

  .founder-intro__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .founder-intro__portrait {
    justify-content: center;
  }

  .founder-portrait {
    width: 136px;
    height: 136px;
    margin: 0 auto;
  }
}
