:root {
  --bg: #f2efe9;
  --bg-soft: #faf8f4;
  --surface: rgba(255, 255, 255, 0.8);
  --text: #171411;
  --muted: #5d5851;
  --line: rgba(23, 20, 17, 0.08);
  --line-strong: rgba(23, 20, 17, 0.15);
  --accent: #26445b;
  --accent-soft: rgba(38, 68, 91, 0.1);
  --max-width: 1320px;
  --tab-hero-size: clamp(1.98rem, 2.55vw, 2.82rem);
  --tab-section-size: clamp(1.62rem, 2vw, 2.08rem);
  --tab-body-size: clamp(0.99rem, 1vw, 1.05rem);
  --tab-hero-mobile-size: clamp(1.84rem, 5.8vw, 2.34rem);
  --tab-section-mobile-size: clamp(1.4rem, 5.2vw, 1.82rem);
  --mobile-body-size: 1.01rem;
  --mobile-body-line-height: 1.86;
  --mobile-copy-measure: 30ch;
  --body-font: "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --accent-font: "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --latin-font: "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

@font-face {
  font-family: "A2z";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2601-6@1.0/에이투지체-1Thin.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: "A2z";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2601-6@1.0/에이투지체-2ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: "A2z";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2601-6@1.0/에이투지체-3Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "A2z";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2601-6@1.0/에이투지체-4Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "A2z";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2601-6@1.0/에이투지체-5Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "A2z";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2601-6@1.0/에이투지체-6SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "A2z";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2601-6@1.0/에이투지체-7Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "A2z";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2601-6@1.0/에이투지체-8ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "A2z";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2601-6@1.0/에이투지체-9Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(180deg, #fbfaf7 0%, #f4f1eb 44%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.74;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: normal;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 160px,
      rgba(16, 19, 23, 0.015) 160px,
      rgba(16, 19, 23, 0.015) 161px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 144px,
      rgba(16, 19, 23, 0.008) 144px,
      rgba(16, 19, 23, 0.008) 145px
    );
  content: "";
  pointer-events: none;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 24px 32px 18px;
  color: rgba(255, 255, 255, 0.94);
  transition:
    background-color 220ms ease,
    backdrop-filter 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.page-brand .site-header {
  color: var(--text);
}

.site-header.is-scrolled,
.page-brand .site-header {
  background: rgba(251, 251, 252, 0.88);
  color: var(--text);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(9, 9, 11, 0.06);
}

.site-header.is-scrolled .brandmark__logo,
.site-header.is-menu-open .brandmark__logo,
.page-brand .brandmark__logo {
  filter: none;
}

.site-header::after {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.08));
  content: "";
}

.page-brand .site-header::after {
  background: linear-gradient(90deg, rgba(9, 9, 11, 0.16), rgba(9, 9, 11, 0.04));
}

.site-header.is-scrolled::after {
  background: linear-gradient(90deg, rgba(9, 9, 11, 0.16), rgba(9, 9, 11, 0.04));
}

.brandmark {
  display: grid;
  flex: 0 0 auto;
  gap: 4px;
}

.brandmark__logo {
  display: block;
  width: auto;
  height: 2.08rem;
  filter: brightness(0) invert(1);
  transition:
    filter 220ms ease,
    opacity 220ms ease;
}

.brandmark__en {
  font-family: var(--latin-font);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  opacity: 0.72;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin-left: auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: -0.004em;
}

.site-nav a {
  opacity: 0.84;
  transition: opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.site-nav a[aria-current="page"] {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  padding: 112px 0 28px;
  overflow: clip;
}

.hero__media,
.hero__veil,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.3) contrast(0.9) brightness(0.52);
  transform: scale(1.03);
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.84) 0%, rgba(8, 10, 13, 0.56) 34%, rgba(8, 10, 13, 0.14) 68%),
    linear-gradient(180deg, rgba(8, 10, 13, 0.08), rgba(8, 10, 13, 0.4));
}

.hero__grid {
  background: none;
  pointer-events: none;
}

.hero__layout {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, var(--max-width));
  min-height: calc(100svh - 260px);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  max-width: 35rem;
  padding: 36px 0 144px;
  align-content: start;
  color: rgba(255, 255, 255, 0.98);
}

.hero__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--latin-font);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.hero h1 {
  margin: 0;
  max-width: none;
  font-family: "A2z", var(--body-font);
  font-size: clamp(2.65rem, 4.2vw, 4.15rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.04em;
  word-break: keep-all;
  text-indent: -0.035em;
}

.hero h1 span {
  display: block;
}

.hero h1 span + span {
  margin-top: 0.08em;
}

.hero__body {
  max-width: 32rem;
  margin: 0;
  font-family: var(--body-font);
  font-size: clamp(0.98rem, 0.95vw, 1.02rem);
  font-weight: 400;
  line-height: 1.82;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.76);
}

.hero__rail {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 10px;
}

.hero__rail-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__rail-item span {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--latin-font);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hero__rail-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.66;
  letter-spacing: -0.008em;
}

.section {
  width: min(100% - 64px, var(--max-width));
  margin: 0 auto;
  padding: 124px 0 0;
  position: relative;
  z-index: 1;
}

.section-label {
  margin: 0;
  color: var(--accent);
  text-indent: -0.02em;
  font-family: var(--body-font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.006em;
}

.contact-section .section-label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: -0.004em;
}

.manifesto {
  display: grid;
  gap: 40px;
}

.process-step__eng,
.service-card__title,
.manifesto-card__glyph {
  display: block;
}

.process-step__eng,
.service-card__title {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto__header h2,
.process-section__heading h2,
.services-section__intro h2,
.contact-section__inner h2 {
  margin: 16px 0 0;
  max-width: 12ch;
  font-family: var(--body-font);
  font-size: clamp(1.82rem, 2.6vw, 2.9rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.032em;
}

.contact-section__inner h2 {
  max-width: none;
}

.manifesto__header h2 {
  max-width: 16ch;
}

.contact-title__line,
.manifesto-title__line,
.process-title__line,
.service-copy__line,
.services-title__line {
  display: block;
}

.contact-title__line,
.manifesto-title__line {
  white-space: nowrap;
}

.manifesto__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.manifesto__header {
  display: grid;
  gap: 0;
  max-width: 28rem;
  position: sticky;
  top: 116px;
}

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

.manifesto-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(9, 9, 11, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(106, 114, 124, 0.08), transparent 64%);
  box-shadow: 0 18px 30px rgba(13, 17, 23, 0.04);
}

.manifesto-card::before {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 78px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.manifesto-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 100%;
  padding-top: 24px;
}

.manifesto-card__glyph {
  flex: 0 0 auto;
  color: rgba(86, 92, 99, 0.24);
  font-family: "Songti SC", "AppleMyungjo", "Noto Serif KR", "Nanum Myeongjo", serif;
  font-size: clamp(5rem, 7vw, 6.4rem);
  font-weight: 500;
  line-height: 0.88;
}

.manifesto-card__pill,
.process-card__body h3,
.service-card strong,
.contact-link {
  display: block;
  margin: 0 0 12px;
  font-size: clamp(1.14rem, 1.34vw, 1.36rem);
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -0.03em;
}

.manifesto-card__pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  margin-bottom: 0;
  padding: 7px 12px;
  border: 1px solid rgba(9, 9, 11, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.manifesto-card__pill span {
  font-size: 0.78rem;
  font-weight: 450;
  color: rgba(82, 90, 99, 0.74);
}

.manifesto-card__pill strong {
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--text);
}

.manifesto__body {
  display: grid;
  gap: 14px;
  max-width: 64rem;
  padding: 26px 0 0;
  border-top: 1px solid var(--line-strong);
}

.manifesto-card p,
.manifesto__body p,
.process-card__body p,
.service-card p,
.contact-section__inner p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.82;
  letter-spacing: -0.01em;
}

.manifesto__body p {
  max-width: 60rem;
}

.manifesto__lead,
.process-section__lead {
  max-width: 29rem;
  margin: 22px 0 0;
  color: var(--muted) !important;
  font-size: clamp(0.98rem, 0.98vw, 1.03rem) !important;
  font-weight: 400;
  line-height: 1.82 !important;
  letter-spacing: -0.01em !important;
}

.text-line {
  display: block;
}

.process-section__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

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

.process-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: none;
  box-shadow: none;
}

.process-card::before {
  display: none;
}

.process-card__index {
  display: block;
  margin-bottom: 0;
  padding-top: 6px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-family: var(--latin-font);
}

.process-card__body {
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
}

.process-card__body h3 {
  margin: 0;
  font-size: clamp(1.3rem, 1.55vw, 1.48rem);
  line-height: 1.3;
}

.process-section__heading {
  max-width: 28rem;
}

.services-section__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.services-section__intro {
  margin-bottom: 0;
  position: sticky;
  top: 116px;
  max-width: 23rem;
}

