@import url("https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&display=swap");

@font-face {
  font-family: "Neuton";
  src: url("assets/fonts/Neuton-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Neuton";
  src: url("assets/fonts/Neuton-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: block;
}

@font-face {
  font-family: "Neuton";
  src: url("assets/fonts/Neuton-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Neuton";
  src: url("assets/fonts/Neuton-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

:root {
  --paper: #f0eeeb;
  --paper-deep: #e8e4df;
  --white-card: #fafafa;
  --cocoa: #4c2800;
  --earth: #3f2718;
  --rooted-green: #3f4626;
  --muted-footer: #574736;
  --ink-faint: rgba(76, 40, 0, 0.68);
  --shadow-soft:
    23px 87px 13px rgba(0, 0, 0, 0),
    14px 56px 12px rgba(0, 0, 0, 0.01),
    8px 31px 10px rgba(0, 0, 0, 0.02),
    4px 14px 7px rgba(0, 0, 0, 0.03),
    1px 3px 4px rgba(0, 0, 0, 0.04);
  --display: "Neuton", Georgia, serif;
  --body: "Source Serif 4", Georgia, serif;
  --ease-exaggerated: cubic-bezier(0.82, 0, 0.18, 1);
  --ease-soft: cubic-bezier(0.25, 1, 0.5, 1);
  --split-expo-ease: cubic-bezier(0.85, 0.28, 0.06, 0.97);
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.25;
  color: var(--cocoa);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

#app {
  min-height: 100svh;
  background: var(--paper);
}

#page-transition {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  background: var(--paper);
  opacity: 0;
  transition: opacity 360ms var(--ease-soft);
}

#page-transition.is-active {
  opacity: 1;
}

.page {
  min-height: 100svh;
  overflow: hidden;
  background: var(--paper);
}

.site-header {
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 317px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  height: 69px;
  padding: 0 48px;
  color: var(--earth);
}

.site-header.is-light {
  color: #fff;
}

.site-header.is-blend {
  mix-blend-mode: difference;
}

.site-header__logo {
  width: 317px;
  height: 80px;
}

.site-header__logo img {
  width: 317px;
  height: 80px;
}

.site-header__brand {
  justify-self: center;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 36px;
  min-width: 321px;
  width: auto;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
}

.site-nav a,
.footer-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.site-nav a::after,
.footer-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition:
    opacity 180ms ease,
    transform 320ms var(--ease-soft);
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.footer-nav a:hover::after,
.footer-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 15px 16px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 200ms ease,
    color 200ms ease,
    border-color 200ms ease,
    transform 260ms var(--ease-soft),
    opacity 200ms ease;
}

.button--small {
  min-height: 34px;
  padding: 9px 16px;
  font-family: var(--display);
  font-size: 14px;
}

.button--primary {
  background: var(--earth);
  color: var(--paper);
}

.button--primary:hover {
  background: var(--rooted-green);
  transform: translateY(-1px);
}

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

.button--secondary {
  border-color: currentColor;
  color: #fff;
  background: transparent;
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.button--outline-dark {
  border-color: var(--cocoa);
  color: var(--cocoa);
  background: transparent;
}

.button--outline-dark:hover {
  background: rgba(76, 40, 0, 0.08);
  transform: translateY(-1px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.footer-nav a:focus-visible,
.story-card:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 741px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero--home .hero__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(76, 40, 0, 0.72) 0%, rgba(76, 40, 0, 0) 18%),
    linear-gradient(180deg, rgba(76, 40, 0, 0) 58%, rgba(76, 40, 0, 0.9) 100%);
}

.hero--about .hero__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(63, 70, 38, 0) 42%, rgba(63, 70, 38, 0.9) 100%);
}

.hero--home {
  align-items: stretch;
  justify-content: center;
}

.home-split-hero {
  position: relative;
  display: flex;
  min-height: 741px;
  height: 90vh;
  height: 90svh;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 125px 0 24px;
  overflow: hidden;
  background: var(--paper);
  color: var(--cocoa);
}

.home-split-hero__main {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(0, 660px);
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 24px;
  width: 100%;
  min-height: 421px;
  padding: 0 48px;
}

.home-split-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  min-width: 0;
  min-height: 421px;
  margin-top: 0;
  padding: 72px;
}

