:root {
  --warm-white: #f7f4ef;
  --white: #ffffff;
  --charcoal: #171717;
  --ink: #262626;
  --muted: #66635d;
  --line: #ded8cb;
  --slate: #2f4858;
  --slate-dark: #1f333f;
  --logo-navy: #121e2a;
  --gold: #d7be7a;
  --gold-dark: #a9843d;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--logo-navy);
  color: var(--white);
  font-family: "Inter", "Manrope", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.theme-light .site-header {
  color: var(--white);
  background: var(--logo-navy);
  border-color: rgba(255, 255, 255, 0.12);
}

body.theme-light .brand-logo,
body.theme-light .header-action,
body.theme-light .menu-button {
  border-color: rgba(255, 255, 255, 0.24);
}

body.theme-light .nav-link,
body.theme-light .header-action,
body.theme-light .menu-button {
  color: rgba(255, 255, 255, 0.78);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(215, 190, 122, 0.45);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--logo-navy);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 132px;
  height: auto;
  background: var(--logo-navy);
}

.brand-drawn {
  color: var(--white);
}

.brand-cloud {
  width: 58px;
  height: auto;
  flex: 0 0 auto;
}

.brand-cloud path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: brand-draw 1800ms ease forwards;
}

.brand-wordmark {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--white);
}

.header-action,
.menu-button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.header-action:hover,
.menu-button:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--charcoal);
}

.menu-button {
  display: none;
}

.mockup-hero {
  position: relative;
  overflow: hidden;
  background: var(--logo-navy);
}

.mockup-hero-first {
  padding-top: 88px;
  background: var(--logo-navy);
}

.mockup-image {
  width: 100%;
  height: auto;
}

.mockup-cta-hotspot {
  position: absolute;
  left: 5.6%;
  bottom: 10.8%;
  z-index: 2;
  width: min(42vw, 430px);
  height: clamp(58px, 6vw, 88px);
  border-radius: 4px;
}

.mockup-cta-hotspot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

.question-sequence {
  min-height: 100svh;
  padding-top: 72px;
  background: var(--logo-navy);
  color: var(--white);
}

.question-layout {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
  gap: 64px;
  align-items: start;
}

.question-stack {
  display: grid;
}