.services-section__intro h2 {
  max-width: none;
  margin: 14px 0 0;
}

.services-grid {
  display: grid;
  gap: 14px;
  margin-top: 0;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px 28px;
  border: 1px solid rgba(9, 9, 11, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(106, 114, 124, 0.08), transparent 64%);
}

.service-card strong {
  margin-bottom: 0;
  font-family: var(--body-font);
  font-size: clamp(1.22rem, 1.4vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.service-card p {
  max-width: 26ch;
  font-size: clamp(0.95rem, 0.96vw, 1rem);
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: rgba(82, 90, 99, 0.92);
}

.process-section__body {
  width: min(100% - 64px, var(--max-width));
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.contact-section {
  width: 100%;
  margin-top: 116px;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(12, 15, 19, 0.98), rgba(16, 20, 24, 0.94)),
    linear-gradient(180deg, rgba(106, 114, 124, 0.16), transparent);
}

.contact-section__inner {
  width: min(100% - 64px, var(--max-width));
  margin: 0 auto;
  padding: 64px 0 72px;
  border-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 56px;
  align-items: end;
}

.contact-section__copy {
  max-width: 44rem;
}

.contact-section__copy h2 {
  margin-bottom: 24px;
}

.contact-link {
  margin-top: 0;
  color: rgba(247, 248, 250, 0.96);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}

.contact-link--button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  margin-bottom: 0;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.contact-link--button:hover,
.contact-link--button:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

.contact-link--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(247, 248, 250, 0.76);
}

.site-footer {
  width: 100%;
  padding: 22px 0 30px;
  background: #12161a;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(100% - 64px, var(--max-width));
  margin: 0 auto;
  color: rgba(246, 240, 233, 0.62);
  font-size: 0.76rem;
  line-height: 1.6;
}

.site-footer__inner strong {
  color: rgba(246, 240, 233, 0.88);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-footer__inner a {
  color: inherit;
}

.site-footer__inner span {
  margin-left: 0;
}

.kidesign-preview {
  display: grid;
  min-height: calc(100svh - 72px);
  padding: 156px 32px 92px;
  align-items: center;
  background:
    linear-gradient(rgba(248, 247, 244, 0.88) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 247, 244, 0.88) 1px, transparent 1px),
    linear-gradient(135deg, #fbfaf7 0%, #f5f1ea 52%, #ebe5dc 100%);
  background-size: 14vw 14vw, 14vw 14vw, auto;
}

.kidesign-preview__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.78fr);
  gap: 72px;
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.kidesign-preview__copy {
  max-width: 520px;
}

.kidesign-preview__eyebrow {
  color: var(--accent);
  font-family: var(--latin-font);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.kidesign-preview h1 {
  margin-top: 22px;
  color: var(--text);
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.018em;
}

.kidesign-preview__copy > p {
  max-width: 26rem;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.78;
}

.kidesign-preview__copy > span {
  display: inline-flex;
  margin-top: 42px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 19, 23, 0.18);
  color: rgba(16, 19, 23, 0.52);
  font-family: var(--latin-font);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.kidesign-preview__visual {
  display: grid;
  place-items: center;
}

.kidesign-preview__board {
  position: relative;
  display: grid;
  width: min(100%, 430px);
  aspect-ratio: 0.82;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 23, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38)),
    #f4eee5;
  box-shadow: 0 34px 80px rgba(41, 35, 28, 0.16);
}

.kidesign-preview__board::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(16, 19, 23, 0.1);
  content: "";
}

.kidesign-preview__board::after {
  position: absolute;
  right: -18%;
  bottom: -12%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(180, 154, 122, 0.18);
  content: "";
}

.kidesign-preview__swatches {
  position: absolute;
  left: 34px;
  bottom: 34px;
  display: flex;
  gap: 8px;
}

.kidesign-preview__swatches span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(16, 19, 23, 0.12);
}

.kidesign-preview__swatches span:nth-child(1) {
  background: #11161a;
}

.kidesign-preview__swatches span:nth-child(2) {
  background: #d8c3a5;
}

.kidesign-preview__swatches span:nth-child(3) {
  background: #f8f4ed;
}