.home-split-hero__copy .display-title,
.home-split-hero__copy .hero-subtitle {
  max-width: 516px;
  text-align: left;
}

.home-split-hero__image {
  min-width: 0;
  height: 421px;
  overflow: hidden;
}

.home-split-hero__image.hero-animate--image {
  animation-delay: 220ms;
}

.home-split-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-hero__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 48px;
}

.home-hero__center {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: min(646px, calc(100vw - 40px));
  text-align: center;
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 72px 0;
  background: radial-gradient(circle at 50% 50%, rgba(76, 40, 0, 0.48), rgba(76, 40, 0, 0) 52%);
}

.display-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 500;
  line-height: 0.95;
}

.display-title em,
.story-line em,
.cta-band__title em {
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  max-width: 600px;
  margin: 0;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  line-height: 1.2;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: min(1154px, 100%);
  margin: 0 auto;
  padding: 24px 40px;
}

.partner {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  text-align: center;
}

.partner span {
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.partner img {
  display: block;
  object-fit: contain;
}

.partner--cla img {
  width: 98px;
  height: 53px;
}

.partner--stubben img {
  display: none;
}

.partner--stubben::after {
  display: block;
  content: "stubben edge";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.1px;
  color: currentColor;
}

.partner--oxbury img {
  width: 180px;
  height: 33px;
}

.partner-strip--brown {
  color: var(--cocoa);
}

.hero-animate {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-in 880ms var(--ease-soft) both;
  will-change: opacity, transform;
}

.hero-animate--fade {
  transform: none;
  animation-name: hero-fade-in;
}

.hero-animate--image {
  opacity: 0;
  transform: scale(1.035);
  animation: hero-image-in 1200ms var(--ease-soft) both;
  will-change: opacity, transform;
}

.hero-animate--nav-logo {
  animation-delay: 80ms;
}

.hero-animate--nav-brand {
  animation-delay: 160ms;
}

.hero-animate--nav {
  animation-delay: 240ms;
}

.hero-animate--heading {
  animation-delay: 360ms;
}

.hero-animate--subheading {
  animation-delay: 500ms;
}

.hero-animate--button {
  animation-delay: 650ms;
}

.partner.hero-animate:nth-child(1) {
  animation-delay: 820ms;
}

.partner.hero-animate:nth-child(2) {
  animation-delay: 960ms;
}

.partner.hero-animate:nth-child(3) {
  animation-delay: 1100ms;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.story-section {
  min-height: 669px;
  padding: 64px;
  background: var(--paper);
}

.story-stage {
  position: relative;
  display: grid;
  max-width: 1312px;
  min-height: 541px;
  margin: 0 auto;
  align-content: center;
  gap: 18px;
}

.story-line {
  min-height: 49px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--cocoa);
  text-align: left;
  transform: translateY(0);
}

.story-line--bottom {
  text-align: right;
}

.story-section.is-open .story-line--top {
  animation: split-line-top 1200ms cubic-bezier(0.85, 0.28, 0.06, 0.97) forwards;
}

.story-section.is-open .story-line--bottom {
  animation: split-line-bottom 1200ms cubic-bezier(0.85, 0.28, 0.06, 0.97) forwards;
}

@keyframes split-line-top {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-164px);
  }
}

@keyframes split-line-bottom {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(164px);
  }
}

.typing-box {
  display: inline-block;
  text-align: left;
}

.story-line--bottom .typing-box {
  width: var(--typing-width, auto);
  max-width: 100%;
}

