:root {
  --paper: #f8f7f1;
  --paper-deep: #efeee5;
  --surface: #fffefa;
  --ink: #073235;
  --ink-strong: #041f21;
  --ink-reading: #3f615f;
  --ink-muted: #526b69;
  --line: #d9d8ce;
  --line-dark: rgba(255, 254, 250, .2);
  --brass: #ad8f55;
  --brass-ink: #80651f;
  --brass-soft: #d8c99e;
  --clay: #b55f44;
  --teal-soft: #dbe8e3;
  --radius-card: 8px;
  --radius-media: 8px;
  --shadow-soft: 0 22px 60px rgba(7, 50, 53, .14);
  --font-sans: "Albert Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Familjen Grotesk", "Albert Sans", system-ui, sans-serif;
  --nav-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 18px);
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--nav-height);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, .82), rgba(248, 247, 241, 0) 360px),
    linear-gradient(90deg, rgba(7, 50, 53, .08), rgba(7, 50, 53, 0) 42%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(181, 95, 68, .36);
  outline-offset: 4px;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

main {
  overflow: hidden;
}

.hero,
.recognition-section,
.offers-section,
.presence-map,
.proof-section,
.contact-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(248, 247, 241, .92);
  border-bottom: 1px solid rgba(217, 216, 206, .9);
  box-shadow: 0 10px 28px rgba(7, 50, 53, .06);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-photo {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}

.brand-photo img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line), 0 8px 18px rgba(7, 50, 53, .12);
}

.availability-dot {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: #2e8d63;
}

.brand span:last-child {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand strong {
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
}

.brand small {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.15;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 19px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--ink);
  color: #fffefa;
  box-shadow: 0 14px 30px rgba(7, 50, 53, .22);
}

.button.primary:hover {
  background: #031f21;
}

.button.secondary,
.button.outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button.secondary:hover,
.button.outline:hover {
  background: rgba(255, 254, 250, .72);
  box-shadow: inset 0 0 0 1px var(--brass);
}

.button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.whatsapp-modal {
  position: fixed;
  inset: 0;
  z-index: 560;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 31, 33, .78);
  backdrop-filter: blur(10px);
  animation: whatsapp-modal-in 180ms ease-out;
}

.whatsapp-modal-panel {
  width: min(100%, 560px);
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
}

.whatsapp-modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.whatsapp-modal-header div {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.whatsapp-modal-header span,
.whatsapp-phone-box span {
  color: var(--brass-ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.1;
}

.whatsapp-modal-header h2 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.02;
  font-weight: 800;
}

.whatsapp-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(7, 50, 53, .2);
  border-radius: 50%;
  color: var(--ink-strong);
  background: var(--paper);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.whatsapp-modal-close:hover,
.whatsapp-modal-close:focus-visible {
  color: #fffefa;
  background: var(--ink);
  transform: scale(1.04);
}

.whatsapp-modal-close span {
  display: block;
  font-size: 27px;
  font-weight: 850;
  line-height: 1;
  transform: translateY(-1px);
}

.whatsapp-modal-copy {
  margin: 0;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.55;
}

.whatsapp-phone-box {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--paper-deep);
}

.whatsapp-phone-box strong {
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.whatsapp-timer {
  height: 6px;
  padding: 2px;
  margin-top: 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(7, 50, 53, .1);
}

.whatsapp-timer-bar {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--brass);
  transform-origin: left center;
  transition: transform 120ms linear;
}

.whatsapp-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.whatsapp-modal-actions .button {
  min-height: 46px;
}

.whatsapp-modal-status {
  min-height: 20px;
  margin: -6px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 700;
}

@keyframes whatsapp-modal-in {
  from {
    opacity: 0;
  }
}

.nav-cta {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 14px;
  white-space: nowrap;
}

.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 0 42px;
}