.question-screen {
  min-height: calc(100svh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 76px 0;
}

.question-number {
  margin: 0 0 26px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.question-screen h1,
.question-screen h2 {
  max-width: 720px;
  color: var(--white);
  font-size: 4.7rem;
}

.question-screen .button {
  width: fit-content;
  margin-top: 34px;
  color: var(--gold);
}

.question-visual {
  position: sticky;
  top: 104px;
  height: calc(100svh - 136px);
  display: flex;
  align-items: center;
}

.question-visual img {
  width: 100%;
  height: min(74svh, 760px);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
}

.build-next-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  padding: 118px 0;
}

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

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

.section-slate {
  background: var(--logo-navy);
  color: var(--white);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.grid-two {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 86px;
}

.align-center {
  align-items: center;
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-dark .kicker,
.section-slate .kicker,
.hero .kicker {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", "Inter", ui-sans-serif, system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.hero-title {
  max-width: 920px;
  margin-top: 24px;
  color: var(--white);
  font-size: 4.15rem;
}

.page-title,
.section-title {
  max-width: 780px;
  margin-top: 18px;
  font-size: 3.95rem;
}

.section-title.small {
  max-width: 640px;
  font-size: 3rem;
}

.lead {
  margin: 28px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.35rem;
  line-height: 1.55;
}

.body-large {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
  line-height: 1.8;
}

.max-narrow {
  max-width: 620px;
}

.section-dark .body-large,
.section-slate .body-large {
  color: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 132px 0 76px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

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

.hero::before {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.18), rgba(23, 23, 23, 0.66)),
    linear-gradient(90deg, rgba(23, 23, 23, 0.74), rgba(23, 23, 23, 0.18) 58%, rgba(23, 23, 23, 0.08));
}

.hero::after {
  z-index: -1;
  border: 20px solid rgba(255, 255, 255, 0.05);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 64px;
  align-items: end;
}

.hero-note {
  max-width: 360px;
  justify-self: end;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
  line-height: 1.8;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button-primary {
  margin-top: 36px;
  background: var(--white);
  color: var(--charcoal);
}

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

.button-outline {
  border: 1px solid currentColor;
}

.button-outline:hover,
.button-outline:focus-visible {
  transform: translateY(-2px);
  background: var(--charcoal);
  color: var(--white);
}

.problem-list {
  display: grid;
  gap: 12px;
}

.problem-item,
.light-card,
.insight-card,
.engagement-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.problem-item {
  min-height: 84px;
  display: grid;
  align-items: center;
  padding: 18px 22px;
  font-size: 1.35rem;
  font-weight: 650;
}

.problem-item:hover,
.light-card:hover,
.insight-card:hover,
.engagement-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 190, 122, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.audience-pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 12px 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 650;
}

.build-card {
  min-height: 292px;
  background: #172634;
  padding: 34px;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.build-card:hover {
  background: #203647;
}

.build-card .kicker {
  color: var(--gold);
}

.build-card h3 {
  margin-top: 88px;
  font-size: 1.75rem;
}

.build-card p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.image-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-copy {
  padding: 96px 9%;
}

.question-list {
  margin-top: 54px;
  display: grid;
  gap: 28px;
}

.question {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-family: "Space Grotesk", "Manrope", "Inter", ui-sans-serif, system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 4.25rem;
  font-weight: 750;
  line-height: 1;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

.engagement-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.engagement-card,
.insight-card,
.light-card {
  padding: 34px;
}

.engagement-card h3 {
  font-size: 2.5rem;
}

.engagement-card p,
.insight-card p,
.light-card p {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.75;
}

.insight-card h3 {
  font-size: 1.7rem;
  line-height: 1.1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.contact-link {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-weight: 650;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--slate);
}

.contact-form {
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  padding: 34px;
  box-shadow: 0 28px 80px rgba(23, 36, 44, 0.24);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: #333;
  font-size: 0.95rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d7d0c2;
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  padding: 12px 14px;
  outline: none;
  transition: border-color 180ms ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--slate);
}

.form-field {
  margin-top: 18px;
}

.form-button {
  margin-top: 22px;
  border: 0;
  background: var(--charcoal);
  color: var(--white);
}

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

.page-hero {
  padding: 178px 0 118px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--logo-navy);
  color: var(--white);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.72);
}

.values-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--logo-navy);
  color: rgba(255, 255, 255, 0.66);
  padding: 34px 0;
}

.footer-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  font-size: 0.92rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand .brand-cloud {
  width: 48px;
}

.section-spacious {
  padding-top: 136px;
  padding-bottom: 136px;
}