.typing-measurer {
  position: absolute;
  left: -9999px;
  top: 0;
  visibility: hidden;
  white-space: nowrap;
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  margin-left: 4px;
  transform: translateY(0.1em);
  background: var(--cocoa);
  opacity: 0;
}

.story-line.is-typing .typing-cursor {
  opacity: 1;
  animation: cursor-blink 760ms steps(1) infinite;
}

@keyframes cursor-blink {
  0%,
  42% {
    opacity: 1;
  }

  43%,
  100% {
    opacity: 0;
  }
}

.story-cards-shell {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-50% + 28px)) scale(0.96);
  transform-origin: center;
  transition:
    opacity 900ms ease,
    transform 1200ms cubic-bezier(0.85, 0.28, 0.06, 0.97);
}

.story-section.is-open .story-cards-shell {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.story-section.cards-settled .story-cards-shell {
  overflow: visible;
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  height: 339px;
  margin: -24px;
  padding: 24px;
}

.story-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 291px;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
  padding: 40px;
  background: var(--white-card);
  box-shadow: none;
  color: var(--cocoa);
  opacity: 0;
  transform: translateY(92px) scale(0.96);
  transition: box-shadow 700ms ease;
  will-change: transform, opacity;
}

.story-section.cards-settled .story-card {
  box-shadow: var(--shadow-soft);
}

.story-card::before,
.detail-panel::before,
.info-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image: url("assets/story-paper-65.png");
  background-size: 205px 205px;
  opacity: 0.4;
  pointer-events: none;
}

.story-section.cards-ready .story-card {
  animation: card-arrive 1900ms cubic-bezier(0.76, 0, 0.16, 1) forwards;
}

.story-section.cards-ready .story-card:nth-child(1) {
  animation-delay: 160ms;
}

.story-section.cards-ready .story-card:nth-child(2) {
  animation-delay: 360ms;
}

.story-section.cards-ready .story-card:nth-child(3) {
  animation-delay: 560ms;
}

@keyframes card-arrive {
  0% {
    opacity: 0;
    transform: translateY(92px) scale(0.96);
  }

  48% {
    opacity: 1;
    transform: translateY(-10px) scale(1.01);
  }

  72% {
    opacity: 1;
    transform: translateY(-3px) scale(1.003);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.story-card__content,
.story-card__logo,
.detail-panel__inner,
.info-card__inner {
  position: relative;
  z-index: 1;
}

.story-card__number {
  display: block;
  margin-bottom: 8px;
  color: var(--rooted-green);
  font-size: 14px;
  opacity: 0.22;
}

.story-card h3 {
  margin: 0 0 2px;
  font-size: clamp(21px, 1.8vw, 24px);
  line-height: 1.2;
}

.story-card p {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.2;
}

.story-card__logo {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.story-card__logo img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 52px;
  object-fit: contain;
}

.story-card[href*="designed"] .story-card__logo img {
  width: 78px;
  height: 42px;
}

.story-card[href*="financed"] .story-card__logo img {
  width: 144px;
  height: 26px;
}

.story-card[href*="simple"] .story-card__logo img {
  display: none;
}

.story-card[href*="simple"] .story-card__logo::after {
  display: block;
  content: "stubben edge";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.75px;
  color: var(--rooted-green);
}

.story-card:hover {
  transform: translateY(-4px) scale(1);
}

.split-story {
  display: flex;
  min-height: 741px;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
  background: var(--paper);
  color: var(--cocoa);
}

.split-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 648px) minmax(0, 648px);
  align-items: center;
  gap: 48px;
  width: 100%;
  padding: 0 48px;
}

.split-story__image {
  min-height: 613px;
  overflow: hidden;
}

.split-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-story__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 27px;
}

.split-story h2 {
  max-width: 648px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 500;
  line-height: 0.95;
}

.split-story h2 em {
  font-style: italic;
  font-weight: 500;
}