.hero-kicker,
.section-note,
.offer-step,
.proof-label {
  margin: 0 0 16px;
  color: var(--brass-ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.hero h1 {
  max-width: 1060px;
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 84px;
  line-height: .96;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 22px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-proof-strip span {
  position: relative;
  padding: 16px 30px 16px 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.hero-proof-strip span + span {
  padding-left: 30px;
}

.hero-proof-strip span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: var(--line);
}

.recognition-section,
.offers-section,
.presence-map,
.proof-section,
.contact-section {
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.section-intro {
  display: grid;
  gap: 18px;
  max-width: 840px;
  margin-bottom: 42px;
}

.section-intro.narrow {
  max-width: 760px;
}

.section-intro h2,
.contact-section h2,
.about-copy h2 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-intro p:not(.section-note),
.contact-section p,
.about-copy p {
  margin: 0;
  max-width: 72ch;
  color: var(--ink-muted);
  font-size: 19px;
  line-height: 1.6;
}

.recognition-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 70px;
  align-items: start;
}

.recognition-section .section-intro {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

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

.recognition-item {
  display: grid;
  gap: 12px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.recognition-item h3 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.08;
  font-weight: 800;
}

.recognition-item p {
  margin: 0;
  max-width: 62ch;
  color: var(--ink-muted);
  font-size: 18px;
}

.offer-board {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: 22px;
  align-items: stretch;
}

.offer-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 34px;
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

.primary-offer {
  background: var(--ink);
  color: #fffefa;
  box-shadow: var(--shadow-soft);
}

.offer-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.offer-panel p:not(.offer-step) {
  margin: 20px 0 0;
  color: var(--ink-muted);
  font-size: 18px;
}

.primary-offer p:not(.offer-step),
.primary-offer .offer-step {
  color: rgba(255, 254, 250, .78);
}

.offer-panel ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.offer-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 16px;
}

.offer-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .67em;
  width: 10px;
  height: 2px;
  background: var(--brass);
}

.primary-offer li {
  color: rgba(255, 254, 250, .88);
}

.offer-panel .button {
  align-self: flex-start;
  margin-top: auto;
}

.primary-offer .button.primary {
  background: #fffefa;
  color: var(--ink);
  box-shadow: none;
}

.primary-offer .button.primary:hover {
  background: var(--brass-soft);
}

.presence-map {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: start;
}

.presence-map .section-intro {
  margin-bottom: 0;
}

.map-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.map-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.map-item > span {
  width: 36px;
  height: 2px;
  margin-top: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brass) 0 24px, var(--line) 24px 100%);
}

.map-item h3 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.12;
}

.map-item p {
  margin: 9px 0 0;
  color: var(--ink-muted);
  font-size: 17px;
}

.proof-intro {
  margin-bottom: 16px;
}

.proof-section {
  padding-top: 72px;
}

.proof-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.proof-item {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: 46px;
  align-items: start;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.proof-item:first-child {
  padding-top: 34px;
}

.proof-mobile-toggle {
  display: none;
}

.proof-mobile-panel {
  display: contents;
}

.proof-artifact-slot {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  align-self: start;
}

.work-artifact {
  display: grid;
  gap: 16px;
  min-width: 0;
  align-self: start;
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

.artifact-carousel {
  display: grid;
  gap: 12px;
}

.artifact-photo-stage {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--paper-deep);
  box-shadow: inset 0 0 0 1px rgba(7, 50, 53, .1);
}

.artifact-photo-track {
  display: flex;
  height: 100%;
  transition: transform 360ms cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.artifact-photo-slide {
  flex: 0 0 100%;
  display: grid;
  place-items: center;
  min-width: 0;
  height: 100%;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(7, 50, 53, .05), rgba(173, 143, 85, .09)),
    var(--paper-deep);
}

.artifact-photo-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.artifact-photo-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: zoom-in;
}

.artifact-photo-open img {
  transition: transform 220ms ease;
}

.artifact-photo-open:hover img {
  transform: scale(1.015);
}

.artifact-photo-open:focus-visible {
  outline: 3px solid rgba(181, 95, 68, .46);
  outline-offset: -6px;
}

.artifact-photo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 850;
  background:
    linear-gradient(135deg, rgba(255, 254, 250, .56), rgba(173, 143, 85, .14)),
    var(--teal-soft);
}

.artifact-photo-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 254, 250, .82);
  box-shadow: 0 10px 24px rgba(7, 50, 53, .08);
}

.artifact-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(7, 50, 53, .18);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 254, 250, .9);
  box-shadow: 0 12px 24px rgba(7, 50, 53, .14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}

.artifact-nav:hover {
  color: #fffefa;
  background: var(--ink);
  transform: translateY(-50%) scale(1.04);
}

.artifact-nav.prev {
  left: 10px;
}

.artifact-nav.next {
  right: 10px;
}

.artifact-nav span {
  line-height: 1;
}