.contact-title__line:first-child::before {
  content: "";
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

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

.contact-section .section-label,
.contact-section__inner h2,
.contact-section__inner p {
  color: rgba(247, 248, 250, 0.9);
}

.contact-section .section-label {
  color: rgba(247, 248, 250, 0.5);
}

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

  .site-nav a,
  .reveal,
  .waf-b2c-ribbon,
  .waf-b2c-hero__art img,
  .waf-b2c-world__panel--offset,
  .waf-b2c-world__panel--full,
  .waf-b2c-product__art img,
  .waf-b2c-contact__line {
    transition: none;
    animation: none;
  }

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

@media (max-width: 1120px) {
  .kidesign-preview__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .kidesign-preview__copy {
    max-width: 760px;
  }

  .hero__layout,
  .manifesto__layout,
  .process-section__layout,
  .services-section__layout,
  .manifesto__grid {
    grid-template-columns: 1fr;
  }

  .manifesto__body {
    max-width: 100%;
  }

  .process-grid {
    gap: 0;
  }

  .services-section__intro,
  .manifesto__header {
    position: static;
    max-width: 100%;
  }

  .process-card__body {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-copy__line,
  .services-title__line,
  .contact-title__line,
  .manifesto-title__line {
    white-space: normal;
  }
}

@media (max-width: 820px) {
  .kidesign-preview {
    min-height: auto;
    padding: 120px 20px 64px;
  }

  .kidesign-preview__inner {
    gap: 36px;
  }

  .kidesign-preview h1 {
    font-size: 3rem;
    line-height: 1.12;
  }

  .kidesign-preview__copy > p {
    font-size: 1rem;
    line-height: 1.78;
  }

  .kidesign-preview__copy > span {
    margin-top: 30px;
  }

  .kidesign-preview__board {
    width: min(100%, 340px);
    padding: 26px;
  }

  .page-home .manifesto-title__line,
  .page-home .process-title__line,
  .page-home .services-title__line,
  .page-home .contact-title__line,
  .page-home .text-line,
  .page-home .service-copy__line {
    display: inline;
    white-space: normal;
  }

  .page-home .manifesto-title__line + .manifesto-title__line::before,
  .page-home .process-title__line + .process-title__line::before,
  .page-home .services-title__line + .services-title__line::before,
  .page-home .contact-title__line + .contact-title__line::before,
  .page-home .text-line + .text-line::before,
  .page-home .service-copy__line + .service-copy__line::before {
    content: " ";
  }

  :root {
    --tab-hero-mobile-size: clamp(1.98rem, 8.2vw, 2.76rem);
    --tab-section-mobile-size: clamp(1.48rem, 6.2vw, 2rem);
    --tab-body-size: 1rem;
  }

  body {
    font-size: 15.5px;
    line-height: 1.78;
    letter-spacing: -0.008em;
    line-break: auto;
  }

  .site-header {
    padding: 18px 20px 14px;
  }

  .site-header::after {
    left: 20px;
    right: 20px;
  }

  .site-header.is-menu-open {
    background: rgba(244, 246, 248, 0.94);
    color: var(--text);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 28px rgba(24, 28, 32, 0.08);
  }

  .brandmark__logo {
    height: 1.74rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 14px 20px;
    border: 1px solid rgba(24, 28, 32, 0.1);
    background: rgba(244, 246, 248, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 36px rgba(24, 28, 32, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 10px 8px;
    color: var(--text);
    opacity: 1;
  }

  .manifesto-card__pill {
    margin-bottom: 4px;
    padding: 4px 8px 5px;
  }

  .manifesto-card__pill span {
    font-size: 0.8rem;
  }

  .manifesto-card__pill strong {
    font-size: 0.86rem;
  }

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

  .hero__content {
    max-width: 100%;
    padding: 26px 0 96px;
    gap: 18px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2rem, 8.8vw, 2.7rem);
    line-height: 1.18;
    letter-spacing: -0.034em;
  }

  .hero__body {
    max-width: 26ch;
    font-size: var(--mobile-body-size);
    line-height: var(--mobile-body-line-height);
    white-space: normal;
  }

  .hero__layout,
  .hero__rail,
  .section,
  .process-section__body,
  .contact-section,
  .contact-section__inner {
    width: calc(100% - 40px);
  }

  .hero__layout {
    min-height: auto;
  }

  .hero__rail {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section {
    padding-top: 96px;
  }

  .manifesto__header h2,
  .process-section__heading h2,
  .services-section__intro h2,
  .contact-section__inner h2 {
    max-width: 100%;
    font-size: clamp(1.72rem, 7vw, 2.35rem);
    line-height: 1.3;
    letter-spacing: -0.028em;
  }

  .contact-section__inner h2 {
    font-size: clamp(1.56rem, 6vw, 2rem);
    line-height: 1.24;
  }

  .manifesto-card {
    min-height: 0;
  }

  .manifesto-card__head {
    gap: 12px;
  }

  .manifesto-card__glyph {
    font-size: clamp(5.4rem, 20vw, 7rem);
  }

  .services-title__line,
  .process-title__line {
    white-space: normal;
  }

  .process-grid {
    gap: 0;
  }

  .process-card {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 20px 0;
  }

  .process-card__index {
    padding-top: 0;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card strong {
    font-size: 1.28rem;
    line-height: 1.42;
  }

  .service-card p {
    max-width: none;
  }

  .contact-section {
    margin-top: 32px;
    padding-top: 0;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .contact-section__inner {
    padding: 24px 0 30px;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .contact-link {
    justify-self: start;
  }

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

  .site-footer {
    padding: 18px 0 24px;
  }

  .site-footer__inner {
    width: calc(100% - 40px);
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 0.72rem;
  }

  .site-footer__inner span {
    width: 100%;
    margin-left: 0;
  }

  .manifesto__lead,
  .process-section__lead,
  .manifesto-card p,
  .manifesto__body p,
  .process-card__body p,
  .service-card p,
  .contact-section__inner p,
  .overview-hero__body,
  .tab-panel__lead p,
  .tab-panel__body p,
  .overview-points li,
  .espresso-intro__body,
  .waf-b2b-hero__body,
  .espresso-process__lead,
  .espresso-ritual__intro p,
  .espresso-evidence__intro p,
  .espresso-axis__content p,
  .waf-b2b-section-head p:not(.section-label),
  .waf-b2b-scope__copy p,
  .waf-b2b-summary__item p,
  .espresso-process__focus-body,
  .espresso-step__detail,
  .espresso-evidence__summary-item p,
  .waf-b2b-pillar p,
  .waf-b2b-scope__item p,
  .waf-b2b-value__item p,
  .waf-b2b-value__note,
  .waf-b2c-hero__tag,
  .waf-b2c-world__headline p,
  .waf-b2c-product__header p,
  .waf-b2c-list li,
  .waf-b2c-contact__body p,
  .waf-story__manifesto {
    max-width: var(--mobile-copy-measure);
    font-size: var(--mobile-body-size);
    line-height: var(--mobile-body-line-height);
    line-break: auto;
    text-wrap: auto;
  }
}

@media (min-width: 641px) and (max-width: 820px) {
  .hero h1,
  .sub-hero h1 {
    max-width: none;
  }

  .hero__body,
  .manifesto__lead,
  .process-section__lead,
  .contact-section__inner p,
  .overview-hero__body,
  .tab-panel__lead p,
  .tab-panel__body p,
  .overview-points li,
  .espresso-intro__body,
  .waf-b2b-hero__body,
  .espresso-process__lead,
  .espresso-ritual__intro p,
  .espresso-evidence__intro p,
  .espresso-axis__content p,
  .waf-b2b-section-head p:not(.section-label),
  .waf-b2b-scope__copy p,
  .waf-b2b-summary__item p,
  .espresso-process__focus-body,
  .espresso-step__detail,
  .espresso-evidence__summary-item p,
  .waf-b2b-pillar p,
  .waf-b2b-scope__item p,
  .waf-b2b-value__item p,
  .waf-b2b-value__note,
  .waf-b2c-hero__tag,
  .waf-b2c-world__headline p,
  .waf-b2c-product__header p,
  .waf-b2c-list li,
  .waf-b2c-contact__body p,
  .waf-story__manifesto {
    max-width: 42ch;
  }
}

@media (max-width: 900px) {
  .espresso-intro,
  .espresso-axis__content,
  .waf-b2b-hero__copy,
  .overview-hero__content,
  .waf-b2b-summary__item p {
    max-width: none;
  }

  .espresso-intro h1,
  .waf-b2b-hero__copy h1,
  .espresso-process__heading h2,
  .espresso-ritual__intro h2,
  .espresso-evidence__intro h2,
  .waf-b2b-section-head h2,
  .espresso-axis__content h2,
  .overview-hero__content h1,
  .overview-tabs__header h2,
  .waf-b2c-world__headline h2,
  .waf-b2c-product__header h2 {
    max-width: none;
    text-wrap: unset;
  }

  .espresso-intro__body,
  .waf-b2b-hero__body,
  .espresso-process__lead,
  .espresso-ritual__intro p,
  .espresso-evidence__intro p,
  .espresso-axis__content p,
  .waf-b2b-section-head p:not(.section-label),
  .waf-b2b-scope__copy p,
  .waf-b2b-summary__item p,
  .espresso-process__focus-body,
  .espresso-step__detail,
  .espresso-evidence__summary-item p,
  .waf-b2b-pillar p,
  .waf-b2b-scope__item p,
  .waf-b2b-value__item p,
  .waf-b2b-value__note,
  .waf-b2c-hero__tag,
  .waf-b2c-world__headline p,
  .waf-b2c-product__header p,
  .waf-b2c-list li,
  .waf-b2c-contact__body p,
  .waf-story__manifesto,
  .overview-hero__body,
  .tab-panel__lead p,
  .tab-panel__body p,
  .overview-points li {
    max-width: none;
    text-wrap: unset;
  }

  .waf-b2b-hero__copy h1 br,
  .waf-b2b-hero__body br {
    display: none;
  }
}

.sub-hero {
  position: relative;
  min-height: 72svh;
  padding: 136px 32px 48px;
  overflow: clip;
}

.sub-hero__media,
.sub-hero__veil {
  position: absolute;
  inset: 0;
}

.sub-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(0.9) brightness(0.9);
}

.sub-hero__veil {
  background:
    linear-gradient(180deg, rgba(245, 241, 234, 0.76), rgba(245, 241, 234, 0.92)),
    linear-gradient(90deg, rgba(251, 248, 243, 0.72), rgba(251, 248, 243, 0.24));
}

.sub-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  max-width: 42rem;
  padding-top: min(18vh, 140px);
}

.sub-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.sub-hero__body {
  margin: 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.14vw, 1.14rem);
  line-height: 1.82;
}

.page-brand--waf-overview {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.68), transparent 28%),
    linear-gradient(180deg, #f6f5f2 0%, #edeef0 42%, var(--bg) 100%);
}

.overview-top-tabs {
  width: min(100% - 64px, var(--max-width));
  margin: 0 auto;
  padding: 124px 0 12px;
}

.overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 36px;
  width: min(100% - 64px, var(--max-width));
  margin: 0 auto;
  min-height: 72svh;
  padding: 144px 0 48px;
  align-items: end;
}

.overview-hero__content {
  display: grid;
  gap: 18px;
  max-width: 44rem;
}

.overview-hero__content h1,
.brand-story__header h2,
.overview-tabs__header h2,
.waf-b2c-manifesto__copy h2,
.waf-b2c-product__header h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.038em;
}

.overview-hero__body {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.84;
}

.overview-hero__actions {
  display: flex;
  gap: 12px;
}

.overview-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.overview-hero__aside {
  display: grid;
  gap: 12px;
  align-self: center;
  justify-items: end;
}

.overview-hero__aside span {
  color: var(--accent);
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1;
}

.overview-tabs__header {
  max-width: 42rem;
}

.tab-shell {
  margin-top: 34px;
}

.tab-shell--top {
  margin-top: 0;
}

.tab-list {
  display: flex;
  gap: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.tab-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.004em;
  cursor: pointer;
  padding: 0 0 10px;
}

.tab-button.is-active {
  color: var(--text);
  box-shadow: inset 0 -1px 0 var(--accent);
}

.tab-panel {
  padding-top: 18px;
}

#panel-freeze-coffee {
  padding-top: 30px;
}

#panel-freeze-coffee > .waf-story > .waf-b2b-hero:first-child {
  padding-top: 0;
  border-top: 0;
}

.tab-panel[hidden] {
  display: none;
}

.overview-tab-panel {
  display: grid;
  gap: 8px;
}

.overview-hero--tab {
  width: 100%;
  min-height: auto;
  padding: 28px 0 40px;
}

.overview-tab-detail {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.tab-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 36px;
}