.split-story p {
  max-width: 648px;
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.working-rhythm {
  padding: 104px 48px 112px;
  background: var(--paper);
  color: var(--cocoa);
}

.working-rhythm__inner {
  width: min(1312px, 100%);
  margin: 0 auto;
}

.working-rhythm__intro {
  display: grid;
  grid-template-columns: minmax(240px, 328px) minmax(0, 648px);
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.working-rhythm h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  line-height: 0.95;
}

.working-rhythm__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
}

.working-rhythm__image {
  height: 360px;
  margin: 0;
  overflow: hidden;
}

.working-rhythm__image--tall {
  height: 460px;
}

.working-rhythm__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-story {
  position: relative;
  min-height: 739px;
  overflow: hidden;
  color: var(--paper);
}

.image-story__bg,
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.image-story__bg img,
.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-story__bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(80deg, rgba(4, 2, 0, 0.62) 5%, rgba(76, 40, 0, 0) 62%);
}

.image-story__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 739px;
  align-items: center;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 60px;
}

.image-story__copy {
  width: min(481px, 100%);
}

.image-story h2 {
  max-width: 370px;
  margin: 0 0 27px;
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 500;
  line-height: 0.95;
}

.image-story p {
  margin: 0 0 27px;
  font-size: 20px;
  line-height: 1.2;
}

.section-kicker {
  margin: 0;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.58;
}

.legacy-gallery {
  padding: 104px 48px 112px;
  background: var(--paper-deep);
  color: var(--cocoa);
}

.legacy-gallery__inner {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 840px);
  gap: 56px;
  width: min(1312px, 100%);
  margin: 0 auto;
  align-items: start;
}

.legacy-gallery__copy {
  position: sticky;
  top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.legacy-gallery h2,
.about-proof h2,
.next-gate h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  line-height: 0.95;
}

.legacy-gallery p,
.about-proof p,
.next-gate p {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.legacy-gallery__images {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  grid-auto-rows: 286px;
  gap: 24px;
}

.legacy-gallery__item,
.about-proof__image,
.faq-visual {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.legacy-gallery__item--wide {
  grid-column: 1 / -1;
  height: 376px;
}

.legacy-gallery__item img,
.about-proof__image img,
.faq-visual img,
.next-gate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legacy-gallery__item img,
.working-rhythm__image img,
.about-proof__image img,
.next-gate img {
  transition: transform 1100ms var(--ease-soft);
}

.legacy-gallery__item:hover img,
.working-rhythm__image:hover img,
.about-proof:hover img,
.next-gate:hover img {
  transform: scale(1.025);
}

.legacy-gallery__item--wide img {
  object-position: center 54%;
}

.about-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 403px);
  gap: 48px;
  width: min(1080px, 100%);
  margin: 0 auto 80px;
  align-items: end;
}

.about-proof__image {
  min-height: 438px;
}

.about-proof__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 8px;
}

.faq-visual {
  width: 100%;
  height: 328px;
}

.next-gate {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: flex-end;
  padding: 64px 48px;
  overflow: hidden;
  color: var(--paper);
}

.next-gate::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(88deg, rgba(63, 39, 24, 0.82) 0%, rgba(63, 39, 24, 0.5) 36%, rgba(63, 39, 24, 0.08) 76%);
}

.next-gate img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.next-gate__inner {
  position: relative;
  z-index: 2;
  width: min(1312px, 100%);
  margin: 0 auto;
}

.next-gate__copy {
  display: flex;
  width: min(536px, 100%);
  flex-direction: column;
  gap: 20px;
}

.cta-band {
  position: relative;
  display: flex;
  min-height: 574px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--paper);
  text-align: center;
}

.cta-band__bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 64% 50%, rgba(63, 39, 24, 0) 0, rgba(63, 39, 24, 0.8) 34%, rgba(63, 39, 24, 0.96) 74%),
    rgba(63, 39, 24, 0.35);
}