.artifact-carousel-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.artifact-carousel-meta span {
  flex: 0 0 auto;
  color: var(--brass-ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.artifact-carousel-meta strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 850;
  text-align: right;
}

.artifact-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.artifact-thumbs button {
  display: block;
  min-width: 0;
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-deep);
  cursor: pointer;
  opacity: .72;
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.artifact-thumbs button:hover,
.artifact-thumbs button.on {
  border-color: var(--ink);
  opacity: 1;
}

.artifact-thumbs button:hover {
  transform: translateY(-1px);
}

.artifact-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artifact-thumbs .artifact-photo-placeholder {
  font-size: 11px;
}

.artifact-thumbs .artifact-photo-placeholder span {
  min-height: 0;
  padding: 3px 6px;
  border-radius: 999px;
  box-shadow: none;
}

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

.artifact-state {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 15px;
  border-radius: var(--radius-card);
  background: var(--paper-deep);
}

.artifact-state.after {
  background: var(--ink);
  color: #fffefa;
}

.artifact-state span {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 800;
}

.artifact-state.after span {
  color: rgba(255, 254, 250, .68);
}

.artifact-state strong {
  overflow-wrap: anywhere;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 800;
}

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 28px;
  color: #fffefa;
  background: rgba(4, 31, 33, .82);
  backdrop-filter: blur(10px);
  animation: photo-modal-in 180ms ease-out;
}

.photo-modal-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  width: min(1180px, 100%);
  max-height: calc(100vh - 56px);
}

.photo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.photo-modal-header div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.photo-modal-header span {
  color: rgba(255, 254, 250, .66);
  font-size: 13px;
  font-weight: 800;
}

.photo-modal-header strong {
  overflow-wrap: anywhere;
  color: #fffefa;
  font-size: 18px;
  line-height: 1.18;
}

.photo-modal-close,
.photo-modal-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 254, 250, .26);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 254, 250, .94);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .24);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.photo-modal-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-color: rgba(7, 50, 53, .24);
  color: var(--ink-strong);
  background: #fffefa;
  font-size: 24px;
  font-weight: 850;
}

.photo-modal-close span {
  display: block;
  color: currentColor;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.photo-modal-close:hover,
.photo-modal-nav:hover {
  color: #fffefa;
  background: var(--brass);
  transform: scale(1.04);
}

.photo-modal-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 12px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #fffefa;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.photo-modal-stage img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(74vh, 760px);
  object-fit: contain;
  border-radius: 6px;
  background: var(--paper-deep);
}

.photo-modal-nav {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
}

.photo-modal-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.photo-modal-nav.prev {
  left: 24px;
}

.photo-modal-nav.next {
  right: 24px;
}

@keyframes photo-modal-in {
  from {
    opacity: 0;
  }
}

.proof-copy {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.proof-copy h3 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  font-weight: 850;
}

.proof-summary {
  margin: 16px 0 0;
  max-width: 58ch;
  color: var(--ink-reading);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}

.proof-answers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 30px;
  margin: 30px 0 0;
}

.proof-answers div {
  min-width: 0;
}

.proof-answers dt {
  margin: 0;
  color: var(--ink-strong);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 850;
}

.proof-answers dd {
  margin: 7px 0 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.55;
}

.side-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.side-proof-card {
  padding: 22px;
  border-radius: var(--radius-card);
  background: var(--paper-deep);
}

.side-proof-card.is-clickable {
  padding: 0;
}

.side-proof-card button {
  display: grid;
  width: 100%;
  gap: 8px;
  padding: 22px;
  border: 0;
  border-radius: inherit;
  color: inherit;
  font: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.side-proof-card button:hover {
  background: #fffefa;
  box-shadow: 0 18px 46px rgba(7, 50, 53, .12);
  transform: translateY(-2px);
}

.side-proof-card button:focus-visible {
  outline: 3px solid rgba(179, 141, 54, .48);
  outline-offset: 3px;
}

.side-proof-list strong {
  display: block;
  color: var(--ink-strong);
  font-size: 18px;
  font-weight: 850;
}

.side-proof-list p {
  margin: 8px 0 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.55;
}

.side-proof-card button p {
  margin: 0;
}

.side-proof-card button > span {
  width: fit-content;
  margin-top: 6px;
  color: var(--brass-ink);
  font-size: 13px;
  font-weight: 850;
}

.proof-cta {
  margin-top: 34px;
}

.about-section {
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(20px, 1fr)
    minmax(0, 650px)
    minmax(280px, 470px)
    minmax(20px, 1fr);
  gap: 52px;
  align-items: center;
  padding: 92px 0;
  background: var(--ink);
  color: #fffefa;
}

.about-copy {
  grid-column: 2;
  min-width: 0;
}

.about-copy h2 {
  color: #fffefa;
  font-size: 60px;
}

.about-copy p {
  color: rgba(255, 254, 250, .76);
}

.about-copy p + p {
  margin-top: 10px;
}

.about-copy .section-note {
  color: var(--brass-soft);
}

.principle-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 30px 0 28px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.principle-line span {
  position: relative;
  padding: 15px 24px 15px 0;
  color: #fffefa;
  font-size: 15px;
  font-weight: 850;
}

.principle-line span + span {
  padding-left: 24px;
}

.principle-line span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 15px;
  width: 1px;
  background: var(--line-dark);
}