.section-intro {
  max-width: 820px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 72px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.principle-card {
  min-height: 260px;
  background: #172634;
  padding: 30px;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.principle-card:hover {
  background: #203647;
  transform: translateY(-2px);
}

.principle-number {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.principle-card h3 {
  margin-top: 64px;
  font-size: 1.5rem;
  line-height: 1.08;
}

.principle-card p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.notebook-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notebook-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mini-sketch {
  min-height: 210px;
  border: 1px solid rgba(215, 190, 122, 0.32);
  border-radius: 8px;
  background: #f7f4ef;
  padding: 18px;
}

.mini-sketch path,
.mini-sketch circle,
.mini-sketch rect {
  fill: none;
  stroke: #121e2a;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-sketch .gold-line {
  stroke: var(--gold-dark);
}

.case-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 72px;
}

.case-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 34px;
}

.case-card h3 {
  font-size: 2rem;
  line-height: 1.05;
}

.case-card dl {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
}

.case-card dt {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card dd {
  margin: -6px 0 14px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.story-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.story-gallery {
  display: flex;
  gap: 14px;
  margin-top: 56px;
  overflow-x: auto;
  padding: 0 0 20px;
  scroll-padding-left: 4px;
  scroll-snap-type: x proximity;
}

.story-gallery::-webkit-scrollbar {
  height: 8px;
}

.story-gallery::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.story-gallery::-webkit-scrollbar-thumb {
  background: rgba(215, 190, 122, 0.55);
  border-radius: 999px;
}

.story-card {
  flex: 0 0 min(82vw, 380px);
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  scroll-snap-align: start;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.story-card:hover {
  border-color: rgba(215, 190, 122, 0.45);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.story-card summary {
  min-height: 300px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  cursor: default;
  list-style: none;
  padding: 24px;
}

.story-card summary::-webkit-details-marker {
  display: none;
}

.story-label {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-question {
  display: block;
  max-width: 12ch;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.65rem);
  line-height: 1.02;
}

.story-sketch {
  width: 100%;
  height: 130px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

.story-sketch path,
.story-sketch rect,
.story-sketch circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.84);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-sketch .gold-line {
  stroke: var(--gold);
}

.story-open {
  display: none;
}

.story-body {
  display: grid;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 24px 24px;
}

.story-body-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-body p:not(.story-body-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}

.story-thinking p:not(.story-body-label) {
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.42;
}

@keyframes brand-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.footer-logo {
  width: 132px;
  height: auto;
  background: var(--logo-navy);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-image {
    animation: mountain-drift 24s ease-in-out infinite alternate;
    transform-origin: center;
  }

  @keyframes mountain-drift {
    from {
      transform: scale(1.02) translate3d(0, 0, 0);
    }

    to {
      transform: scale(1.08) translate3d(-1.1%, -0.8%, 0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal.is-visible {
    transition: none;
  }
}

@media (max-width: 980px) {
  .nav-menu,
  .header-action {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-menu.is-open {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(23, 23, 23, 0.95);
    padding: 12px;
  }

  body.theme-light .nav-menu.is-open {
    border-color: rgba(255, 255, 255, 0.18);
    background: var(--logo-navy);
  }

  .nav-menu.is-open .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 0 12px;
  }

  body.theme-light .nav-menu.is-open .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-layout,
  .grid-two,
  .contact-grid,
  .question-layout {
    grid-template-columns: 1fr;
  }

  .question-sequence {
    padding-top: 72px;
  }

  .question-screen {
    min-height: 78svh;
    padding: 64px 0;
  }

  .question-screen h1,
  .question-screen h2 {
    font-size: 3.7rem;
  }

  .question-visual {
    position: relative;
    top: auto;
    height: auto;
    order: -1;
    padding-top: 32px;
  }

  .question-visual img {
    height: 440px;
  }

  .hero-note {
    display: none;
  }

  .grid-three,
  .principle-grid,
  .values-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .story-card {
    flex-basis: min(84vw, 360px);
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .philosophy-copy {
    padding: 76px 5%;
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .container,
  .footer-shell {
    width: min(100% - 28px, var(--max));
  }

  .brand-logo {
    width: 112px;
  }

  .brand-cloud {
    width: 46px;
  }

  .brand-wordmark {
    font-size: 0.66rem;
  }

  .mockup-hero-first {
    padding-top: 78px;
  }

  .mockup-image {
    height: calc(100svh - 78px);
    min-height: 620px;
    object-fit: cover;
    object-position: left center;
  }

  .mockup-cta-hotspot {
    left: 6%;
    bottom: 9%;
    width: min(78vw, 340px);
    height: 72px;
  }

  .mockup-hero + .mockup-hero .mockup-image {
    min-height: 640px;
    object-position: left center;
  }

  .hero {
    min-height: 88svh;
    padding-bottom: 52px;
  }

  .hero-title {
    font-size: 3.1rem;
  }

  .page-title,
  .section-title {
    font-size: 2.75rem;
  }

  .question-screen h1,
  .question-screen h2 {
    font-size: 2.85rem;
  }

  .question-screen {
    min-height: 70svh;
  }

  .question-visual img {
    height: 320px;
  }

  .section-title.small {
    font-size: 2.35rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .section {
    padding: 86px 0;
  }

  .problem-item {
    font-size: 1.1rem;
  }

  .grid-three,
  .engagement-grid,
  .insight-grid,
  .principle-grid,
  .values-grid,
  .service-grid,
  .notebook-mini-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .build-card {
    min-height: 250px;
  }

  .build-card h3 {
    margin-top: 48px;
  }

  .principle-card {
    min-height: 220px;
  }

  .principle-card h3 {
    margin-top: 44px;
  }

  .case-card {
    padding: 28px;
  }

  .case-card h3 {
    font-size: 1.75rem;
  }

  .story-gallery {
    margin-top: 42px;
  }

  .story-card {
    flex-basis: 82vw;
    min-height: 0;
  }

  .story-card summary {
    min-height: 280px;
    padding: 22px;
  }

  .story-question {
    max-width: 12ch;
    font-size: 1.9rem;
  }

  .story-body {
    padding: 0 22px 22px;
  }

  .image-panel {
    min-height: 380px;
  }

  .question {
    font-size: 2.45rem;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}