.cta-band__content {
  position: relative;
  z-index: 1;
}

.cta-band__title {
  margin: 0 0 36px;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 60px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
}

.cta-band__subtitle {
  width: min(560px, calc(100vw - 48px));
  margin: -20px auto 24px;
  color: rgba(240, 238, 235, 0.84);
  font-size: 22px;
  line-height: 1.2;
}

.site-footer {
  display: flex;
  min-height: 309px;
  align-items: center;
  background: var(--muted-footer);
  color: #fff;
}

.site-footer--compact {
  min-height: 243px;
  background: #4b2e1c;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 321px minmax(0, 1fr);
  gap: 8px;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 16px 48px;
}

.site-footer__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.site-footer__logo {
  width: 55px;
  height: 80px;
}

.site-footer__logo img {
  width: 55px;
  height: 80px;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
}

.site-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  min-width: 0;
  font-family: var(--display);
}

.site-footer__brand {
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
}

.site-footer__copyright {
  margin: 0;
  font-size: 12px;
  opacity: 0.3;
}

.about-hero {
  position: relative;
  display: flex;
  height: 741px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.about-hero .hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.about-hero .hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero .hero__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(63, 70, 38, 0) 44%, rgba(63, 70, 38, 0.9) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 0 48px 24px;
}

.about-hero__bottom {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(280px, 427px);
  align-items: end;
  gap: 48px;
}

.about-hero h1 {
  max-width: 280px;
  margin: 0;
  font-family: var(--display);
  font-size: 48px;
  font-weight: 500;
  line-height: 0.95;
}

.about-hero p {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  opacity: 0.75;
}

.about-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 104px 48px;
  background: var(--paper);
}

.about-opening {
  display: flex;
  width: min(600px, 100%);
  flex-direction: column;
  gap: 24px;
}

.about-opening__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
}

.about-opening__copy h2 {
  width: 100%;
  text-align: center;
}

.about-opening h2,
.about-pillars h2,
.about-behind h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
}

.about-opening__copy p,
.about-pillars__intro p,
.about-behind > p {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.about-emphasis {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 56px;
  background: rgba(76, 40, 0, 0.05);
  color: var(--cocoa);
  text-align: center;
}

.about-emphasis__question {
  margin: 0;
  max-width: 420px;
  font-family: var(--display);
  font-size: 30px;
  font-style: italic;
  line-height: 1.1;
}

.about-emphasis__answer {
  margin: 0;
  max-width: 340px;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
}

.about-divider {
  width: min(886px, 100%);
  height: 1px;
  background: rgba(63, 39, 24, 0.18);
}

.about-pillars {
  display: flex;
  width: min(1164px, 100%);
  flex-direction: column;
  gap: 32px;
}

.about-pillars__intro {
  display: flex;
  width: min(886px, 100%);
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}

.about-pillars__intro p,
.about-behind > p,
.about-partner-columns p {
  color: rgba(76, 40, 0, 0.76);
}

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

.about-pillar-card {
  display: flex;
  min-height: 269px;
  flex-direction: column;
  gap: 18px;
  padding: 40px;
  background: var(--white-card);
  box-shadow: var(--shadow-soft);
}

.about-pillar-card:nth-child(2),
.about-partner-columns article:nth-child(2),
.about-band p.reveal {
  transition-delay: 150ms;
}

.about-pillar-card:nth-child(3),
.about-partner-columns article:nth-child(3) {
  transition-delay: 300ms;
}

.about-pillar-card span {
  color: rgba(63, 70, 38, 0.24);
  font-size: 14px;
  line-height: 1.25;
}

.about-pillar-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.about-pillar-card p {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(280px, 500px);
  gap: 80px;
  align-items: center;
  width: min(1164px, 100%);
  padding: 56px 64px;
  background: var(--rooted-green);
  color: var(--paper);
}

.about-band h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.05;
}

