:root {
  --black: #242526;
  --dark: #303235;
  --mid: #7d7f82;
  --soft: #f0f1f1;
  --paper: #fafafa;
  --line: #d9d9d7;
  --orange: #f5821f;
  --orange-dark: #da6b12;
  --text: #252525;
  --muted: #696b6e;
  --white: #ffffff;
  --text-size-unified: 16px;
}

@font-face {
  font-family: "Asgard Fit Bold Italic";
  src: url("assets/fonts/asgard_fit/AsgardTrial-FitBoldItalic.ttf")
    format("truetype");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 3vw, 54px);
  min-height: 104px;
  padding: 20px clamp(24px, 4.2vw, 78px);
  background: #f4f4f4;
  border-bottom: 1px solid #e5e5e5;
}

.brand img {
  width: clamp(170px, 14vw, 225px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.9vw, 44px);
  margin-left: auto;
  color: #191919;
  font-size: var(--text-size-unified);
  font-weight: 600;
  text-transform: none;
}

.nav a {
  white-space: nowrap;
  letter-spacing: -0.01em;
}

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

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 3px;
  margin: 3px 0;
  border-radius: 999px;
  background: #1c1c1c;
}

.container {
  position: relative;
  width: min(100% - 40px, 960px);
  margin: 0 auto;
  z-index: 2;
}

section {
  position: relative;
  overflow: hidden;
}

.reveal-section {
  --reveal-distance-x: 0px;
  --reveal-distance-y: 26px;
  --reveal-scale: 1;
  --reveal-duration: 1600ms;
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(var(--reveal-distance-x), var(--reveal-distance-y), 0)
    scale(var(--reveal-scale));
  transition:
    opacity var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1)
      var(--reveal-delay),
    transform var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1)
      var(--reveal-delay);
  will-change: opacity, transform;
}

.reveal-section.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.reveal-fade-up {
  --reveal-distance-y: 28px;
}

.reveal-fade-in {
  --reveal-distance-y: 0px;
}

.reveal-slide-left {
  --reveal-distance-x: 30px;
  --reveal-distance-y: 0px;
}

.reveal-slide-right {
  --reveal-distance-x: -30px;
  --reveal-distance-y: 0px;
}

.reveal-scale-in {
  --reveal-distance-y: 14px;
  --reveal-scale: 0.985;
}

@media (max-width: 820px) {
  .reveal-slide-left {
    --reveal-distance-x: 20px;
  }

  .reveal-slide-right {
    --reveal-distance-x: -20px;
  }
}

.section-light {
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background: var(--dark);
}

.section-mid {
  color: var(--white);
  background: var(--mid);
}

.section-orange {
  color: var(--white);
  background: var(--orange);
}