.about-cta.button.primary {
  background: #fffefa;
  color: var(--ink);
  box-shadow: none;
}

.about-cta.button.primary:hover {
  background: var(--brass-soft);
}

.about-photo {
  grid-column: 3;
  min-width: 0;
  margin: 0;
}

.about-photo-frame {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: #d7d5cb;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .26);
  aspect-ratio: 1;
}

.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 47%;
  transform: scale(1.18);
  transform-origin: center center;
}

.about-photo figcaption {
  margin-top: 16px;
  color: rgba(255, 254, 250, .68);
  font-size: 15px;
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}

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

.contact-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.text-link {
  color: var(--ink-muted);
  font-size: 15px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(82, 107, 105, .35);
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--ink);
  text-decoration-color: var(--brass);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 700;
}

.site-footer a {
  text-decoration: underline;
  text-decoration-color: rgba(82, 107, 105, .35);
  text-underline-offset: 4px;
}

.site-footer a:hover {
  color: var(--ink);
  text-decoration-color: var(--brass);
}

body.options-surface {
  padding-top: 0;
}

.options-page {
  min-height: calc(100vh - 90px);
}

.options-hero {
  width: min(760px, calc(100% - 40px));
  min-height: calc(100vh - 90px);
  display: grid;
  align-content: center;
  gap: 28px;
  margin: 0 auto;
  padding: 52px 0 42px;
}

.options-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.options-profile-photo {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
}

.options-profile-photo img {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: cover;
  object-position: 50% 47%;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line), 0 16px 34px rgba(7, 50, 53, .14);
}

.options-profile strong,
.options-profile small {
  display: block;
}

.options-profile strong {
  color: var(--ink-strong);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.1;
}

.options-profile small {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.options-copy {
  display: grid;
  gap: 16px;
}

.options-copy .hero-kicker {
  margin: 0;
}

.options-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 68px;
  line-height: .96;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.options-copy p:not(.hero-kicker) {
  max-width: 68ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: 20px;
  line-height: 1.55;
}

.options-route-stack {
  display: grid;
  gap: 12px;
}

.option-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 20px;
  align-items: center;
  min-height: 104px;
  padding: 22px;
  border-radius: var(--radius-card);
  color: var(--ink);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.option-card:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px var(--brass), 0 18px 42px rgba(7, 50, 53, .1);
}

.option-card.is-primary {
  color: #fffefa;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.option-card.is-primary:hover {
  background: #031f21;
  box-shadow: 0 22px 54px rgba(7, 50, 53, .2);
}

.option-card.is-disabled {
  grid-template-columns: 1fr;
  cursor: not-allowed;
  color: var(--ink-muted);
  background: var(--paper-deep);
  box-shadow: inset 0 0 0 1px var(--line);
}

.option-card.is-disabled:hover {
  transform: none;
  box-shadow: inset 0 0 0 1px var(--line);
}

.option-card-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.option-card-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.option-card-audience,
.option-card-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.option-card-audience {
  color: var(--ink);
  background: var(--brass-soft);
}

.option-card-status {
  color: var(--ink-muted);
  background: rgba(7, 50, 53, .07);
}

.option-card.is-primary .option-card-audience {
  color: var(--ink-strong);
  background: #fffefa;
}

.option-card.is-primary .option-card-status {
  color: rgba(255, 254, 250, .84);
  background: rgba(255, 254, 250, .13);
}

.option-card.is-disabled .option-card-audience {
  color: var(--ink-muted);
  background: rgba(255, 254, 250, .68);
}