.tab-panel__lead h3 {
  margin: 0 0 14px;
  font-size: clamp(1.46rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.03em;
}

.tab-panel__lead p,
.tab-panel__body p,
.overview-points li {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.82;
  letter-spacing: -0.01em;
}

.tab-panel__body {
  display: grid;
  gap: 18px;
}

.overview-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.waf-story {
  display: grid;
  gap: 72px;
  padding: 28px 0 112px;
}

.espresso-intro h1,
.waf-b2b-hero__copy h1,
.espresso-process__heading h2,
.espresso-ritual__intro h2,
.espresso-evidence__intro h2,
.waf-b2b-section-head h2,
.espresso-axis__content h2,
.espresso-process__focus h3,
.espresso-step strong,
.espresso-evidence__summary-item strong,
.espresso-evidence__partners strong,
.waf-b2b-summary__item strong {
  word-break: keep-all;
  line-break: strict;
  text-wrap: balance;
}

.espresso-intro__body,
.waf-b2b-hero__body,
.espresso-process__lead,
.espresso-ritual__intro p,
.espresso-evidence__intro p,
.espresso-axis__content p,
.waf-b2b-section-head p:not(.section-label),
.waf-b2b-scope__copy p,
.waf-b2b-summary__item p,
.espresso-process__focus-body,
.espresso-step__detail,
.espresso-evidence__summary-item p,
.waf-b2b-pillar p,
.waf-b2b-scope__item p,
.waf-b2b-value__item p,
.waf-b2b-value__note {
  word-break: keep-all;
  line-break: strict;
  text-wrap: pretty;
}

.waf-b2b-hero,
.waf-b2b-pillars,
.waf-b2b-scope,
.waf-b2b-value,
.waf-b2b-gallery {
  display: grid;
  gap: 28px;
}

.waf-b2b-hero {
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.waf-b2b-pillars,
.waf-b2b-scope,
.waf-b2b-value,
.waf-b2b-gallery {
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
}

.waf-b2b-hero__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.waf-b2b-hero__copy,
.waf-b2b-section-head,
.waf-b2b-scope__copy {
  display: grid;
  gap: 16px;
}

.waf-b2b-hero__copy {
  max-width: 38rem;
}

.waf-b2b-hero__copy h1,
.waf-b2b-section-head h2 {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.036em;
}

.waf-b2b-hero__copy h1 {
  max-width: none;
  font-size: var(--tab-hero-size);
  line-height: 1.38;
}

.waf-b2b-hero__body,
.waf-b2b-section-head p:not(.section-label),
.waf-b2b-scope__copy p,
.waf-b2b-summary__item p,
.waf-b2b-pillar p,
.waf-b2b-scope__item p,
.waf-b2b-value__item p,
.waf-b2b-value__note {
  margin: 0;
  color: rgba(23, 20, 17, 0.74);
  font-size: var(--tab-body-size);
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.waf-b2b-hero__copy .section-label,
.waf-b2b-section-head .section-label {
  margin: 0;
  color: rgba(104, 84, 60, 0.76);
}

.waf-b2b-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-self: start;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(23, 20, 17, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 240, 231, 0.88));
  box-shadow: 0 18px 40px rgba(23, 20, 17, 0.05);
}

.waf-b2b-summary__item,
.waf-b2b-pillar,
.waf-b2b-scope__item,
.waf-b2b-value__item {
  display: grid;
  gap: 14px;
}

.waf-b2b-summary__item {
  align-content: start;
  min-height: 100%;
  min-height: 360px;
  padding: 30px 28px 32px;
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.waf-b2b-summary__item + .waf-b2b-summary__item {
  border-left: 1px solid rgba(23, 20, 17, 0.08);
}

.waf-b2b-summary__item::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: rgba(113, 87, 56, 0.58);
}

.waf-b2b-summary__item::after {
  display: none;
}

.waf-b2b-summary__item span,
.waf-b2b-pillar span {
  color: rgba(23, 20, 17, 0.46);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.waf-b2b-summary__item strong,
.waf-b2b-pillar strong,
.waf-b2b-scope__item strong,
.waf-b2b-value__item strong {
  color: var(--text);
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.46;
}

.waf-b2b-summary__item p {
  max-width: none;
  margin-top: 6px;
  font-size: 0.98rem;
  line-height: 1.9;
}

.waf-b2b-section-head {
  max-width: 38rem;
}

.waf-b2b-section-head h2 {
  max-width: 34rem;
  font-size: var(--tab-section-size);
  line-height: 1.46;
}

.waf-b2b-pillars__grid,
.waf-b2b-value__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.waf-b2b-pillar,
.waf-b2b-scope__item,
.waf-b2b-value__item {
  min-height: 100%;
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 251, 246, 0.84);
  box-shadow: 0 12px 24px rgba(23, 20, 17, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.waf-b2b-pillar {
  position: relative;
}

.waf-b2b-pillar::before,
.waf-b2b-value__item::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 6px;
  border-radius: 999px;
  background: rgba(113, 87, 56, 0.62);
}

.waf-b2b-pillar:hover,
.waf-b2b-pillar:focus-within,
.waf-b2b-scope__item:hover,
.waf-b2b-scope__item:focus-within,
.waf-b2b-value__item:hover,
.waf-b2b-value__item:focus-within {
  border-color: rgba(113, 87, 56, 0.16);
  box-shadow: 0 14px 24px rgba(65, 49, 31, 0.06);
}

.waf-b2b-scope__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  gap: 30px;
  align-items: start;
}

.waf-b2b-scope__copy {
  max-width: 38rem;
}

.waf-b2b-scope__list {
  display: grid;
  gap: 12px;
}

.waf-b2b-scope__item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 239, 228, 0.84));
}

.waf-b2b-value__item {
  background: rgba(255, 249, 243, 0.86);
}