.section-soft {
  background: var(--soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 22px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

h1 {
  max-width: 470px;
  font-size: clamp(46px, 8vw, 88px);
}

h2 {
  font-size: clamp(38px, 6vw, 68px);
}

h1 span,
h2 span,
h3,
blockquote strong {
  color: var(--orange);
}

p {
  color: inherit;
  font-size: var(--text-size-unified);
}

p:not(.eyebrow):not(.thinker-eyebrow):not(.method-eyebrow):not(
    .life-eyebrow
  ):not(.life-quote-text):not(.produce-eyebrow):not(.method-quote):not(
    .cta-message
  ):not(.cta-message-last):not(.book-copy-text),
.nav a,
.button,
.hero-link,
address,
.site-footer nav a {
  font-size: var(--text-size-unified) !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--orange);
  font-size: var(--text-size-unified);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 10px 26px rgba(245, 130, 31, 0.26);
}

.button:hover {
  background: var(--orange-dark);
}

.hero {
  z-index: 2;
  min-height: 720px;
  margin-bottom: -38px;
  padding: 92px 0 126px;
  background: #f3f3f3;
  border-bottom-right-radius: 44px;
  border-bottom-left-radius: 44px;
}

.hero::after,
.different::before {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::after {
  top: clamp(-276px, -18vw, -92px);
  right: -11%;
  width: min(78vw, 1280px);
  aspect-ratio: 1;
  background: url("assets/olhos-nariz-transparente.png") center / contain
    no-repeat;
  opacity: 0.06;
}

.hero .container {
  width: min(100% - 40px, 740px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  margin: 0 auto;
  padding-top: 4px;
  text-align: left;
}

.hero-copy h1 {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
  margin-right: 0;
  margin-left: clamp(48px, 6vw, 96px);
  width: fit-content;
  font-size: clamp(58px, 7.2vw, 94px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-copy h1 .hero-word {
  font-family: "Asgard Fit Bold Italic", Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 700;
  color: var(--orange);
}

.hero-copy p:not(.eyebrow) {
  max-width: 460px;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 30px;
  color: #2f3033;
  font-size: clamp(14px, 1.2vw, 22px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.012em;
  text-align: left;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: clamp(10px, 0.95vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 24px;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.hero-button {
  min-height: 52px;
  padding: 12px 34px;
  border-radius: 999px;
  box-shadow: none;
  font-size: clamp(13px, 0.95vw, 18px);
  font-weight: 700;
  text-transform: none;
}

.hero-link {
  color: #121315;
  font-size: var(--text-size-unified);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-link span {
  margin-left: 4px;
}

.hero-paw {
  position: absolute;
  bottom: 22px;
  left: 50%;
  width: 84px;
  opacity: 0.9;
  transform: translateX(-50%);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.74fr);
  gap: clamp(36px, 8vw, 96px);
  align-items: center;
}

.thinker {
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  padding: 112px 0 140px;
}

.thinker .container {
  width: min(100% - 40px, 1120px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  transform: translateY(68px);
}

.method p,
.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.thinker::before {
  content: none;
}

.thinker-pawn {
  position: absolute;
  z-index: 1;
  width: clamp(120px, 12vw, 188px);
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}

.thinker-pawn-left {
  width: clamp(1596px, 113.4vw, 2058px);
  left: clamp(-720px, -48vw, -520px);
  bottom: clamp(-620px, -40vw, -440px);
  max-width: none;
  opacity: 0.05;
}

.thinker-pawn-right {
  position: absolute;
  top: clamp(-900px, -49vw, -435px);
  right: clamp(-740px, -32vw, -360px);
  width: clamp(1596px, 113.4vw, 2058px);
  max-width: none;
  opacity: 0.05;
}

.thinker .split {
  grid-template-columns: minmax(0, 500px) minmax(0, 460px);
  gap: clamp(20px, 2.3vw, 34px);
  align-items: start;
  justify-content: center;
}

.thinker .split > .copy-block {
  max-width: 500px;
  align-self: start;
  margin-top: 84px;
  justify-self: center;
  transform: translateX(170px);
}

.thinker h2 {
  margin-bottom: 26px;
  font-size: clamp(54px, 5.8vw, 74px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.thinker h2 span {
  font-family: "Asgard Fit Bold Italic", Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 700;
}

.thinker .thinker-eyebrow {
  margin-bottom: 12px;
  color: var(--orange);
  margin-left: 0;
  font-size: clamp(9px, 0.58vw, 12px);
  letter-spacing: 0.1em;
}

.thinker .copy-block p:not(.thinker-eyebrow) {
  max-width: 410px;
  margin-left: clamp(108px, 8.8vw, 132px);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.26;
}

.copy-block p {
  max-width: 500px;
}

.thinker .copy-block p:not(.thinker-eyebrow) {
  max-width: 410px;
}

.portrait {
  position: relative;
  margin: 0;
  min-height: 360px;
}

.portrait::before {
  position: absolute;
  inset: 6px 0 auto auto;
  width: min(100%, 380px);
  aspect-ratio: 1;
  content: "";
  background: var(--soft);
  border-radius: 48% 48% 48% 10px;
}

.thinker-portrait {
  min-height: 0;
  align-self: start;
  justify-self: end;
  position: relative;
  z-index: 3;
  left: 0;
  width: min(100%, 460px);
  margin-left: 0;
}

.thinker-portrait::before {
  content: none;
}

.portrait img {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  margin-left: auto;
  object-fit: contain;
}

.thinker-portrait img {
  z-index: 2;
  width: min(100%, 460px);
  margin-top: -46px;
  margin-right: 0;
  margin-left: 0;
}

.method {
  --method-content-width: 720px;
  --method-columns-gap: clamp(36px, 6vw, 86px);
  --method-right-col-start: calc((100% + var(--method-columns-gap)) / 2);
  --method-bg-position: center center;
  --method-bg-size: min(90vw, 900px) auto;
  z-index: 2;
  margin-bottom: -38px;
  padding: 92px 0 104px;
  background-color: #6f7073;
  border-bottom-right-radius: 44px;
  border-bottom-left-radius: 44px;
}

.method::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: url("assets/fundo-gray.png");
  background-repeat: no-repeat;
  background-position: var(--method-bg-position);
  background-size: var(--method-bg-size);
  opacity: 0.07;
}

.method .container {
  width: min(100% - 40px, 760px);
}

.method-heading {
  width: min(100%, var(--method-content-width));
  margin: 0 auto;
}

.method h2 {
  width: auto;
  margin-bottom: 44px;
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(58px, 6.8vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-align: left;
}

.method h2 span {
  font-family: "Asgard Fit Bold Italic", Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 700;
}

.method .method-eyebrow {
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: 0;
  color: var(--orange);
  width: auto;
  font-size: clamp(8px, 0.5vw, 10px);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: left;
}

.method-highlight {
  color: var(--orange) !important;
  font-weight: 700;
}

.columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--method-columns-gap);
  width: min(100%, 700px);
}

.method .columns {
  width: min(100%, var(--method-content-width));
  margin-left: auto;
  margin-right: auto;
}

.method .columns p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.22;
}

.method blockquote {
  width: min(100%, var(--method-content-width));
  margin: 48px auto 0;
  font-style: italic;
  text-align: left;
}

.method blockquote .quote-content {
  width: fit-content;
  margin-left: var(--method-right-col-start);
}

.method blockquote p.method-quote {
  margin: 0;
  width: fit-content;
  max-width: none;
  margin-left: 0;
  color: var(--white);
  font-size: clamp(28px, 2.5vw, 44px) !important;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.method blockquote .quote-mark {
  color: var(--orange);
  font-size: 1.45em;
  line-height: 1;
}

.method blockquote .quote-line {
  display: block;
  white-space: nowrap;
  width: fit-content;
}

.method blockquote .quote-tail {
  display: block;
  width: fit-content;
}

.method blockquote .quote-line:first-child {
  position: relative;
}

.method blockquote .quote-tail .quote-line {
  position: relative;
}

.method blockquote .quote-mark-open {
  position: absolute;
  left: -0.62em;
  top: -0.04em;
  font-size: 1.75em;
}

.method blockquote .quote-text {
  display: inline-block;
  margin-left: 0;
  padding-left: 0;
}

.method blockquote .quote-mark-close {
  position: absolute;
  right: -0.44em;
  top: 0.08em;
  margin-left: 0;
  vertical-align: baseline;
}

.method blockquote cite {
  display: block;
  margin-top: 4px;
  width: 100%;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(11px, 0.74vw, 14px);
  font-style: normal;
  font-weight: 400;
  text-align: right;
}

.life {
  isolation: isolate;
  padding: 110px 0 150px;
  background-color: #f5821f;
}

.life::before {
  content: none;
}

.life::after {
  position: absolute;
  left: 46px;
  bottom: -6px;
  width: 178px;
  height: 214px;
  content: "";
  z-index: 1;
  pointer-events: none;
  background-image:
    url("assets/panda.png"), url("assets/panda.png"), url("assets/panda.png"),
    url("assets/panda.png");
  background-repeat: no-repeat;
  background-size:
    38px auto,
    58px auto,
    26px auto,
    34px auto;
  background-position:
    36px 0,
    0 48px,
    72px 76px,
    46px 120px;
  filter: brightness(0) invert(1);
  opacity: 0.78;
}

.life .container {
  width: min(100% - 40px, 764px);
}

.life .life-eyebrow {
  margin-bottom: 56px;
  color: #141414;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.life h2 {
  margin-bottom: 54px;
  color: var(--white);
  font-size: clamp(54px, 5.6vw, 98px);
  line-height: 0.92;
  letter-spacing: -0.028em;
}

.life .life-emphasis {
  font-family: "Asgard Fit Bold Italic", Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #141414;
}

.life-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.62fr);
  gap: clamp(50px, 7.4vw, 116px);
  align-items: center;
}

.life-copy {
  max-width: 430px;
}

.life-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--text-size-unified);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: -0.013em;
}

.life-copy p:last-child {
  margin-bottom: 0;
}

.life-quote {
  margin-top: 110px;
  max-width: 298px;
  justify-self: start;
  align-self: start;
  --life-quote-size: clamp(14px, 3.2vw, 22px);
}

.life-quote-line {
  display: block;
  width: calc(var(--life-quote-size) * 2.7);
  height: 2px;
  margin-bottom: 18px;
  background: #111111;
  border-radius: 999px;
}

.life-quote .life-quote-text {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  font-size: var(--life-quote-size);
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-transform: none;
  text-decoration: none;
  white-space: normal;
}

.produce {
  --produce-top-accent: 10px;
  z-index: 3;
  margin-top: -44px;
  padding: 98px 0 112px;
  background-color: #f2f2f2;
  background-image:
    linear-gradient(rgba(242, 242, 242, 0.92), rgba(242, 242, 242, 0.92)),
    url("assets/ears-panda.png");
  background-repeat: no-repeat, no-repeat;
  background-position:
    center,
    center -68vw;
  background-size:
    100% 100%,
    min(248vw, 5100px) auto;
  box-shadow: inset 0 var(--produce-top-accent) 0 0 var(--orange);
  border-top-right-radius: 44px;
  border-top-left-radius: 44px;
}

.produce::before {
  content: none;
}

.produce .container {
  width: min(100% - 40px, 1000px);
}

.produce-heading {
  position: relative;
  width: fit-content;
  margin: 0 auto 34px;
  padding-top: 28px;
}

.produce-eyebrow {
  position: absolute;
  top: 0;
  left: 64px;
  margin: 0;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.produce h2 {
  margin: 0;
  font-size: clamp(52px, 5.2vw, 74px);
  letter-spacing: -0.02em;
  text-align: center;
}

.produce h2 span {
  font-family: "Asgard Fit Bold Italic", Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 700;
}

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

.service-grid article {
  min-height: 240px;
  padding: 34px 36px;
  max-width: 420px;
  justify-self: center;
  background: rgba(247, 247, 247, 0.7);
  border: 1px solid #c5c5c3;
  border-radius: 42px;
}

.service-grid h3 {
  margin-bottom: 28px;
  color: #1f2021;
  font-size: clamp(17px, 1.4vw, 24px);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.service-grid h3.accent {
  color: var(--orange);
}

.service-grid p {
  max-width: calc(92% - 12px);
  margin-left: 12px;
  margin-bottom: 0;
  color: #4f5154;
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.26;
  letter-spacing: -0.015em;
}

.different {
  isolation: isolate;
  z-index: 2;
  margin-bottom: -38px;
  padding: 84px 0 132px;
  background: #ececec;
  border-bottom-right-radius: 44px;
  border-bottom-left-radius: 44px;
}

.different::before {
  top: 0;
  left: clamp(-180px, -4vw, -70px);
  width: clamp(840px, 58vw, 1190px);
  height: 100%;
  background: url("assets/panda.png") no-repeat right center / auto 100%;
  opacity: 0.037;
  z-index: 1;
}

.different .container {
  width: min(100% - 40px, 940px);
}

.different-container {
  position: relative;
  z-index: 2;
}

.different-intro {
  width: fit-content;
  max-width: min(100%, 860px);
  margin: 0 auto 44px;
}

.different-eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.different h2 {
  margin: 0;
  width: fit-content;
  color: #111214;
  font-size: clamp(58px, 6.1vw, 110px);
  line-height: 0.91;
  letter-spacing: -0.03em;
  text-align: left;
}

.different .different-line-2 {
  display: block;
  margin-top: clamp(8px, 0.65vw, 14px);
  margin-left: clamp(132px, 10vw, 210px);
  font-family: "Asgard Fit Bold Italic", Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 700;
  color: var(--orange);
}

.different .lead {
  max-width: none;
  width: fit-content;
  margin: 20px 0 0 auto;
  color: #1f2124;
  font-size: clamp(13px, 0.98vw, 17px);
  font-weight: 700;
  line-height: 1.27;
  letter-spacing: -0.01em;
  text-align: left;
  white-space: nowrap;
}

.check-list {
  counter-reset: item;
  display: grid;
  gap: 0;
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  background: transparent;
}

.different .check-list li {
  counter-increment: item;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  column-gap: clamp(8px, 0.8vw, 14px);
  align-items: center;
  width: 100%;
  min-height: 92px;
  padding: 14px 0;
  border-top: 1px solid #d8d8d6;
  color: #1a1d22;
  font-size: clamp(17px, 1.22vw, 23px);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.014em;
}

.different .check-list li::before {
  content: counter(item, decimal-leading-zero);
  justify-self: end;
  width: 2.4ch;
  text-align: right;
  color: rgba(245, 130, 31, 0.6);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.different .check-list li:last-child {
  border-bottom: 1px solid #d8d8d6;
}

.different .check-list li span {
  display: block;
  min-width: 0;
  font-size: inherit;
  font-weight: 700;
  padding-right: 0;
  text-align: center;
}

.cta {
  isolation: isolate;
  min-height: 812px;
  padding: 124px 0 138px;
  background: #3a3c3f;
  text-align: left;
}

.cta-container {
  width: min(100% - 40px, 980px);
}

.cta-content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  margin: 0 auto;
  padding-left: 0;
}

.cta h2 {
  width: min(100%, 640px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 42px;
  color: #f7f7f7;
  font-size: clamp(72px, 9vw, 134px);
  line-height: 0.86;
  letter-spacing: -0.03em;
}

.cta h2 span {
  font-family: "Asgard Fit Bold Italic", Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 700;
  color: var(--orange);
}

.cta-copy-block {
  display: grid;
  justify-items: stretch;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: clamp(-74px, -3.8vw, -32px);
}

.cta p {
  max-width: none;
  width: auto;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.3vw, 24px) !important;
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: -0.01em;
}

.cta-message {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-bottom: 0;
}

.cta-message-last {
  margin-top: 1.24em;
  margin-bottom: 64px;
}

.cta-button {
  display: flex;
  width: fit-content;
  min-height: 56px;
  margin: 0 auto;
  padding: 14px 40px;
  border-radius: 999px;
  color: #fff8f2;
  font-size: clamp(14px, 0.95vw, 16px) !important;
  font-weight: 700;
  text-transform: none;
  box-shadow: none;
}

.cta-face-bg {
  position: absolute;
  top: clamp(-112px, -6vw, -58px);
  right: clamp(-174px, -7vw, -72px);
  z-index: 1;
  width: min(76vw, 1060px);
  transform: scale(1.36);
  transform-origin: top right;
  max-width: none;
  opacity: 0.095;
  pointer-events: none;
  user-select: none;
}

.cta-eye-icon {
  position: absolute;
  top: clamp(50px, 4.8vw, 76px);
  right: clamp(62px, 8.1vw, 124px);
  z-index: 3;
  width: clamp(68px, 5vw, 102px);
  pointer-events: none;
  user-select: none;
}

.book {
  isolation: isolate;
  overflow: visible;
  z-index: 8;
  --book-seam-size: 12px;
  height: clamp(390px, 31vw, 604px);
  width: 100%;
  background: linear-gradient(
    to bottom,
    #3a3c3f 0,
    #3a3c3f var(--book-seam-size),
    #1b1b1c var(--book-seam-size),
    #1b1b1c calc(100% - var(--book-seam-size)),
    #d2d2d2 calc(100% - var(--book-seam-size)),
    #d2d2d2 100%
  );
}

.book-bg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(8, 7, 6, 0.18),
    rgba(8, 7, 6, 0.04) 40%,
    rgba(8, 7, 6, 0.22)
  );
}

.book-overflow {
  position: absolute;
  left: clamp(28px, 7.2vw, 172px);
  bottom: clamp(-110px, -4.4vw, -44px);
  z-index: 2;
  width: clamp(330px, 28vw, 575px);
  max-width: none;
  transform: translateX(68px) rotate(-8.1deg);
  transform-origin: 30% 80%;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.32));
}

.book-copy {
  position: absolute;
  display: grid;
  grid-template-columns: minmax(112px, 25%) minmax(0, 1fr);
  justify-items: start;
  column-gap: clamp(10px, 1.3vw, 22px);
  z-index: 5;
  top: 50%;
  left: 49%;
  width: min(48vw, 980px);
  max-width: calc(100% - 32px);
  padding: clamp(34px, 2.9vw, 58px) clamp(34px, 3vw, 62px);
  border-radius: clamp(22px, 2.2vw, 44px);
  color: var(--white);
  background: rgba(13, 11, 10, 0.78);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
}

@media (max-width: 1180px) {
  .book {
    height: clamp(340px, 55vw, 500px);
  }

  .book-overflow {
    left: clamp(-30px, 0.8vw, 24px);
    bottom: clamp(-82px, -8vw, -36px);
    width: clamp(246px, 35vw, 390px);
    transform: translateX(24px) rotate(-7.7deg);
  }

  .book-copy {
    left: 52%;
    width: min(calc(100% - 30px), 680px);
    padding: clamp(24px, 4.2vw, 36px) clamp(22px, 4vw, 34px);
  }

  .book-copy .book-copy-text {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: clamp(26px, 4.5vw, 38px) !important;
  }

  .book-button {
    min-height: 48px;
    padding: 0 clamp(24px, 4vw, 34px);
    font-size: clamp(15px, 2.2vw, 20px) !important;
  }
}

.book-copy .book-copy-text {
  grid-column: 2;
  width: min(100%, 620px);
  max-width: 620px;
  margin-bottom: clamp(20px, 2.1vw, 36px);
  font-size: clamp(34px, 3.1vw, 62px) !important;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-align: left;
}

.book-button {
  grid-column: 2;
  justify-self: center;
  min-height: clamp(42px, 3.8vw, 78px);
  padding: 0 clamp(28px, 2.5vw, 58px);
  border-radius: 999px;
  font-size: clamp(16px, 1.3vw, 26px) !important;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: none;
}

@media (min-width: 821px) {
  .book-overflow {
    z-index: 6;
  }

  .book-copy {
    z-index: 4;
  }
}

.site-footer {
  position: relative;
  min-height: 430px;
  padding: 0;
  background: #d2d2d2;
  color: #171717;
  font-size: var(--text-size-unified);
}

.site-footer::before {
  content: none;
}

.site-footer .container {
  width: min(calc(100% - 84px), 1960px);
}

.footer-top {
  position: absolute;
  z-index: 2;
  top: 34px;
  right: 30px;
  width: 30px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.footer-top img {
  width: 100%;
  height: auto;
  opacity: 0.68;
  transition: opacity 0.2s ease;
}

.footer-top:hover img {
  opacity: 0.9;
}

.footer-grid {
  display: grid;
  grid-template-columns:
    minmax(360px, 500px)
    minmax(420px, 1fr)
    minmax(280px, 350px)
    minmax(250px, 340px);
  column-gap: clamp(24px, 2.3vw, 56px);
  align-items: start;
  padding-top: 42px;
}

.footer-logo-wrap {
  margin-top: 52px;
}

.footer-logo {
  width: clamp(280px, 16.4vw, 350px);
  max-width: none;
}

.footer-tagline {
  margin: 112px 0 0;
  color: #383838;
  font-size: clamp(14px, 0.8vw, 18px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

address {
  font-style: normal;
}

.footer-addresses {
  margin: 44px 0 0;
  color: #1f1f1f;
  font-size: clamp(14px, 0.84vw, 18px);
  line-height: 1.26;
  letter-spacing: -0.008em;
}

.footer-addresses p {
  margin: 0;
}

.footer-city {
  margin: 0 0 10px;
  font-weight: 700;
}

.footer-addresses p + p {
  margin-top: 22px;
}

.footer-contact {
  margin-top: 44px;
  color: #1b1b1b;
}

.footer-email {
  display: inline-block;
  margin-bottom: 16px;
  font-size: clamp(14px, 0.82vw, 18px);
  color: #2a2a2a;
  letter-spacing: -0.01em;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-social button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #090909;
}

.footer-social svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.footer-social button[aria-label="Instagram"] svg {
  width: 28px;
  height: 28px;
}

.footer-copyright {
  margin: 0;
  color: #121212;
  font-size: clamp(15px, 0.9vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

@media (max-width: 1460px) {
  .site-footer {
    min-height: 390px;
  }

  .footer-grid {
    grid-template-columns:
      minmax(320px, 460px)
      minmax(320px, 1fr)
      minmax(250px, 320px)
      minmax(220px, 310px);
    column-gap: clamp(20px, 2vw, 44px);
  }

  .footer-logo-wrap {
    margin-top: 44px;
  }

  .footer-tagline {
    margin-top: 96px;
  }
}

@media (max-width: 1120px) {
  .site-footer {
    min-height: 0;
    padding: 84px 0 110px;
  }

  .site-footer .container {
    width: min(calc(100% - 56px), 1200px);
  }

  .footer-top {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 62px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
    padding-top: 10px;
  }

  .footer-logo-wrap,
  .footer-tagline,
  .footer-addresses,
  .footer-contact {
    margin-top: 0;
  }

  .footer-logo {
    width: min(100%, 420px);
    max-width: 100%;
  }

  .footer-tagline {
    white-space: normal;
  }

  .footer-addresses p + p {
    margin-top: 26px;
  }

  .footer-social {
    gap: 22px;
    margin-bottom: 26px;
  }
}

@media (max-width: 820px) {
  .thinker-pawn {
    width: clamp(94px, 14vw, 130px);
    opacity: 0.28;
  }

  .thinker-pawn-left {
    width: clamp(2600px, 310vw, 3500px);
    left: -1500px;
    bottom: -1250px;
  }

  .thinker-pawn-right {
    right: 90px;
    top: 44px;
  }

  .thinker .container {
    transform: none;
    margin-top: 18px;
    margin-left: auto;
    margin-right: auto;
  }

  .site-header {
    position: relative;
    align-items: center;
    min-height: 0;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-left: 0;
    padding: 8px 20px 14px;
    border-top: 1px solid #e5e5e5;
    background: #f4f4f4;
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.08);
    font-size: 13px;
  }

  .site-header.menu-open .nav {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 10px 0;
  }

  .hero,
  .thinker,
  .method,
  .life,
  .produce,
  .different,
  .cta {
    padding-top: 76px;
    padding-bottom: 82px;
  }

  .hero {
    min-height: 540px;
    margin-bottom: -22px;
    padding-top: 66px;
    padding-bottom: 86px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .method {
    --method-bg-position: center center;
    --method-bg-size: min(110vw, 740px) auto;
    margin-bottom: -22px;
    padding-top: 74px;
    padding-bottom: 90px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .produce {
    --produce-top-accent: 8px;
    margin-top: -30px;
    padding-top: 76px;
    padding-bottom: 86px;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    background-position:
      center,
      center -540px;
    background-size:
      100% 100%,
      min(260vw, 2140px) auto;
  }

  .different {
    margin-bottom: -22px;
    padding-top: 72px;
    padding-bottom: 98px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .different::before {
    top: 0;
    left: -130px;
    width: 900px;
    height: 100%;
  }

  .different .container {
    width: min(100% - 36px, 760px);
  }

  .different-intro {
    width: 100%;
    max-width: none;
    margin-bottom: 30px;
  }

  .different h2 {
    font-size: clamp(48px, 8.6vw, 74px);
  }

  .different-eyebrow {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .different .lead {
    max-width: 330px;
    width: 100%;
    margin-top: 12px;
    margin-right: 0;
    font-size: 14px;
    white-space: normal;
  }

  .check-list {
    width: 100%;
  }

  .different .check-list li {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 10px;
    min-height: 70px;
    padding: 10px 0;
    font-size: 17px;
  }

  .different .check-list li::before {
    justify-self: end;
    width: 2.4ch;
    text-align: right;
    font-size: 13px;
  }

  .produce h2 {
    font-size: clamp(46px, 9.2vw, 62px);
  }

  .produce-heading {
    margin-bottom: 28px;
    padding-top: 24px;
  }

  .produce-eyebrow {
    left: 52px;
    font-size: 9px;
  }

  .method h2 {
    margin-bottom: 30px;
    font-size: clamp(52px, 10vw, 72px);
  }

  .method .columns p {
    font-size: 15px;
  }

  .method blockquote {
    width: min(100%, 470px);
    margin-top: 34px;
  }

  .method blockquote .quote-content {
    width: 100%;
    margin-left: 0;
  }

  .method blockquote p.method-quote {
    max-width: 100%;
    font-size: clamp(24px, 3.8vw, 36px) !important;
    line-height: 1.08;
  }

  .method blockquote .quote-line,
  .method blockquote .quote-tail {
    width: 100%;
  }

  .method blockquote .quote-line {
    white-space: normal;
  }

  .method blockquote .quote-mark-open,
  .method blockquote .quote-mark-close {
    position: static;
    font-size: 1em;
  }

  .method blockquote .quote-mark-open {
    margin-right: 0.08em;
  }

  .method blockquote .quote-mark-close {
    margin-left: 0.06em;
  }

  .method blockquote cite {
    margin-top: 8px;
    text-align: left;
  }

  .life {
    padding-top: 96px;
    padding-bottom: 118px;
  }

  .life::after {
    content: none;
  }

  .life h2 {
    margin-bottom: 36px;
    font-size: clamp(50px, 10vw, 70px);
  }

  .life .life-eyebrow {
    margin-bottom: 34px;
  }

  .life-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .life-copy {
    max-width: 100%;
  }

  .life-copy p {
    max-width: 620px;
    font-size: var(--text-size-unified);
    line-height: 1.24;
  }

  .life-quote {
    margin-top: 0;
    max-width: 420px;
    position: relative;
    z-index: 3;
    --life-quote-size: clamp(32px, 6vw, 46px);
  }

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

  .hero-copy h1 {
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(50px, 11vw, 72px);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 28px;
    font-size: 15px;
    text-align: center;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-button {
    min-height: 52px;
    padding: 12px 26px;
    font-size: 14px;
  }

  .hero-link {
    font-size: 14px;
  }

  .hero-paw {
    width: 68px;
    bottom: 14px;
  }

  .portrait {
    min-height: 0;
  }

  .thinker .copy-block p:not(.thinker-eyebrow) {
    font-size: 16px;
    margin-left: 0;
    max-width: 520px;
  }

  .thinker .split > .copy-block {
    transform: none;
  }

  .thinker h2 {
    font-size: clamp(56px, 11vw, 72px);
    white-space: normal;
  }

  .thinker .split {
    gap: 22px;
  }

  .thinker-portrait {
    min-height: 0;
  }

  .thinker-portrait img {
    width: min(100%, 390px);
    margin-top: 0;
    margin-right: 0;
  }

  .portrait img,
  .portrait::before {
    margin-right: auto;
    margin-left: auto;
  }

  .method blockquote {
    margin-left: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .service-grid article {
    min-height: 204px;
    padding: 26px 24px;
    border-radius: 30px;
  }

  .service-grid h3 {
    margin-bottom: 16px;
    font-size: clamp(18px, 2.7vw, 24px);
  }

  .service-grid p {
    max-width: 100%;
    font-size: 14px;
  }

  .service-grid article:nth-child(even) {
    transform: none;
  }

  .cta {
    min-height: auto;
    padding-top: 94px;
    padding-bottom: 102px;
  }

  .cta-content {
    width: min(100%, 660px);
    padding-left: 0;
  }

  .cta h2 {
    margin-bottom: 26px;
    font-size: clamp(58px, 10.6vw, 88px);
  }

  .cta p {
    max-width: none;
    font-size: clamp(16px, 2.15vw, 20px) !important;
  }

  .cta-copy-block {
    width: max-content;
    max-width: 100%;
    margin-right: -24px;
  }

  .cta-message-last {
    margin-bottom: 42px;
  }

  .cta-button {
    display: flex;
    width: fit-content;
    min-height: 50px;
    margin: 0 auto;
    padding: 11px 28px;
    font-size: 14px !important;
  }

  .cta-face-bg {
    top: clamp(-94px, -7vw, -46px);
    right: clamp(-260px, -24vw, -140px);
    width: min(112vw, 860px);
    transform: scale(1.29);
    transform-origin: top right;
    opacity: 0.09;
  }

  .cta-eye-icon {
    top: 50px;
    right: 52px;
    width: 56px;
  }

  .book {
    height: clamp(320px, 78vw, 500px);
  }

  .book-overflow {
    left: clamp(-38px, -2vw, 16px);
    bottom: clamp(-64px, -7vw, -32px);
    width: clamp(226px, 39vw, 360px);
    transform: translateX(18px) rotate(-7.3deg);
  }

  .book-copy {
    grid-template-columns: 1fr;
    justify-items: center;
    left: 50%;
    width: min(calc(100% - 24px), 620px);
    padding: clamp(20px, 4.6vw, 30px) clamp(18px, 4vw, 28px);
    border-radius: 22px;
  }

  .book-copy .book-copy-text {
    grid-column: 1;
    max-width: 500px;
    margin-bottom: 16px;
    font-size: clamp(23px, 5.2vw, 34px) !important;
  }

  .book-button {
    grid-column: 1;
    min-height: 46px;
    padding: 0 28px;
    font-size: clamp(14px, 2.9vw, 18px) !important;
  }

  .site-footer {
    padding: 76px 0 86px;
  }

  .site-footer::before {
    content: none;
  }

  .site-footer .container {
    width: min(100% - 40px, 980px);
  }

  .footer-top {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 58px;
  }

  .footer-grid {
    row-gap: 24px;
    padding-top: 10px;
  }

  .footer-logo-wrap,
  .footer-tagline,
  .footer-addresses,
  .footer-contact {
    margin-top: 0;
  }

  .footer-logo {
    width: min(100%, 360px);
  }

  .footer-tagline {
    white-space: normal;
  }

  .footer-addresses p + p {
    margin-top: 24px;
  }

  .footer-social {
    gap: 20px;
    margin-bottom: 22px;
  }
}

@media (max-width: 560px) {
  .thinker-pawn {
    width: 88px;
    opacity: 0.22;
  }

  .thinker-pawn-left {
    width: 2100px;
    left: -1250px;
    bottom: -1100px;
  }

  .thinker-pawn-right {
    right: 36px;
    top: 36px;
  }

  .thinker .container {
    transform: none;
    margin-top: 12px;
  }

  .site-header {
    padding: 16px 20px;
  }

  .footer-social button {
    width: 32px;
    height: 32px;
  }

  .footer-social svg {
    width: 27px;
    height: 27px;
  }

  .footer-social button[aria-label="Instagram"] svg {
    width: 28px;
    height: 28px;
  }

  .brand img {
    width: 122px;
  }

  .nav {
    padding: 8px 16px 12px;
    font-size: 12px;
  }

  .nav a {
    padding: 9px 0;
  }

  .hero {
    min-height: 440px;
    margin-bottom: -14px;
    padding-top: 48px;
    padding-bottom: 62px;
    border-bottom-right-radius: 22px;
    border-bottom-left-radius: 22px;
  }

  .produce {
    --produce-top-accent: 6px;
    margin-top: -22px;
    padding-top: 64px;
    padding-bottom: 70px;
    border-top-right-radius: 22px;
    border-top-left-radius: 22px;
    background-position:
      center,
      center -390px;
    background-size:
      100% 100%,
      min(270vw, 1515px) auto;
  }

  .different {
    margin-bottom: -14px;
    padding-top: 56px;
    padding-bottom: 76px;
    border-bottom-right-radius: 22px;
    border-bottom-left-radius: 22px;
  }

  .different::before {
    top: 0;
    left: -105px;
    width: 680px;
    height: 100%;
    opacity: 0.032;
  }

  .different-intro {
    width: 100%;
    max-width: none;
    margin-bottom: 22px;
  }

  .different h2 {
    font-size: clamp(40px, 11.8vw, 54px);
  }

  .different-eyebrow {
    margin-bottom: 10px;
    font-size: 8px;
  }

  .different .lead {
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
    margin-right: 0;
    font-size: 13px;
    line-height: 1.28;
    white-space: normal;
  }

  .different .check-list li {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 8px;
    min-height: 54px;
    padding: 8px 0;
    font-size: 15px;
  }

  .different .check-list li::before {
    justify-self: end;
    width: 2.4ch;
    text-align: right;
    font-size: 11px;
  }

  .produce h2 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .produce-heading {
    margin-bottom: 24px;
    padding-top: 20px;
  }

  .produce-eyebrow {
    left: 40px;
    font-size: 8px;
  }

  .method {
    --method-bg-position: center center;
    --method-bg-size: min(130vw, 620px) auto;
    margin-bottom: -14px;
    padding-top: 64px;
    padding-bottom: 76px;
    border-bottom-right-radius: 22px;
    border-bottom-left-radius: 22px;
  }

  .method-eyebrow {
    margin-bottom: 12px;
    font-size: 8px;
  }

  .method h2 {
    margin-bottom: 24px;
    font-size: clamp(44px, 13vw, 58px);
    line-height: 0.93;
  }

  .method .columns {
    gap: 10px;
  }

  .method .columns p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.2;
  }

  .method blockquote {
    margin-top: 26px;
  }

  .method blockquote p.method-quote {
    font-size: clamp(22px, 6vw, 30px) !important;
    line-height: 1.08;
  }

  .method blockquote cite {
    font-size: 11px;
  }

  .life {
    padding-top: 82px;
    padding-bottom: 98px;
  }

  .life::after {
    content: none;
  }

  .life h2 {
    margin-bottom: 26px;
    font-size: clamp(44px, 13vw, 58px);
  }

  .life .life-eyebrow {
    margin-bottom: 24px;
    font-size: 9px;
  }

  .life-copy p {
    margin-bottom: 16px;
    font-size: var(--text-size-unified);
  }

  .life-quote-line {
    width: calc(var(--life-quote-size) * 2.6);
    height: 2px;
    margin-bottom: 14px;
  }

  .life-quote .life-quote-text {
    --life-quote-size: clamp(28px, 8vw, 38px);
    font-size: var(--life-quote-size);
  }

  .hero-copy h1 {
    gap: 2px;
    margin-bottom: 18px;
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 320px;
    font-size: 13px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .hero-actions {
    gap: 10px 18px;
  }

  .hero-button {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 13px;
  }

  .hero-link {
    font-size: 13px;
  }

  .hero-paw {
    width: 54px;
    bottom: 9px;
  }

  .container {
    width: min(100% - 32px, 960px);
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 39px;
  }

  .thinker {
    padding-top: 84px;
    padding-bottom: 96px;
  }

  .thinker h2 {
    margin-bottom: 22px;
    font-size: clamp(46px, 13vw, 60px);
    line-height: 0.9;
    white-space: normal;
  }

  .thinker .thinker-eyebrow {
    margin-bottom: 10px;
    margin-left: 0;
    font-size: 8px;
  }

  .thinker .copy-block p:not(.thinker-eyebrow) {
    font-size: 15px;
    margin-left: 0;
    max-width: 100%;
  }

  .thinker .split > .copy-block {
    transform: none;
  }

  .thinker-portrait {
    min-height: 0;
  }

  .thinker-portrait img {
    width: min(100%, 330px);
    margin-top: 0;
    margin-right: 0;
  }

  .hero-copy {
    padding-top: 0;
  }

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

  .service-grid article {
    min-height: 170px;
    padding: 22px 20px;
    border-radius: 26px;
  }

  .service-grid h3 {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .service-grid p {
    font-size: 14px;
  }

  .cta {
    padding-top: 74px;
    padding-bottom: 82px;
  }

  .cta-content {
    width: 100%;
    padding-left: 0;
  }

  .cta h2 {
    margin-bottom: 18px;
    font-size: clamp(44px, 13.2vw, 64px);
  }

  .cta p {
    max-width: none;
    margin-left: 0;
    font-size: clamp(14px, 4.1vw, 16px) !important;
    line-height: 1.24;
  }

  .cta-copy-block {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .cta-message-last {
    margin-bottom: 30px;
  }

  .cta-button {
    display: flex;
    width: fit-content;
    min-height: 44px;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 14px !important;
  }

  .cta-face-bg {
    top: -58px;
    right: -190px;
    width: 510px;
    transform: scale(1.23);
    transform-origin: top right;
    opacity: 0.085;
  }

  .cta-eye-icon {
    top: 34px;
    right: 22px;
    width: 44px;
  }

  .book {
    height: 300px;
    overflow: hidden;
  }

  .book-overflow {
    left: -56px;
    bottom: -38px;
    width: 218px;
    transform: translateX(12px) rotate(-7deg);
  }

  .book-copy {
    grid-template-columns: 1fr;
    justify-items: center;
    left: 50%;
    width: calc(100% - 18px);
    padding: 16px 14px 14px;
    border-radius: 16px;
  }

  .book-copy .book-copy-text {
    grid-column: 1;
    margin-bottom: 12px;
    font-size: clamp(20px, 6.6vw, 28px) !important;
    line-height: 1.05;
  }

  .book-button {
    grid-column: 1;
    min-height: 40px;
    padding: 0 20px;
    font-size: clamp(13px, 3.8vw, 15px) !important;
  }
}