.option-card.is-disabled .option-card-status {
  color: var(--ink);
  background: rgba(173, 143, 85, .22);
}

.option-card-title {
  overflow-wrap: anywhere;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 1;
  font-weight: 800;
}

.option-card.is-primary .option-card-title {
  color: #fffefa;
}

.option-card.is-disabled .option-card-title {
  color: var(--ink);
}

.option-card-text {
  max-width: 58ch;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.45;
}

.option-card.is-primary .option-card-text {
  color: rgba(255, 254, 250, .76);
}

.option-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fffefa;
  background: var(--ink);
  font-size: 20px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.option-card:hover .option-card-arrow {
  transform: translateX(2px);
  background: var(--brass);
}

.option-card.is-primary .option-card-arrow {
  color: var(--ink);
  background: #fffefa;
}

.option-card.is-primary:hover .option-card-arrow {
  background: var(--brass-soft);
}

.option-card.is-disabled .option-card-arrow {
  color: var(--ink-muted);
  background: rgba(255, 254, 250, .68);
}

.option-card.is-disabled:hover .option-card-arrow {
  transform: none;
  background: rgba(255, 254, 250, .68);
}

.options-contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding-top: 4px;
}

.options-footer {
  padding-top: 24px;
}

body.nohop-surface {
  --nohop-coral: #ff5b49;
  --nohop-gray: #e7e8e0;
  --nohop-gray-deep: #dfe1d8;
  padding-top: 0;
  background: var(--nohop-gray);
}

body.nohop-surface::before {
  background: none;
}

.nohop-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
}

.nohop-hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  align-content: start;
  overflow: hidden;
  background: linear-gradient(180deg, var(--nohop-gray) 0%, #eeeee8 100%);
  color: var(--ink-strong);
}

.nohop-hero > * {
  position: relative;
  z-index: 1;
}

.nohop-nav,
.nohop-hero-grid,
.nohop-section,
.nohop-contact {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nohop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 18px;
}

.nohop-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.nohop-mark {
  display: block;
  width: 86px;
  height: auto;
  flex: 0 0 auto;
}

.nohop-brand strong,
.nohop-brand small {
  display: block;
}

.nohop-brand strong {
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.nohop-brand small {
  margin-top: 3px;
  color: rgba(4, 31, 33, .72);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
}

.nohop-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 850;
}

.nohop-nav-links a {
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.nohop-nav-links a:hover {
  border-color: currentColor;
}

.nohop-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: 52px;
  align-items: end;
  padding: 80px 0 64px;
}

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

.nohop-kicker {
  margin: 0 0 16px;
  color: var(--brass-ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
}

.nohop-hero .nohop-kicker {
  color: rgba(4, 31, 33, .78);
}

.nohop-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 88px;
  line-height: .94;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.nohop-hero-copy > p:not(.nohop-kicker) {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(4, 31, 33, .78);
  font-size: 22px;
  line-height: 1.45;
}

.nohop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.nohop-hero .button.secondary {
  color: var(--ink-strong);
  box-shadow: inset 0 0 0 1px rgba(4, 31, 33, .34);
}

.nohop-hero .button.secondary:hover {
  background: rgba(255, 254, 250, .54);
  box-shadow: inset 0 0 0 1px var(--ink-strong);
}

.nohop-hero-proof {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 18px;
  border-radius: var(--radius-card);
  background: #fffefa;
  box-shadow: 0 28px 70px rgba(4, 31, 33, .16);
}

.nohop-proof-header {
  display: grid;
  gap: 8px;
  padding: 8px 4px 0;
}

.nohop-proof-header span {
  color: var(--brass-ink);
  font-size: 13px;
  font-weight: 850;
}

.nohop-proof-header strong {
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  text-wrap: balance;
}

.nohop-proof-header p {
  max-width: 34ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.45;
}

.nohop-product-shot {
  margin: 0;
}

.nohop-product-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--paper-deep);
  box-shadow: inset 0 0 0 1px rgba(7, 50, 53, .12);
  object-fit: contain;
}