.about-band p {
  margin: 0;
  color: rgba(240, 238, 235, 0.86);
  font-size: 22px;
  line-height: 1.2;
}

.about-behind {
  display: flex;
  width: min(886px, 100%);
  flex-direction: column;
  gap: 32px;
}

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

.about-partner-columns h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.15;
}

.about-partner-columns p {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.partner-strip--dark {
  width: min(1164px, 100%);
  margin: 0 auto;
  padding-top: 0;
  color: var(--earth);
}

.next-intro {
  position: relative;
  min-height: 634px;
  padding: 136px 112px 96px;
  background: var(--paper-deep);
}

.next-intro__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 528px) minmax(440px, 590px);
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 402px;
}

.next-intro__topo {
  position: absolute;
  left: max(2vw, 64px);
  top: 50%;
  width: 374px;
  height: 373px;
  transform: translateY(-45%);
  background: url("assets/topo.svg") center / contain no-repeat;
  opacity: 0.18;
}

.next-intro h1 {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  line-height: 0.95;
}

.next-intro p {
  max-width: 528px;
  margin: 0 0 28px;
  font-size: 20px;
  line-height: 1.25;
  opacity: 0.7;
}

.info-card {
  position: relative;
  min-height: 402px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.info-card__photo {
  position: absolute;
  inset: -48% 0 -30% 0;
}

.info-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card__shape-left,
.info-card__shape-right {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.info-card__shape-left {
  background: linear-gradient(45deg, #405953 0 49.8%, transparent 50%);
}

.info-card__shape-right {
  background: linear-gradient(135deg, transparent 0 57%, #d8dbe6 57.2% 100%);
}

.info-card__inner {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 55px;
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(150px, 180px);
  gap: 40px;
  align-items: end;
}

.info-card h2 {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--body);
  font-size: clamp(27px, 3vw, 31px);
  font-weight: 400;
  line-height: 1.1;
}

.info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
}

.info-card h3 {
  margin: 0;
  color: #405953;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.1;
}

.split-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 305px;
}

.split-action {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 305px;
  padding: 48px;
  overflow: hidden;
  color: #fff;
}

.split-action img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-action::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(76, 40, 0, 0) 45%, rgba(76, 40, 0, 0.88) 100%);
}

.split-action--green::after {
  background: linear-gradient(182deg, rgba(63, 70, 38, 0) 42%, rgba(63, 70, 38, 0.9) 100%);
}

.split-action__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.split-action h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  line-height: 0.95;
}

.split-action p {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  opacity: 0.74;
}

.page--faq {
  background: var(--paper);
  color: var(--cocoa);
}

.faq-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 184px 48px 104px;
  background: var(--paper);
}

.faq-content {
  display: flex;
  width: min(600px, 100%);
  flex-direction: column;
  gap: 24px;
}

.faq-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-intro h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
}

.faq-intro__copy,
.faq-answer {
  font-size: 18px;
  line-height: 1.2;
}

.faq-intro__copy p,
.faq-answer p {
  margin: 0 0 8px;
}

.faq-intro__copy p:last-child,
.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-sections,
.faq-section,
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-sections,
.faq-section,
.faq-list {
  gap: 24px;
}