.waf-b2b-value__note {
  max-width: 56rem;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

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

.waf-b2b-gallery__asset {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(23, 20, 17, 0.06);
  cursor: zoom-in;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.waf-b2b-gallery__asset img {
  display: block;
  width: 100%;
  height: auto;
}

.waf-b2b-gallery__asset:hover,
.waf-b2b-gallery__asset:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(23, 20, 17, 0.1);
}

.waf-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(12, 15, 19, 0.82);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.waf-gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.waf-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.waf-gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100vw - 80px), 1120px);
  height: min(82vh, 920px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.waf-gallery-lightbox__frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.waf-gallery-lightbox__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.waf-gallery-lightbox__close,
.waf-gallery-lightbox__nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(246, 240, 233, 0.96);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.waf-gallery-lightbox__close:hover,
.waf-gallery-lightbox__close:focus-visible,
.waf-gallery-lightbox__nav:hover,
.waf-gallery-lightbox__nav:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.waf-gallery-lightbox__close {
  top: 14px;
  right: 14px;
}

.waf-gallery-lightbox__nav--prev {
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

.waf-gallery-lightbox__nav--next {
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

@keyframes wafNetworkPulse {
  0% {
    opacity: 0;
    transform: translateX(0);
  }

  12% {
    opacity: 1;
  }

  78% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(calc(100% - 14px));
  }
}

.espresso-story {
  display: grid;
  gap: 0;
}

.espresso-section {
  padding: 124px 0 0;
}

.espresso-identity {
  padding-top: 56px;
  min-height: auto;
  display: grid;
  align-items: start;
}

.espresso-identity__frame {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: 0 0 36px;
}

.espresso-intro {
  display: grid;
  gap: 10px;
  max-width: 31rem;
  position: sticky;
  top: 116px;
}

.espresso-axis__index {
  margin: 0;
  color: var(--accent);
  font-family: var(--latin-font);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.espresso-intro h1 {
  margin: 0;
  max-width: none;
  font-size: var(--tab-hero-size);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.036em;
}

.espresso-intro__body {
  margin: 6px 0 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: var(--tab-body-size);
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.espresso-axis-list {
  display: grid;
  gap: 0;
}

.espresso-axis {
  display: grid;
  grid-template-columns: minmax(132px, 168px) minmax(0, 1fr);
  gap: 18px 28px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line-strong);
}

.espresso-axis__head {
  display: grid;
  gap: 8px;
  align-content: start;
}

.espresso-axis__meta {
  margin: 0;
  color: rgba(86, 92, 99, 0.72);
  font-family: var(--latin-font);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.espresso-axis__content {
  display: grid;
  gap: 10px;
  max-width: 39rem;
}

.espresso-axis__content h2 {
  margin: 0;
  max-width: 28rem;
  font-size: clamp(1.32rem, 1.56vw, 1.52rem);
  font-weight: 600;
  line-height: 1.44;
  letter-spacing: -0.026em;
}

.espresso-axis__content p,
.espresso-axis__summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.espresso-axis__summary {
  max-width: 32rem;
  padding-top: 12px;
  color: var(--body);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-left: 18px;
}

.espresso-axis__summary::before {
  position: absolute;
  top: 1.05em;
  left: 0;
  width: 8px;
  height: 1px;
  background: currentColor;
  content: "";
}

.espresso-axis--innovation {
  position: relative;
  isolation: isolate;
  padding: 26px 0;
  border-top-color: transparent;
  background: transparent;
}

.espresso-axis--innovation::before {
  position: absolute;
  inset: 0 -28px;
  background: linear-gradient(180deg, rgba(31, 24, 18, 0.98), rgba(55, 42, 31, 0.94));
  content: "";
  z-index: -1;
}

.espresso-axis--innovation .espresso-axis__index {
  color: rgba(220, 193, 158, 0.78);
}

.espresso-axis--innovation .espresso-axis__meta {
  color: rgba(220, 193, 158, 0.6);
}

.espresso-axis--innovation .espresso-axis__content h2,
.espresso-axis--innovation .espresso-axis__summary {
  color: rgba(255, 255, 255, 0.94);
}

.espresso-axis--innovation .espresso-axis__content p {
  color: rgba(255, 255, 255, 0.7);
}

.espresso-process {
  display: grid;
  gap: 40px;
}

.espresso-process__heading h2,
.espresso-ritual__intro h2,
.espresso-evidence__intro h2 {
  margin: 14px 0 0;
  max-width: 34rem;
  font-size: var(--tab-section-size);
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: -0.036em;
}

.espresso-process__heading h2 {
  max-width: 36rem;
}

.espresso-process__heading > h2:first-child,
.espresso-evidence__intro > h2:first-child {
  margin-top: 0;
}

.espresso-evidence__intro h2 {
  max-width: 35rem;
}

.espresso-process__lead,
.espresso-ritual__intro p,
.espresso-evidence__intro p,
.espresso-chapter p,
.espresso-evidence__summary-item p {
  margin: 0;
  color: var(--muted);
  font-size: var(--tab-body-size);
  line-height: 1.8;
  letter-spacing: -0.01em;
}

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

.espresso-chapter {
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.espresso-chapter span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: var(--latin-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.espresso-chapter strong,
.espresso-evidence__summary-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.12rem, 1.24vw, 1.28rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.03em;
}

.espresso-process__track {
  min-height: 190svh;
}

.espresso-process__sticky {
  position: sticky;
  top: 220px;
}

.espresso-process__surface {
  position: relative;
  --espresso-process-shift-y: 18px;
  min-height: clamp(520px, 63svh, 650px);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 38% 45%, rgba(210, 188, 149, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(245, 241, 234, 0.94) 38%, rgba(235, 227, 216, 0.86));
  overflow: hidden;
  isolation: isolate;
}

.espresso-process__line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translateY(var(--espresso-process-shift-y));
}

.espresso-process__path {
  fill: none;
  stroke: rgba(16, 19, 23, 0.56);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.espresso-process__ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(139, 108, 66, 0.14), transparent 28%),
    radial-gradient(circle at 80% 72%, rgba(197, 165, 119, 0.18), transparent 30%);
  opacity: 0.9;
  pointer-events: none;
}

.espresso-process__focus {
  position: absolute;
  top: 50%;
  right: 8%;
  z-index: 2;
  width: min(24vw, 320px);
  min-width: 286px;
  min-height: 332px;
  padding: 34px 30px 32px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(23, 20, 17, 0.08);
  background: rgba(255, 249, 241, 0.92);
  box-shadow: 0 24px 56px rgba(53, 39, 24, 0.12);
  border-radius: 28px;
  transform: translateY(-50%);
}

.espresso-process__focus-index {
  margin-top: 0;
  color: rgba(122, 92, 58, 0.16);
  font-family: var(--accent-font);
  font-size: clamp(4rem, 5.8vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.espresso-process__focus h3 {
  margin: 2px 0 0;
  color: var(--text);
  font-size: clamp(1.4rem, 1.65vw, 1.68rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.espresso-process__focus-body {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.92;
  letter-spacing: -0.014em;
  max-width: none;
}

.espresso-step {
  position: absolute;
  display: grid;
  gap: 8px;
  width: min(15.5vw, 182px);
  padding: 16px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 238, 230, 0.72)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 14px 30px rgba(16, 19, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease,
    background 220ms ease;
  opacity: 0.56;
}

.espresso-step.is-active {
  opacity: 1;
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(176, 142, 95, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 240, 229, 0.88)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 24px 60px rgba(114, 83, 48, 0.18),
    0 0 0 1px rgba(187, 151, 108, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.espresso-step--one {
  top: calc(7% + var(--espresso-process-shift-y));
  left: 4%;
}

.espresso-step--two {
  top: calc(7% + var(--espresso-process-shift-y));
  left: 22%;
}

.espresso-step--three {
  top: calc(7% + var(--espresso-process-shift-y));
  left: 40%;
}

.espresso-step--four {
  top: calc(46% + var(--espresso-process-shift-y));
  left: 40%;
  min-height: 228px;
}

.espresso-step--five {
  top: calc(46% + var(--espresso-process-shift-y));
  left: 22%;
  min-height: 228px;
}

.espresso-step--six {
  top: calc(46% + var(--espresso-process-shift-y));
  left: 4%;
  min-height: 228px;
}

.espresso-step__index {
  color: var(--accent);
  font-family: var(--latin-font);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.espresso-step__eyebrow {
  color: rgba(107, 85, 58, 0.72);
  font-family: var(--latin-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.espresso-step__icon {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 2px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.98), rgba(239, 232, 221, 0.88) 68%, rgba(223, 208, 189, 0.48));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 10px 20px rgba(16, 19, 23, 0.08);
  overflow: hidden;
}

.espresso-step__icon svg,
.espresso-step__icon canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.espresso-step__icon svg {
  fill: none;
  stroke: rgba(16, 19, 23, 0.78);
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
  z-index: 2;
}

.espresso-step__canvas {
  opacity: 0;
  transition: opacity 220ms ease;
}

.espresso-step--five.is-active .espresso-step__canvas {
  opacity: 1;
}

.espresso-step__icon--fd::after {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 146, 93, 0.28), transparent 64%);
  opacity: 0;
  transform: scale(0.72);
  transition: transform 240ms ease, opacity 240ms ease;
  content: "";
}

.espresso-step--five.is-active .espresso-step__icon--fd::after {
  opacity: 1;
  transform: scale(1.08);
}

.espresso-step__burst {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 0, rgba(16, 19, 23, 0.18), transparent 18%),
    radial-gradient(circle at 100% 38%, rgba(16, 19, 23, 0.18), transparent 16%),
    radial-gradient(circle at 18% 76%, rgba(16, 19, 23, 0.18), transparent 16%);
  opacity: 0;
  transform: scale(0.6);
  transition: transform 220ms ease, opacity 220ms ease;
  z-index: 1;
}

.espresso-step--three.is-active .espresso-step__burst {
  opacity: 1;
  transform: scale(1.05);
}

.espresso-step strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.espresso-step--four strong,
.espresso-step--five strong,
.espresso-step--six strong {
  display: block;
  margin-top: 14px;
  min-height: 3.2em;
}

.espresso-step--four strong {
  max-width: none;
  font-size: 0.88rem;
  line-height: 1.36;
  letter-spacing: -0.026em;
}

.espresso-step__detail,
.espresso-step__note {
  display: none;
  margin: 0;
}

.espresso-step__detail {
  color: rgba(23, 20, 17, 0.74);
  font-size: 0.9rem;
  line-height: 1.72;
  letter-spacing: -0.01em;
}

.espresso-step__note {
  padding-top: 10px;
  border-top: 1px solid rgba(23, 20, 17, 0.08);
  color: rgba(23, 20, 17, 0.92);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.espresso-step__halo,
.espresso-step__ring,
.espresso-step__beam,
.espresso-step__scan {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.espresso-step__halo--origin {
  background:
    radial-gradient(circle at 50% 34%, rgba(190, 150, 92, 0.32), transparent 32%),
    radial-gradient(circle at 58% 72%, rgba(214, 180, 130, 0.2), transparent 30%);
  transform: scale(0.8);
}

.espresso-step__ring::before,
.espresso-step__ring::after {
  position: absolute;
  border: 1px solid rgba(173, 138, 93, 0.34);
  border-radius: 50%;
  content: "";
}

.espresso-step__ring::before {
  inset: 14px;
}

.espresso-step__ring::after {
  inset: 24px;
}

.espresso-step__beam {
  background: linear-gradient(180deg, rgba(198, 167, 122, 0), rgba(198, 167, 122, 0.28), rgba(198, 167, 122, 0));
  transform: translateY(-30%);
}

.espresso-step__scan::before,
.espresso-step__scan::after {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 1px;
  background: rgba(170, 137, 94, 0.36);
  content: "";
}

.espresso-step__scan::before {
  top: 28px;
}

.espresso-step__scan::after {
  top: 42px;
}

.espresso-step--one.is-active .espresso-step__halo,
.espresso-step--two.is-active .espresso-step__ring,
.espresso-step--four.is-active .espresso-step__beam,
.espresso-step--six.is-active .espresso-step__scan {
  opacity: 1;
  transform: none;
}

.espresso-ritual {
  margin-top: 72px;
  --ritual-tone: #000;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 88px 0;
  background: #000;
}

.espresso-ritual__intro {
  width: min(100% - 64px, var(--max-width));
  margin: 0 auto;
  text-align: center;
}

.espresso-ritual__intro .section-label {
  color: rgba(224, 201, 173, 0.44);
}

.espresso-ritual__intro h2,
.espresso-ritual__intro p {
  color: rgba(255, 255, 255, 0.92);
}

.espresso-ritual__intro h2 {
  margin-inline: auto;
}

.espresso-ritual__intro p {
  max-width: 34rem;
  color: rgba(245, 235, 224, 0.68);
  margin-inline: auto;
}

.espresso-ritual__stage {
  width: 100%;
  margin: 0;
}

.espresso-ritual__mask {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  min-height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  box-shadow: none;
  --ritual-progress: 0;
}

.espresso-ritual__mask::before,
.espresso-ritual__mask::after {
  display: none;
}

.espresso-ritual__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: grayscale(100%) contrast(122%) brightness(72%);
  transform: none;
  transform-origin: center;
}

.espresso-ritual__metrics {
  display: none;
}

.espresso-evidence {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
}

.espresso-evidence__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.espresso-evidence__summary-item {
  display: grid;
  gap: 10px;
  min-height: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.espresso-evidence__intro p {
  max-width: 56rem;
}

.espresso-evidence__partners {
  margin-top: 18px;
  padding-top: 0;
  border-top: 0;
  text-align: center;
}

.espresso-evidence__partners strong {
  display: block;
  color: rgba(86, 92, 99, 0.82);
  font-size: clamp(1.12rem, 1.24vw, 1.28rem);
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: -0.03em;
}

.espresso-logo-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 18px;
  padding-top: 0;
  border-top: 0;
  gap: 18px 14px;
  align-items: stretch;
}

.espresso-logo-wall__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 14px 10px;
  border: 1px solid rgba(9, 9, 11, 0.08);
  background: rgba(248, 245, 240, 0.82);
}

.espresso-logo-wall__item img {
  display: block;
  max-width: 84%;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.15);
}

.espresso-logo-wall__item--wide img {
  max-width: 88%;
  max-height: 36px;
}

.espresso-logo-wall__item--ralph-coffee img {
  max-width: 96%;
  max-height: 58px;
}

.espresso-logo-wall__item--smallmark img {
  max-width: 52%;
  max-height: 44px;
}

.espresso-logo-wall__item--flush img {
  max-width: 92%;
  max-height: 46px;
}

.espresso-logo-wall__item--lightmark img {
  mix-blend-mode: normal;
  filter: brightness(0) saturate(100%);
}

.espresso-logo-wall__item--crop-left img {
  width: 88%;
  height: 38px;
  object-fit: cover;
  object-position: left center;
}

.espresso-logo-wall__item--mark img {
  max-width: 58%;
  max-height: 52px;
}

.espresso-logo-wall__item--tallmark img {
  max-width: 44%;
  max-height: 56px;
}

.espresso-logo-wall__item.is-broken img {
  display: none;
}

.espresso-logo-wall__item.is-broken::after {
  content: attr(data-label);
  color: rgba(16, 19, 23, 0.84);
  font-family: var(--latin-font);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
}

.page-brand--waf-b2c {
  background: #000;
  color: #f6f0e9;
}

.page-brand--waf-b2c::before {
  display: none;
}

.page-brand--waf-b2c .site-header {
  color: #fa452c;
}

.page-brand--waf-b2c .site-header::after {
  background: linear-gradient(90deg, rgba(250, 69, 44, 0.56), rgba(250, 69, 44, 0.08));
}

.page-brand--waf-b2c .section-label {
  color: #9ab5fd;
}

.waf-b2c-main {
  overflow: hidden;
}

.waf-b2c-hero,
.waf-b2c-world,
.waf-b2c-product,
.waf-b2c-contact {
  position: relative;
}

.waf-b2c-hero {
  padding: 138px 0 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(87, 84, 251, 0.24), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(250, 69, 44, 0.2), transparent 24%),
    #000;
}

.waf-b2c-hero__copy,
.waf-b2c-world__headline,
.waf-b2c-product__header,
.waf-b2c-contact__body {
  position: relative;
  z-index: 3;
  width: min(100% - 64px, var(--max-width));
  margin: 0 auto;
}

.waf-b2c-hero__copy {
  display: grid;
  gap: 18px;
  max-width: 28rem;
  margin-bottom: 28px;
}

.waf-b2c-hero__eyebrow {
  margin: 0;
  color: #9ab5fd;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waf-b2c-hero__copy h1 {
  margin: 0;
  color: #fa452c;
  font-size: clamp(6rem, 19vw, 15rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.1em;
}

.waf-b2c-hero__tag,
.waf-b2c-world__headline p,
.waf-b2c-product__header p,
.waf-b2c-list li,
.waf-b2c-contact__body p {
  margin: 0;
  color: rgba(246, 240, 233, 0.84);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.82;
  letter-spacing: -0.01em;
}

.waf-b2c-hero__tag {
  max-width: 24rem;
  font-size: clamp(1.12rem, 1.4vw, 1.36rem);
  font-weight: 600;
  line-height: 1.6;
}

.waf-b2c-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.waf-b2c-hero__chips span {
  padding: 8px 14px;
  border: 1px solid rgba(246, 240, 233, 0.16);
  border-radius: 999px;
  color: rgba(246, 240, 233, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.waf-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.waf-shape {
  fill: var(--waf-panel-bg, #97b0f6);
  stroke: #000;
  stroke-width: 10;
  stroke-linejoin: round;
}

.waf-accent {
  fill: #ff462d;
  stroke: #000;
  stroke-width: 10;
  stroke-linejoin: round;
}

.waf-eye,
.waf-nose {
  fill: #000;
}

.waf-scribble {
  fill: none;
  stroke: #000;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waf-poster {
  position: relative;
  width: min(100% - 64px, calc(var(--max-width) + 80px));
  margin: 0 auto;
}

.waf-b2c-poster {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(220px, 0.72fr);
  gap: 18px;
  width: min(100% - 64px, calc(var(--max-width) + 120px));
  margin: 0 auto;
  padding-bottom: 36px;
}

.waf-poster-card {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.68);
  background: #97b0f6;
}

.waf-poster-card--logo {
  min-height: 720px;
}

.waf-poster-card--tall {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 100%;
}

.waf-poster-card--text,
.waf-poster-card--wide,
.waf-poster-card--w {
  min-height: 240px;
}

.waf-poster-card--text {
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.waf-poster-card--text p {
  margin: 0;
  color: #ff462d;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.waf-poster-card--wide {
  display: grid;
  place-items: end center;
  min-height: 340px;
}

.waf-poster-card--w {
  display: grid;
  place-items: center;
}

.waf-poster-card--w span {
  color: #ff462d;
  font-size: clamp(12rem, 24vw, 22rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.12em;
}

.waf-wordmark {
  position: absolute;
  inset: 24px 24px 12px;
  color: #ff462d;
  font-size: clamp(12rem, 23vw, 25rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.12em;
}

.waf-poster-dog {
  display: block;
  width: 100%;
  height: 100%;
}

.waf-poster-dog--tall {
  width: 86%;
  margin: 0 auto;
}

.waf-poster-dog--wide {
  width: 78%;
  margin: 0 auto;
}

.waf-b2c-ribbon,
.waf-b2c-contact__marquee {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(246, 240, 233, 0.1);
  border-bottom: 1px solid rgba(246, 240, 233, 0.1);
}

.waf-b2c-ribbon {
  margin-top: -1px;
  background: #000;
}

.waf-b2c-ribbon__line {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: wafMarquee 16s linear infinite;
}

.waf-b2c-ribbon span,
.waf-b2c-contact__line span {
  font-size: clamp(1.4rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.waf-b2c-ribbon__line span:nth-child(4n + 1),
.waf-b2c-contact__line span:nth-child(4n + 1) {
  color: #fa452c;
}

.waf-b2c-ribbon__line span:nth-child(4n + 2),
.waf-b2c-contact__line span:nth-child(4n + 2) {
  color: #9ab5fd;
}

.waf-b2c-ribbon__line span:nth-child(4n + 3),
.waf-b2c-contact__line span:nth-child(4n + 3) {
  color: #5754fb;
}

.waf-b2c-ribbon__line span:nth-child(4n),
.waf-b2c-contact__line span:nth-child(4n) {
  color: #f6f0e9;
}

.waf-b2c-world {
  padding: 120px 0 160px;
  background:
    radial-gradient(circle at 82% 22%, rgba(250, 69, 44, 0.3), transparent 24%),
    #5754fb;
}

.waf-b2c-world__headline {
  display: grid;
  gap: 14px;
  max-width: 34rem;
  margin-bottom: 40px;
}

.waf-b2c-world__headline h2,
.waf-b2c-product__header h2,
.waf-b2c-contact__body h2 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.08em;
}

.waf-b2c-world__canvas {
  position: relative;
  width: min(100% - 64px, calc(var(--max-width) + 120px));
  min-height: 760px;
  margin: 0 auto;
}

.waf-b2c-world__statement {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(246, 240, 233, 0.14);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.1em;
}

.waf-b2c-world__dog {
  position: absolute;
  border: 2px solid rgba(0, 0, 0, 0.68);
  background: #97b0f6;
}

.waf-b2c-world__dog--square {
  top: 10%;
  left: 2%;
  width: min(20vw, 250px);
  aspect-ratio: 1;
  --waf-panel-bg: #5e56fb;
  animation: wafFloat 7.4s ease-in-out infinite;
}

.waf-b2c-world__dog--tall {
  top: 8%;
  right: 8%;
  width: min(16vw, 180px);
  aspect-ratio: 0.62;
  --waf-panel-bg: #ff462d;
  animation: wafFloat 6.6s ease-in-out infinite -1.6s;
}

.waf-b2c-world__dog--wide {
  left: 18%;
  bottom: 4%;
  width: min(44vw, 520px);
  aspect-ratio: 1.48;
  --waf-panel-bg: #97b0f6;
  animation: wafFloat 8.8s ease-in-out infinite -2.2s;
}

.waf-b2c-product {
  padding: 132px 0 140px;
  background:
    radial-gradient(circle at 14% 28%, rgba(246, 240, 233, 0.18), transparent 18%),
    #fa452c;
}

.waf-b2c-product__header {
  display: grid;
  gap: 16px;
  max-width: 38rem;
}

.waf-b2c-product__header .section-label,
.waf-b2c-product__header p {
  color: #000;
}

.waf-b2c-product__header h2 {
  color: #000;
}

.waf-b2c-product__art {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.7fr);
  gap: 18px;
  width: min(100% - 64px, calc(var(--max-width) + 120px));
  margin: 48px auto 0;
}

.waf-product-panel {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.68);
  background: #97b0f6;
}

.waf-product-panel--main {
  min-height: 420px;
  display: grid;
  place-items: center;
}

.waf-product-panel--main .waf-poster-dog {
  width: 74%;
}

.waf-product-panel--side {
  display: grid;
  place-items: end center;
  min-height: 420px;
  --waf-panel-bg: #ff462d;
}

.waf-product-panel--side .waf-poster-dog {
  width: 82%;
}

.waf-product-panel__label {
  position: absolute;
  top: 18px;
  left: 18px;
  color: #000;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waf-b2c-list {
  display: grid;
  gap: 12px;
  width: min(100% - 64px, var(--max-width));
  margin: -40px auto 0;
  padding-left: 18px;
}

.waf-b2c-list li {
  color: rgba(0, 0, 0, 0.82);
}

.waf-b2c-contact {
  padding: 0 0 96px;
  background: #000;
}

.waf-b2c-contact__marquee {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(246, 240, 233, 0.1);
  border-bottom: 1px solid rgba(246, 240, 233, 0.1);
}

.waf-b2c-contact__line {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: wafMarquee 18s linear infinite;
}

.waf-b2c-contact__body {
  display: grid;
  gap: 16px;
  padding-top: 80px;
  max-width: 34rem;
}

.waf-b2c-contact__body h2 {
  color: #fa452c;
}

@keyframes wafFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
}

@keyframes wafBlink {
  0%,
  44%,
  48%,
  100% {
    transform: scaleY(1);
  }
  46% {
    transform: scaleY(0.12);
  }
}

@keyframes wafWag {
  0%,
  100% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(4px) scale(1.05);
  }
}

@keyframes wafMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-24%);
  }
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
}

.brand-story__body {
  display: grid;
  gap: 18px;
}

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

.brand-signature__item {
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
}

.brand-signature__item span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.brand-signature__item strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.18rem, 1.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.brand-signature__item p,
.brand-story__body p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.84;
  letter-spacing: -0.01em;
}

.page-brand--waf-b2c .brand-story__header h2,
.page-brand--waf-b2c .contact-section__inner h2 {
  color: #fa452c;
}

.page-brand--waf-b2c .brand-story__body p,
.page-brand--waf-b2c .brand-signature__item p,
.page-brand--waf-b2c .contact-section__inner p {
  color: rgba(246, 240, 233, 0.78);
}

.page-brand--waf-b2c .brand-signature__item,
.page-brand--waf-b2c .contact-section__inner {
  border-top-color: rgba(250, 69, 44, 0.24);
}

.page-brand--waf-b2c .brand-signature__item span {
  color: #9ab5fd;
}

.page-brand--waf-b2c .brand-signature__item strong,
.page-brand--waf-b2c .contact-link {
  color: #f6f0e9;
}

.page-brand--waf-b2c .contact-link {
  color: #fa452c;
}

@media (max-width: 1120px) {
  .overview-hero,
  .tab-panel__grid,
  .espresso-process__chapters,
  .espresso-evidence__summary,
  .brand-story,
  .brand-signature__grid,
  .espresso-identity__frame,
  .waf-b2b-hero__main,
  .waf-b2b-scope__layout,
  .waf-chapter,
  .waf-story__hero-grid,
  .waf-story__hero-footer,
  .waf-chapter__body,
  .waf-story__closing {
    grid-template-columns: 1fr;
  }

  .espresso-axis {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .espresso-intro {
    position: static;
    max-width: 100%;
  }

  .espresso-ritual {
    padding: 56px 0 56px;
  }

  .espresso-ritual__stage {
    margin-top: 24px;
  }

  .espresso-ritual__mask {
    min-height: clamp(320px, 56vh, 520px);
  }

  .espresso-ritual__video {
    object-position: center 10%;
    transform: scale(calc(1.08 + var(--ritual-progress) * 0.04));
  }

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

  .espresso-process__track {
    min-height: auto;
  }

  .espresso-process__sticky {
    position: static;
  }

  .espresso-process__surface {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 22px;
  }

  .espresso-process__ambient,
  .espresso-process__focus,
  .espresso-process__line {
    display: none;
  }

  .espresso-step {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 100%;
    padding: 18px 18px 20px;
    transform: none;
    opacity: 1;
  }

  .espresso-step.is-active {
    transform: none;
  }

  .espresso-step__detail {
    display: block;
  }

  .espresso-step__note {
    display: none;
  }

  .waf-b2c-world__panel--full {
    width: min(82vw, 1040px);
  }

  .waf-b2c-world__panel--offset {
    width: min(42vw, 520px);
  }

  .waf-b2b-pillars__grid,
  .waf-b2b-value__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waf-b2b-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waf-b2b-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waf-b2b-gallery__asset,
  .waf-b2b-gallery__asset--poster,
  .waf-b2b-gallery__asset--object,
  .waf-b2b-gallery__asset--pack,
  .waf-b2b-gallery__asset--scene,
  .waf-b2b-gallery__asset--cup,
  .waf-b2b-gallery__asset--drink,
  .waf-b2b-gallery__asset--set,
  .waf-b2b-gallery__asset--set-alt {
    grid-column: auto;
  }

  .waf-story__chapter-preview,
  .waf-story__closing-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    margin-top: 84px;
  }

  .contact-section__inner {
    width: min(100% - 56px, var(--max-width));
    padding: 52px 0 56px;
    gap: 20px 40px;
  }

  .contact-section__copy h2 {
    margin-bottom: 18px;
  }
}

@media (max-width: 960px) {
  .contact-section {
    margin-top: 48px;
    padding-top: 0;
  }

  .contact-section__inner {
    width: min(100% - 48px, 920px);
    padding: 32px 0 36px;
    gap: 16px;
    align-items: start;
  }

  .contact-section__copy {
    max-width: none;
  }

  .contact-section__inner h2 {
    font-size: clamp(1.7rem, 4.8vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .contact-section__inner p {
    max-width: 30ch;
  }
}

@media (max-width: 820px) {
  .overview-top-tabs {
    width: calc(100% - 40px);
    padding: 108px 0 14px;
  }

  .sub-hero {
    min-height: 58svh;
    padding: 112px 20px 36px;
  }

  .sub-hero__content {
    padding-top: 84px;
  }

  .sub-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.25rem, 11vw, 3.6rem);
    line-height: 1.1;
  }

  .page-brand--waf-b2c .sub-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.3rem);
  }

  .overview-hero {
    width: 100%;
    min-height: auto;
    padding: 28px 0 28px;
    gap: 18px;
  }

  .overview-hero__content h1,
  .overview-tabs__header h2,
  .waf-b2c-world__headline h2,
  .waf-b2c-product__header h2 {
    font-size: clamp(1.76rem, 7.6vw, 2.55rem);
    line-height: 1.28;
  }

  .overview-hero__aside {
    justify-items: start;
  }

  .tab-list {
    width: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 4px 0 18px;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .tab-list::-webkit-scrollbar {
    display: none;
  }

  .tab-button {
    flex: 0 0 auto;
    text-align: left;
    font-size: 0.98rem;
    white-space: nowrap;
  }

  .waf-story {
    gap: 42px;
    padding-bottom: 72px;
  }

  .waf-b2b-hero,
  .waf-b2b-pillars,
  .waf-b2b-scope,
  .waf-b2b-value,
  .waf-b2b-gallery {
    gap: 20px;
    padding-top: 22px;
  }

  .waf-b2b-hero__copy h1 {
    font-size: var(--tab-hero-mobile-size);
  }

  .waf-b2b-section-head h2 {
    max-width: none;
    font-size: var(--tab-section-mobile-size);
  }

  .waf-b2b-hero__main,
  .waf-b2b-pillars__grid,
  .waf-b2b-scope__layout,
  .waf-b2b-value__grid,
  .waf-b2b-gallery__grid {
    grid-template-columns: 1fr;
  }

  .waf-b2b-summary {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }

  .waf-b2b-summary__item {
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 240, 231, 0.9));
    border: 1px solid var(--line);
    box-shadow: 0 14px 28px rgba(23, 20, 17, 0.05);
  }

  .waf-b2b-summary__item + .waf-b2b-summary__item {
    border-left: 0;
  }

  .waf-b2b-summary__item,
  .waf-b2b-pillar,
  .waf-b2b-scope__item,
  .waf-b2b-value__item {
    padding: 20px;
  }

  .waf-b2b-gallery__asset {
    border-radius: 18px;
  }

  .waf-gallery-lightbox {
    padding: 16px;
  }

  .waf-gallery-lightbox__frame {
    padding: 0;
    border-radius: 0;
  }

  .waf-gallery-lightbox__dialog {
    width: min(calc(100vw - 32px), 1120px);
    height: min(74vh, 620px);
  }

  .waf-gallery-lightbox__image {
    border-radius: 0;
  }

  .waf-gallery-lightbox__close,
  .waf-gallery-lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .waf-gallery-lightbox__nav--prev {
    left: 10px;
  }

  .waf-gallery-lightbox__nav--next {
    right: 10px;
  }

  .waf-story__hero-band,
  .waf-story__hero-grid,
  .waf-story__hero-footer,
  .waf-chapter__band,
  .waf-chapter__body,
  .waf-story__closing {
    padding-left: 20px;
    padding-right: 20px;
  }

  .waf-story__hero-band {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .waf-story__hero-grid {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .waf-story__hero-copy h1,
  .waf-story__closing-copy h2 {
    font-size: clamp(1.92rem, 7vw, 2.55rem);
  }

  .waf-story__manifesto {
    font-size: 1.02rem;
    line-height: 1.84;
  }

  .waf-story__chapter-preview,
  .waf-story__closing-summary,
  .waf-touchpoints__grid {
    grid-template-columns: 1fr;
  }

  .waf-chapter {
    gap: 18px;
  }

  .waf-chapter__band {
    position: static;
    padding-top: 20px;
  }

  .waf-chapter__body {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .waf-chapter__band h2 {
    font-size: clamp(1.56rem, 6.6vw, 2.1rem);
  }

  .waf-chapter__band h2 span {
    width: 100%;
  }

  .waf-chapter__quote {
    font-size: clamp(1.1rem, 4.8vw, 1.36rem);
  }

  .waf-network {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 18px;
  }

  .waf-network__route,
  .waf-network__pulse {
    display: none;
  }

  .waf-network__node {
    position: relative;
    width: 100%;
    inset: auto;
    transform: none;
  }

  .waf-layers {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .waf-layer {
    position: relative;
    width: 100%;
    inset: auto;
    transform: none;
  }

  .waf-chapter--consumption.is-visible .waf-layer {
    transform: none;
  }

  .espresso-section {
    padding-top: 22px;
  }

  .espresso-identity {
    min-height: auto;
  }

  .espresso-identity__frame {
    gap: 24px;
    padding: 0 0 12px;
  }

  .espresso-intro {
    position: static;
    max-width: 100%;
    gap: 10px;
    padding: 0 0 14px;
    border-bottom: 1px solid var(--line-strong);
  }

  .espresso-intro h1 {
    max-width: none;
    font-size: clamp(1.92rem, 7.6vw, 2.45rem);
    line-height: 1.26;
  }

  .espresso-intro__body {
    max-width: none;
    font-size: var(--tab-body-size);
    line-height: var(--mobile-body-line-height);
  }

  .espresso-axis-list {
    gap: 12px;
  }

  .espresso-axis {
    gap: 10px;
    padding: 18px 16px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 240, 231, 0.88));
    box-shadow: 0 12px 28px rgba(23, 20, 17, 0.05);
  }

  .espresso-axis__head {
    gap: 4px;
  }

  .espresso-axis__content h2 {
    max-width: none;
    font-size: clamp(1.18rem, 4.9vw, 1.42rem);
    line-height: 1.36;
  }

  .espresso-axis__content p,
  .espresso-axis__summary {
    font-size: var(--mobile-body-size);
    line-height: var(--mobile-body-line-height);
  }

  .espresso-axis--innovation {
    padding: 18px 16px 20px;
    border: 0;
  }

  .espresso-axis--innovation::before {
    inset: 0;
    border-radius: 18px;
  }

  .espresso-process__surface {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 14px;
    border: 0;
    background: none;
  }

  .espresso-step {
    gap: 10px;
    padding: 18px 16px 18px;
    border-radius: 18px;
    border-color: rgba(23, 20, 17, 0.08);
    box-shadow: 0 12px 24px rgba(23, 20, 17, 0.05);
  }

  .espresso-step.is-active {
    transform: none;
  }

  .espresso-step__icon {
    width: 60px;
    height: 60px;
    border-radius: 22px;
  }

  .espresso-step strong {
    font-size: 1rem;
    line-height: 1.38;
  }

  .espresso-step__detail {
    font-size: 0.92rem;
    line-height: 1.76;
  }

  .espresso-evidence {
    gap: 28px;
  }

  .espresso-evidence__summary,
  .espresso-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .espresso-evidence__summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .espresso-evidence__summary-item {
    gap: 8px;
    padding: 16px 16px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
  }

  .espresso-evidence__partners {
    margin-top: 14px;
    padding-top: 0;
  }

  .espresso-evidence__partners strong {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.38;
  }

  .espresso-logo-wall {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    gap: 10px;
  }

  .espresso-logo-wall__item {
    min-height: 72px;
    padding: 10px 8px;
  }

  .espresso-ritual {
    margin-top: 36px;
    padding: 40px 0;
  }

  .espresso-ritual__intro,
  .espresso-ritual__stage {
    width: 100%;
  }

  .espresso-ritual__mask {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .espresso-ritual__video {
    object-position: center center;
    transform: none;
  }

  .espresso-ritual__intro h2 {
    max-width: none;
    font-size: clamp(1.26rem, 5.4vw, 1.6rem);
    font-weight: 300;
    line-height: 1.42;
    letter-spacing: -0.024em;
  }

  .waf-b2c-hero {
    padding: 112px 0 0;
  }

  .waf-b2c-poster,
  .waf-b2c-world__canvas,
  .waf-b2c-product__art {
    width: calc(100% - 40px);
  }

  .waf-b2c-hero__copy h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
    line-height: 0.94;
    letter-spacing: -0.08em;
  }

  .waf-b2c-poster {
    grid-template-columns: 1fr;
  }

  .waf-poster-card--logo {
    min-height: 360px;
  }

  .waf-poster-card--tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .waf-wordmark {
    font-size: clamp(6rem, 24vw, 10rem);
  }

  .waf-b2c-world {
    padding: 88px 0 96px;
  }

  .waf-b2c-world__canvas {
    min-height: 520px;
  }

  .waf-b2c-world__dog--square {
    width: 30%;
  }

  .waf-b2c-world__dog--tall {
    width: 22%;
  }

  .waf-b2c-world__dog--wide {
    width: 62%;
    left: 10%;
  }

  .waf-b2c-product__art {
    grid-template-columns: 1fr;
  }

  .waf-b2c-list,
  .waf-b2c-world__headline,
  .waf-b2c-product__header,
  .waf-b2c-contact__body,
  .waf-b2c-hero__copy {
    width: calc(100% - 40px);
  }

  .waf-b2c-contact__body {
    padding-top: 56px;
  }

  .espresso-story {
    gap: 28px;
  }

  .espresso-section {
    padding-top: 0;
  }

  .espresso-identity {
    padding-top: 8px;
  }

  .espresso-process,
  .espresso-evidence {
    padding-top: 28px;
    border-top: 1px solid var(--line-strong);
  }
}

@media (prefers-reduced-motion: reduce) {
  .waf-b2b-pillar,
  .waf-b2b-scope__item,
  .waf-b2b-value__item,
  .waf-touchpoints__item,
  .waf-network__route,
  .waf-network__pulse,
  .waf-layer {
    transition: none;
    animation: none;
  }

  .waf-network__route {
    transform: none;
  }

  .waf-network__pulse::before {
    animation: none;
  }

  .waf-layer,
  .waf-chapter--consumption.is-visible .waf-layer {
    transform: none;
  }
}