.nohop-product-shot figcaption {
  margin-top: 10px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.nohop-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.nohop-proof-stats div {
  min-width: 0;
  padding: 12px 12px 13px 0;
}

.nohop-proof-stats div + div {
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.nohop-proof-stats dt {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

.nohop-proof-stats dd {
  margin: 6px 0 0;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.nohop-section {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 72px;
  align-items: start;
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}

.nohop-section-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.nohop-section-copy .nohop-kicker {
  margin: 0;
}

.nohop-section h2,
.nohop-current h2,
.nohop-contact h2 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.nohop-section-copy p:not(.nohop-kicker),
.nohop-current-card > p,
.nohop-contact p {
  max-width: 70ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: 19px;
  line-height: 1.6;
}

.nohop-capability-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.nohop-capability {
  display: grid;
  gap: 9px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.nohop-capability h3 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 1;
  font-weight: 800;
}

.nohop-capability p {
  max-width: 62ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: 17px;
}

.nohop-current {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  margin: 0;
  padding: 92px max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 0;
  background: var(--ink);
  color: #fffefa;
}

.nohop-current .nohop-kicker {
  color: var(--brass-soft);
}

.nohop-current h2 {
  color: #fffefa;
}

.nohop-current-card {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.nohop-current-card > p {
  color: rgba(255, 254, 250, .75);
}

.nohop-status-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.nohop-status-row {
  display: grid;
  gap: 8px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-dark);
}

.nohop-status-row strong {
  color: #fffefa;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.nohop-status-row p {
  max-width: 64ch;
  margin: 0;
  color: rgba(255, 254, 250, .72);
  font-size: 17px;
  line-height: 1.55;
}

.nohop-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding: 92px 0;
}

.nohop-contact .nohop-kicker {
  margin-bottom: 16px;
}

.nohop-contact p {
  margin-top: 20px;
}

.nohop-contact-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.nohop-footer > span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero h1 {
    font-size: 66px;
  }

  .recognition-section,
  .presence-map {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .recognition-section .section-intro {
    position: static;
  }

  .offer-board,
  .proof-item,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .proof-mobile-panel {
    display: grid;
    gap: 28px;
  }

  .proof-artifact-slot,
  .proof-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-actions {
    justify-items: start;
  }

  .about-section {
    grid-template-columns: minmax(24px, 1fr) minmax(0, 720px) minmax(24px, 1fr);
    gap: 34px;
  }

  .about-copy,
  .about-photo {
    grid-column: 2;
  }

  .about-photo {
    max-width: 520px;
  }

  .nohop-hero {
    min-height: auto;
  }

  .nohop-hero-grid,
  .nohop-section,
  .nohop-current,
  .nohop-contact {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .nohop-hero-grid {
    padding-top: 56px;
  }

  .nohop-hero h1 {
    font-size: 70px;
  }

  .nohop-hero-proof {
    max-width: 520px;
  }

  .nohop-contact-actions {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-height: 70px;
  }

  .hero,
  .recognition-section,
  .offers-section,
  .presence-map,
  .proof-section,
  .contact-section,
  .site-footer {
    width: min(100% - 38px, 1180px);
  }

  .site-nav {
    gap: 12px;
    min-height: 70px;
    padding: 12px 15px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand-photo,
  .brand-photo img {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 10px 13px;
    font-size: 13px;
  }

  .whatsapp-modal {
    align-items: start;
    padding: 15px;
  }

  .whatsapp-modal-panel {
    gap: 16px;
    padding: 20px;
  }

  .whatsapp-modal-header h2 {
    font-size: 30px;
  }

  .whatsapp-modal-copy {
    font-size: 16px;
  }

  .whatsapp-phone-box {
    padding: 16px;
  }

  .whatsapp-phone-box strong {
    font-size: 25px;
  }

  .whatsapp-modal-actions {
    display: grid;
  }

  .whatsapp-modal-actions .button {
    width: 100%;
  }

  .hero {
    padding: 44px 0 36px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

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

  .hero-proof-strip {
    margin-top: 30px;
  }

  .hero-proof-strip span,
  .hero-proof-strip span + span {
    width: 100%;
    padding: 13px 0;
  }

  .hero-proof-strip span + span {
    border-top: 1px solid var(--line);
  }

  .hero-proof-strip span + span::before {
    display: none;
  }

  .recognition-section,
  .offers-section,
  .presence-map,
  .proof-section,
  .contact-section {
    padding: 64px 0;
  }

  .proof-section {
    padding-top: 52px;
  }

  .section-intro {
    gap: 14px;
    margin-bottom: 30px;
  }

  .proof-intro {
    margin-bottom: 22px;
  }

  .section-intro h2,
  .contact-section h2 {
    font-size: 38px;
    line-height: 1.04;
  }

  .section-intro p:not(.section-note),
  .contact-section p,
  .about-copy p {
    font-size: 17px;
  }

  .recognition-item {
    padding: 22px 0;
  }

  .recognition-item h3 {
    font-size: 25px;
  }

  .recognition-item p {
    font-size: 16px;
  }

  .offer-panel {
    padding: 24px;
  }

  .offer-panel h3 {
    font-size: 34px;
  }

  .offer-panel p:not(.offer-step) {
    font-size: 16px;
  }

  .map-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }

  .map-item > span {
    width: 30px;
    height: 2px;
    margin-top: 12px;
    background: linear-gradient(90deg, var(--brass) 0 20px, var(--line) 20px 100%);
  }

  .map-item h3,
  .artifact-state strong {
    font-size: 22px;
  }

  .proof-list {
    gap: 12px;
    border-top: 0;
  }

  .proof-item {
    display: grid;
    gap: 0;
    padding: 0;
    border-bottom: 0;
  }

  .proof-item:first-child {
    padding-top: 0;
  }

  .proof-mobile-toggle {
    display: grid;
    width: 100%;
    min-height: 44px;
    gap: 14px;
    padding: 20px 0;
    border: 0;
    border-top: 1px solid var(--line);
    color: inherit;
    font: inherit;
    text-align: left;
    background: transparent;
    cursor: pointer;
  }

  .proof-item.is-open .proof-mobile-toggle {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }

  .proof-mobile-meta,
  .proof-mobile-title,
  .proof-mobile-states {
    display: grid;
    min-width: 0;
  }

  .proof-mobile-meta {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    color: var(--brass-ink);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.15;
  }

  .proof-mobile-meta span:last-child {
    color: var(--ink-muted);
    font-variant-numeric: tabular-nums;
  }

  .proof-mobile-title {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 14px;
    align-items: center;
  }

  .proof-mobile-title strong {
    min-width: 0;
    color: var(--ink-strong);
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 850;
    line-height: .98;
  }

  .proof-mobile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(7, 50, 53, .18);
    border-radius: 50%;
    color: var(--ink-strong);
    background: #fffefa;
    box-shadow: 0 12px 26px rgba(7, 50, 53, .1);
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
  }

  .proof-mobile-summary {
    display: block;
    max-width: 34ch;
    color: var(--ink-reading);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.48;
  }

  .proof-item.is-collapsed .proof-mobile-summary {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .proof-mobile-states {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .proof-mobile-states > span {
    display: grid;
    gap: 6px;
    min-width: 0;
    padding-top: 11px;
    border-top: 1px solid var(--line);
  }

  .proof-mobile-states em {
    color: var(--ink-muted);
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.1;
  }

  .proof-mobile-states strong {
    overflow-wrap: anywhere;
    color: var(--ink-strong);
    font-size: 17px;
    font-weight: 850;
    line-height: 1.12;
  }

  .proof-mobile-panel {
    display: grid;
    gap: 18px;
    padding: 18px 0 30px;
    border-bottom: 1px solid var(--line);
  }

  .proof-mobile-panel .proof-label,
  .proof-mobile-panel .proof-copy h3,
  .proof-mobile-panel .proof-summary {
    display: none;
  }

  .proof-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .proof-answers {
    gap: 0;
    margin: 0;
  }

  .proof-answers div {
    padding: 15px 0;
    border-top: 1px solid var(--line);
  }

  .proof-answers div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .proof-answers dt {
    font-size: 16px;
    line-height: 1.25;
  }

  .proof-answers dd {
    margin-top: 7px;
    color: var(--ink-reading);
    font-size: 16px;
    line-height: 1.55;
  }

  .work-artifact {
    gap: 12px;
    padding: 12px;
  }

  .artifact-photo-stage {
    aspect-ratio: 16 / 10;
  }

  .artifact-nav {
    width: 34px;
    height: 34px;
  }

  .artifact-thumbs,
  .work-artifact .artifact-states {
    display: none;
  }

  .photo-modal {
    align-items: start;
    padding: 15px;
  }

  .photo-modal-panel {
    max-height: calc(100dvh - 30px);
    gap: 10px;
  }

  .photo-modal-header {
    gap: 12px;
  }

  .photo-modal-header strong {
    font-size: 15px;
  }

  .photo-modal-close {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .photo-modal-stage {
    padding: 8px;
  }

  .photo-modal-nav {
    width: 38px;
    height: 38px;
  }

  .photo-modal-nav.prev {
    left: 14px;
  }

  .photo-modal-nav.next {
    right: 14px;
  }

  .proof-copy h3 {
    font-size: 34px;
  }

  .proof-summary {
    font-size: 17px;
  }

  .proof-answers,
  .side-proof-list {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 64px 0;
    grid-template-columns: 15px minmax(0, 1fr) 15px;
  }

  .about-copy h2 {
    font-size: 42px;
  }

  .principle-line span,
  .principle-line span + span {
    width: 100%;
    padding: 13px 0;
  }

  .principle-line span + span {
    border-top: 1px solid var(--line-dark);
  }

  .principle-line span + span::before {
    display: none;
  }

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

  .site-footer {
    display: grid;
    gap: 10px;
  }

  .options-hero {
    width: min(100% - 30px, 760px);
    min-height: auto;
    gap: 22px;
    padding: 40px 0 34px;
  }

  .options-profile {
    gap: 13px;
    padding: 14px 0;
  }

  .options-profile-photo,
  .options-profile-photo img {
    width: 58px;
    height: 58px;
  }

  .options-copy h1 {
    font-size: 45px;
    line-height: 1;
  }

  .options-copy p:not(.hero-kicker) {
    font-size: 17px;
  }

  .option-card {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 14px;
    min-height: 0;
    padding: 18px;
  }

  .option-card-title {
    font-size: 26px;
  }

  .option-card-text {
    font-size: 15px;
  }

  .option-card-arrow {
    width: 38px;
    height: 38px;
  }

  .options-contact-bar,
  .options-contact-bar .button {
    width: 100%;
  }

  .nohop-nav,
  .nohop-hero-grid,
  .nohop-section,
  .nohop-contact {
    width: min(100% - 36px, 1120px);
  }

  .nohop-nav {
    padding: 20px 0 10px;
  }

  .nohop-nav-links {
    display: none;
  }

  .nohop-brand strong {
    font-size: 23px;
  }

  .nohop-brand small {
    max-width: 210px;
    font-size: 12px;
  }

  .nohop-hero-grid {
    gap: 28px;
    padding: 42px 0 46px;
  }

  .nohop-hero h1 {
    font-size: 46px;
    line-height: 1;
  }

  .nohop-hero-copy > p:not(.nohop-kicker) {
    margin-top: 20px;
    font-size: 18px;
  }

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

  .nohop-actions {
    display: grid;
    gap: 10px;
  }

  .nohop-hero-proof {
    padding: 15px;
  }

  .nohop-proof-header strong {
    font-size: 30px;
  }

  .nohop-proof-header p {
    font-size: 15px;
  }

  .nohop-section,
  .nohop-current,
  .nohop-contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .nohop-current {
    width: 100%;
    max-width: none;
    padding-inline: 18px;
  }

  .nohop-section h2,
  .nohop-current h2,
  .nohop-contact h2 {
    font-size: 39px;
    line-height: 1.03;
  }

  .nohop-section-copy p:not(.nohop-kicker),
  .nohop-current-card > p,
  .nohop-contact p {
    font-size: 17px;
  }

  .nohop-capability {
    padding: 22px 0;
  }

  .nohop-capability h3,
  .nohop-status-row strong {
    font-size: 26px;
  }

  .nohop-proof-stats {
    grid-template-columns: 1fr;
  }

  .nohop-proof-stats div,
  .nohop-proof-stats div + div {
    padding: 12px 0;
    border-left: 0;
  }

  .nohop-proof-stats div + div {
    border-top: 1px solid var(--line);
  }

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

  .nohop-footer > span:last-child {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .brand strong {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero h1 {
    font-size: 41px;
  }

  .button {
    padding-inline: 15px;
  }

  .artifact-states {
    grid-template-columns: 1fr;
  }

  .artifact-carousel-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .artifact-carousel-meta strong {
    text-align: left;
  }

  .options-copy h1 {
    font-size: 40px;
  }

  .option-card {
    grid-template-columns: 1fr;
  }

  .option-card-arrow {
    justify-self: start;
  }

  .nohop-brand small {
    display: none;
  }

  .nohop-hero h1 {
    font-size: 39px;
  }

  .nohop-product-shot img {
    aspect-ratio: 4 / 3;
  }
}