.faq-section__title {
  margin: 0;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.faq-item {
  color: var(--cocoa);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: var(--body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
  cursor: pointer;
}

.faq-question__text {
  flex: 1 1 auto;
  min-width: 0;
}

.faq-toggle {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  transition: transform 420ms var(--ease-soft);
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 50%;
  height: 1.5px;
  content: "";
  background: currentColor;
  transform-origin: center;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  transition:
    grid-template-rows 520ms var(--ease-soft),
    margin-top 520ms var(--ease-soft),
    opacity 280ms ease;
}

.faq-answer__inner {
  min-height: 0;
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  margin-top: 24px;
  opacity: 1;
}

.faq-partners {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.faq-partners::before {
  width: min(886px, 100%);
  height: 1px;
  content: "";
  background: rgba(76, 40, 0, 0.42);
}

.detail-page {
  min-height: 100svh;
  background: var(--paper);
  color: var(--cocoa);
}

.detail-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 184px 48px 104px;
}

.detail-content {
  display: flex;
  width: min(600px, 100%);
  flex-direction: column;
  gap: 24px;
}

.detail-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-eyebrow {
  width: 100%;
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  opacity: 0.6;
}

.detail-intro h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
}

.detail-copy h2 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.detail-copy h3 {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
}

.detail-copy h4 {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.detail-copy p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.2;
}

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

.detail-image {
  width: 100%;
  height: 365px;
  margin: 0;
  overflow: hidden;
}

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

.detail-quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 16px 32px;
  background: rgba(76, 40, 0, 0.05);
}

.detail-quote__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-quote__mark {
  display: block;
  height: 38px;
  color: var(--cocoa);
  font-family: Georgia, serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 0.8;
}

.detail-quote__mark--close {
  align-self: flex-end;
  margin-top: -26px;
}

.detail-quote blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 2.7vw, 38px);
  font-weight: 500;
  line-height: 1.1;
}

.detail-quote figcaption {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  opacity: 0.6;
}

.detail-partners {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.detail-partners::before {
  width: min(886px, 100%);
  height: 1px;
  content: "";
  background: rgba(76, 40, 0, 0.42);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 850ms ease,
    transform 1100ms var(--ease-soft);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 80px minmax(0, 1fr);
    height: auto;
    gap: 12px;
    padding: 0 24px;
  }

  .site-header__logo,
  .site-header__logo img {
    width: 80px;
    height: 56px;
    object-fit: cover;
    object-position: left center;
  }

  .site-header__brand {
    justify-self: start;
    font-size: 22px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: 100%;
    gap: 26px;
    padding-top: 6px;
    font-size: 18px;
  }

  .hero,
  .about-hero,
  .image-story {
    min-height: 760px;
  }

  .partner-strip,
  .story-cards,
  .about-body__grid,
  .about-proof,
  .about-pillar-grid,
  .about-band,
  .about-partner-columns,
  .legacy-gallery__inner,
  .working-rhythm__intro,
  .working-rhythm__grid,
  .next-intro__inner,
  .split-actions,
  .home-split-hero__main,
  .split-story__inner {
    grid-template-columns: 1fr;
  }

  .home-split-hero {
    min-height: 760px;
    height: 90vh;
    height: 90svh;
    padding-top: 148px;
  }

  .home-split-hero__main {
    flex: 1 1 auto;
    align-content: center;
    gap: 32px;
    min-height: 0;
    padding: 0 24px;
  }

  .home-split-hero__copy {
    min-height: auto;
    margin-top: 0;
    padding: 0;
  }

  .home-split-hero__image {
    min-height: 420px;
  }

  .partner-strip {
    width: min(620px, 100%);
    padding-inline: 0;
  }

  .split-story {
    min-height: auto;
    padding: 72px 0;
  }

  .split-story__inner {
    gap: 36px;
    padding: 0 24px;
  }

  .split-story__image {
    min-height: 460px;
  }

  .legacy-gallery {
    padding: 84px 24px;
  }

  .legacy-gallery__copy {
    position: static;
  }

  .legacy-gallery__images {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .legacy-gallery__item,
  .legacy-gallery__item--wide {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .working-rhythm {
    padding: 84px 24px;
  }

  .working-rhythm__intro {
    gap: 20px;
  }

  .working-rhythm__grid {
    gap: 24px;
  }

  .working-rhythm__image,
  .working-rhythm__image--tall {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .story-section {
    padding: 72px 24px;
  }

  .story-cards-shell,
  .story-section.is-open .story-cards-shell {
    max-height: none;
  }

  .story-cards {
    height: auto;
  }

  .story-card {
    height: auto;
    min-height: 260px;
  }

  .about-hero__bottom {
    grid-template-columns: 1fr;
  }

  .about-main {
    padding: 84px 24px;
  }

  .about-pillars,
  .about-band {
    width: 100%;
  }

  .about-band {
    gap: 24px;
    padding: 48px 32px;
  }

  .about-body {
    padding: 84px 24px;
  }

  .about-proof {
    gap: 32px;
    margin-bottom: 72px;
  }

  .about-proof__image {
    min-height: 420px;
  }

  .next-intro {
    padding: 148px 24px 84px;
  }

  .next-gate {
    min-height: 560px;
    padding: 64px 24px;
  }

  .faq-main {
    padding: 156px 24px 88px;
  }

  .detail-main {
    padding: 156px 24px 88px;
  }

  .faq-partners {
    gap: 40px;
  }

  .detail-partners {
    gap: 40px;
  }

  .next-intro__topo {
    left: 16px;
    width: 260px;
    height: 260px;
  }

  .info-card__inner,
  .split-action__content {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px 24px;
  }

  .site-footer__right {
    align-items: flex-start;
    gap: 56px;
  }
}

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

  .home-hero__content {
    padding: 24px;
  }

  .home-hero__copy {
    padding: 52px 0 20px;
  }

  .display-title {
    font-size: 42px;
  }

  .partner-strip {
    gap: 22px;
  }

  .partner span {
    white-space: normal;
  }

  .home-split-hero__image {
    min-height: 320px;
  }

  .split-story__image {
    min-height: 360px;
  }

  .legacy-gallery {
    padding: 72px 24px;
  }

  .legacy-gallery h2,
  .working-rhythm h2,
  .about-proof h2,
  .next-gate h2 {
    font-size: 40px;
  }

  .about-hero {
    height: 760px;
  }

  .about-hero__content {
    padding: 0 24px 24px;
  }

  .about-opening h2,
  .about-pillars h2,
  .about-behind h2,
  .about-band h2 {
    font-size: 36px;
  }

  .about-emphasis {
    padding: 32px 24px;
  }

  .about-emphasis__question {
    font-size: 27px;
  }

  .about-emphasis__answer {
    font-size: 34px;
  }

  .about-pillar-card {
    min-height: auto;
    padding: 32px;
  }

  .about-band p {
    font-size: 19px;
  }

  .legacy-gallery p,
  .about-proof p,
  .next-gate p {
    font-size: 19px;
  }

  .about-proof__image,
  .faq-visual,
  .working-rhythm__image,
  .working-rhythm__image--tall {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .story-stage {
    gap: 12px;
  }

  .story-line,
  .story-line--bottom {
    min-height: 82px;
    text-align: left;
  }

  .story-line--bottom .typing-box {
    width: auto;
  }

  .story-card {
    padding: 28px;
  }

  .faq-main {
    padding: 148px 24px 72px;
  }

  .faq-intro h1 {
    font-size: 40px;
  }

  .faq-question {
    gap: 16px;
    font-size: 19px;
  }

  .faq-section__title {
    font-size: 28px;
  }

  .image-story__content {
    min-height: 720px;
    padding: 120px 24px 56px;
  }

  .cta-band {
    min-height: 500px;
    padding: 0 24px;
  }

  .site-footer {
    min-height: 280px;
  }

  .split-action {
    padding: 36px 24px;
  }

  .next-gate {
    min-height: 500px;
  }

  .detail-main {
    padding: 148px 24px 72px;
  }

  .detail-intro h1 {
    font-size: 40px;
  }

  .detail-image {
    height: 320px;
  }

  .detail-quote {
    padding: 16px 24px;
  }

  .detail-quote blockquote {
    font-size: 30px;
  }
}

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

  .hero-animate,
  .hero-animate--image,
  .reveal,
  .story-card,
  .story-cards-shell {
    opacity: 1;
    transform: none;
  }
}
