:root {
  --ink: #201b17;
  --ink-soft: #5C4C3D;
  --paper: #f4eee4;
  --paper-bright: #fffaf2;
  --milk: #faf6ed;
  --clay: #816348;
  --clay-dark: #4f3929;
  --line: #cdbda8;
  --mist: rgb(255 250 242 / 0.74);
  --heading: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", system-ui, sans-serif;
  --wrap: min(1180px, calc(100vw - 48px));
  --radius: 28px;
  --shadow: 0 30px 90px rgb(52 38 26 / 0.18);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgb(255 250 242 / 0.9), transparent 28rem),
    radial-gradient(circle at 78% 32%, rgb(198 169 130 / 0.22), transparent 30rem),
    linear-gradient(180deg, #f9f4eb 0%, #eee3d5 48%, #f7f0e6 100%);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

body.is-pointer .cursor {
  opacity: 1;
}

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

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

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

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

h1,
h2 {
  font-family: var(--heading);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  font-size: clamp(5.2rem, 14vw, 14rem);
}

h1 span {
  display: block;
  padding-left: clamp(2rem, 12vw, 9rem);
}

h2 {
  font-size: clamp(3.2rem, 6.8vw, 7.2rem);
}

h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--ink-soft);
}
.underline{text-decoration:underline;}

.line-field {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100vw;
  height: 100vh;
  opacity: 0.55;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, rgb(32 27 23 / 0.035), transparent 38%),
    radial-gradient(circle, rgb(32 27 23 / 0.085) 0.7px, transparent 0.8px);
  background-size: auto, 13px 13px;
  mix-blend-mode: multiply;
  opacity: 0.36;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 18px;
  height: 18px;
  pointer-events: none;
  border: 1px solid rgb(32 27 23 / 0.58);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition:
    width 180ms ease,
    height 180ms ease,
    opacity 180ms ease,
    border-color 180ms ease;
}

.cursor.is-active {
  width: 56px;
  height: 56px;
  border-color: rgb(129 99 72 / 0.38);
}

.progress-rail {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: 3px;
  height: 100vh;
  background: rgb(129 99 72 / 0.12);
}

.progress-rail span {
  display: block;
  width: 100%;
  height: 0;
  background: var(--clay);
}

.section-shell {
  width: var(--wrap);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--wrap);
  padding: 0.8rem 1rem;
  background: rgb(255 250 242 / 0.66);
  border: 1px solid rgb(205 189 168 / 0.5);
  border-radius: 999px;
  box-shadow: 0 18px 54px rgb(63 44 29 / 0.1);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand span {
  display: grid;
  gap: 0.05rem;
}

.brand strong {
  font-family: var(--heading);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 0.9;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.6rem);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
   margin-right:24px;
}

.site-header nav a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-header nav a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.site-menu-toggle {
  display: none;
}

.site-nav__close {
  display: none;
}

.site-menu-checkbox {
  display: none;
}

.kicker {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  min-height: 100vh;
  min-height: 100svh;
  padding-block: 9rem 5rem;
}
.hero h1{line-height:0.88em;margin-top:1rem;}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__lead {
  max-width: 620px;
  margin-top:1rem;
  color: var(--ink);
  font-family: var(--heading);
  font-size: clamp(1.7rem, 2.4vw, 2.65rem);
  line-height: 1.15;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-top: 2rem;
}

.hero__deliverables-mobile {
  display: none;
}

.hero__product-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  max-width: 680px;
  margin: 1.1rem 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
  list-style: none;
}

.hero__product-line li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.hero__product-line li + li::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 1rem;
  content: "";
  background: rgb(129 99 72 / 0.48);
  border-radius: 999px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 1.2rem 1.8rem;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.55rem;
  isolation: isolate;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(120deg, rgb(255 255 255 / 0.18), transparent 32%, rgb(255 255 255 / 0.24));
  opacity: 0;
  transition: opacity 220ms ease;
}

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

.button:hover::before {
  opacity: 1;
}

.button--primary {
  color: #fff8ed;
  background: var(--clay);
  box-shadow: 0 16px 40px rgb(129 99 72 / 0.32);
}

.button--ghost {
  color: var(--ink);
  background: rgb(255 250 242 / 0.58);
  border: 1px solid rgb(129 99 72 / 0.36);
}

.button--secondary {
  color: var(--ink);
  background: rgb(255 250 242 / 0.66);
  border: 1px solid rgb(129 99 72 / 0.28);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
  outline: 1px dashed rgb(129 99 72 / 0.38);
  transform: none;
}

.button.is-loading:disabled {
  cursor: progress;
  opacity: 0.88;
}

.button__spinner {
  display: none;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-right: 0.45rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
}

.button.is-loading .button__spinner {
  display: inline-block;
  animation: button-spinner 820ms linear infinite;
}

.button.is-loading .button__icon {
  display: none;
}

@keyframes button-spinner {
  to {
    transform: rotate(1turn);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button.is-loading .button__spinner {
    animation: none;
  }
}

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

.hero__stage {
  position: relative;
  min-height: min(68vw, 720px);
}

.hero__orb {
  position: absolute;
  inset: 12% 8% auto auto;
  width: min(38vw, 480px);
  aspect-ratio: 1;
  border: 1px solid rgb(129 99 72 / 0.22);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgb(255 250 242 / 0.5),
    0 40px 120px rgb(129 99 72 / 0.18);
}

.hero__orb::before,
.hero__orb::after {
  position: absolute;
  inset: 11%;
  content: "";
  border: 1px solid rgb(129 99 72 / 0.18);
  border-radius: 48% 52% 43% 57%;
  animation: drift 18s linear infinite;
}

.hero__orb::after {
  inset: 22%;
  animation-duration: 12s;
  animation-direction: reverse;
}

.hero__photo {
  position: absolute;
  right: 0;
  top: 12%;
  width: min(52vw, 620px);
  height: min(54vw, 660px);
  object-fit: cover;
  object-position: 62% center;
  border-radius: 42px;
}

.hero__cover {
  position: absolute;
  left: 0;
  bottom: -4%;
  width: min(24vw, 260px);
  filter: drop-shadow(0 28px 34px rgb(52 38 26 / 0.22));
  transform: rotate(-8deg);
}

.hero__floating-note {
  position: absolute;
  right: 4%;
  bottom: 2%;
  max-width: 200px;
  padding: 1rem;
  color: var(--ink);
  background: rgb(255 250 242 / 0.72);
  border: 1px solid rgb(255 250 242 / 0.8);
  border-radius: 20px;
  font-family: var(--heading);
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 600;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.deliverable-strip {
  position: relative;
  z-index: 2;
  padding-bottom:3rem;
  background:
    radial-gradient(circle at 18% 0%, rgb(255 250 242 / 0.72), transparent 24rem),
}

.deliverable-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.deliverable-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 1vw, 1.35rem);
  min-height: 88px;
  padding: 1rem clamp(1rem, 2vw, 2.2rem);
  border-left: 1px solid rgb(205 189 168 / 0.58);
}

.deliverable-strip__item:first-child {
  border-left: 0;
}

.deliverable-strip__item img {
  width: clamp(34px, 3.4vw, 48px);
  height: clamp(34px, 3.4vw, 48px);
  object-fit: contain;
}

.deliverable-strip__item strong {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.15vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  white-space: nowrap;
}

.deliverable-strip__note {
  padding-top: 1rem;
  color: var(--clay);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.manifest {
  padding-block: clamp(5rem, 12vw, 12rem);
}

.manifest p {
  max-width: 1060px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: clamp(3rem, 7vw, 8.2rem);
  line-height: 0.96;
}

.manifest span {
  color: var(--clay);
  font-style: italic;
}

.atelier {
  position: relative;
  padding-block: 6rem;
  background: #1f1a16;
  color: #fff8ed;
}

.atelier::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 30% 20%, rgb(129 99 72 / 0.36), transparent 28rem),
    linear-gradient(180deg, rgb(255 250 242 / 0.06), transparent);
}

.atelier__inner {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading h2 {
  max-width: 880px;
}

.section-heading p:not(.kicker) {
  max-width: 420px;
}

.section-heading--split {
  grid-template-columns: 0.5fr 1.1fr 0.7fr;
  align-items: end;
}

.section-heading--split .kicker {
  align-self: start;
}

.preview-wall {
  display: flex;
  gap: clamp(0.7rem, 1vw, 1rem);
  align-items: center;
  height: clamp(500px, 42vw, 560px);
  min-height: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0;
  scroll-padding-inline: 1rem;
  scroll-snap-type: x proximity;
}

.preview-wall.is-centering {
  scroll-snap-type: none;
}

.atelier__inner  .product-value p{
  color:rgb(255 248 237 / 0.76);
  text-align: center;
  padding-top: 2rem;
}

.preview-card {
  position: relative;
  flex: 0 0 clamp(300px, 24vw, 300px);
  min-width: 0;
  margin: 0;
  padding: 0.8rem;
  color: inherit;
  font: inherit;
  text-align: left;
  background: linear-gradient(180deg, rgb(255 250 242 / 0.13), rgb(255 250 242 / 0.04));
  border: 1px solid rgb(255 250 242 / 0.16);
  border-radius: 24px;
  cursor: pointer;
  scroll-snap-align: center;
  transform-style: preserve-3d;
  appearance: none;
  transition:
    flex-basis 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.preview-card.is-large {
  z-index: 1;
  flex-basis: clamp(320px, 24vw, 320px);
  background: linear-gradient(180deg, rgb(255 250 242 / 0.18), rgb(255 250 242 / 0.06));
  border-color: rgb(255 250 242 / 0.26);
  box-shadow: 0 28px 80px rgb(0 0 0 / 0.18);
}

.preview-card:hover,
.preview-card:focus-visible {
  border-color: rgb(255 250 242 / 0.34);
  background: linear-gradient(180deg, rgb(255 250 242 / 0.2), rgb(255 250 242 / 0.07));
}

.preview-card:focus-visible {
  outline: 2px solid rgb(255 248 237 / 0.72);
  outline-offset: 4px;
}

.preview-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgb(0 0 0 / 0.22);
}

.preview-card span {
  display: block;
  padding: 0.8rem 0.8rem 0.2rem;
  color: rgb(255 248 237 / 0.76);
  font-weight: 800;
}

.preview-pagination {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  min-height: 24px;
  margin-top: 1rem;
}

.preview-pagination.is-visible {
  display: flex;
}

.preview-pagination button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgb(255 248 237 / 0.34);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  appearance: none;
  transition:
    width 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.preview-pagination button[aria-current="true"] {
  width: 26px;
  background: var(--clay);
}

.preview-pagination button:focus-visible {
  outline: 2px solid rgb(255 248 237 / 0.72);
  outline-offset: 5px;
}

.method {
  padding-block: clamp(6rem, 12vw, 12rem);
}

.method-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-block: 1px solid rgb(205 189 168 / 0.45);
}

.method-list li {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 200px;
  padding: 2rem 1.2rem;
  border-left: 1px solid rgb(205 189 168 / 0.45);
}

.method-list li:first-child {
  border-left: 0;
}

.method-list span {
  color: var(--clay);
  font-family: var(--heading);
  font-size: 3.5rem;
  line-height: 0.8;
}

.method-list strong {
  font-size: 1.05rem;
}

.immersive {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  background: #171310;
}

.immersive__image {
  width: 100%;
  height: 82vh;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.68;
}

.immersive__panel {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 6%;
  max-width: 560px;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: #fff8ed;
  background: rgb(255 250 242 / 0.14);
  border: 1px solid rgb(255 250 242 / 0.22);
  border-radius: 30px;
  box-shadow: 0 30px 90px rgb(0 0 0 / 0.26);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 16px;
}

.immersive__panel h2 {
  font-size: clamp(3rem, 5.6vw, 5.6rem);
}

.immersive__panel p:not(.kicker) {
  color: rgb(255 248 237 / 0.76);
}
.immersive-button{
  display:flex;
  justify-content:left;
  padding:3rem 0;
}
.immersive__cta {
  justify-self: start;
  margin-top: 0.25rem;
}

.for-who {
  padding-block: clamp(6rem, 10vw, 10rem);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgb(205 189 168 / 0.48);
  border-radius: 30px;
  overflow: hidden;
}

.audience-grid article {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  min-height: 170px;
  padding: 2rem;
  background: rgb(255 250 242 / 0.5);
  border-left: 1px solid rgb(205 189 168 / 0.4);
}

.audience-grid article:first-child {
  border-left: 0;
}

.audience-grid img {
  width: 58px;
  height: 58px;
}

.audience-grid h3 {
  font-size: 1.25rem;
}

.audience-pagination {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  min-height: 24px;
  margin-top: 1rem;
}

.audience-pagination.is-visible {
  display: flex;
}

.audience-pagination button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgb(129 99 72 / 0.22);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  appearance: none;
  transition:
    width 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.audience-pagination button[aria-current="true"] {
  width: 26px;
  background: var(--clay);
}

.audience-pagination button:focus-visible {
  outline: 2px solid rgb(129 99 72 / 0.45);
  outline-offset: 5px;
}

.origin {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 0;
  padding-block: 2rem 8rem;
}

.origin__image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: 34px 0 0 34px;
}

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

.origin__quote-card {
  position: absolute;
  left: clamp(1.25rem, 3vw, 2.4rem);
  bottom: clamp(1.25rem, 3vw, 2.4rem);
  width: fit-content;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  background: rgb(255 250 242 / 0.58);
  border: 1px solid rgb(205 189 168 / 0.58);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgb(52 38 26 / 0.18);
  backdrop-filter: blur(18px);
}

.origin__quote-card blockquote {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.origin__quote-card p {
  color: var(--ink-soft);
}

.origin__quote-card strong {
  color: var(--ink);
}

.origin__text {
  display: grid;
  align-content: center;
  gap: 1.4rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--paper-bright);
  border: 1px solid rgb(205 189 168 / 0.48);
  border-left: 0;
  border-radius: 0 34px 34px 0;
}

.origin__text h2 {
  font-size: clamp(3rem, 5vw, 5.6rem);
}

blockquote {
  color: var(--ink);
  font-family: var(--heading);
  font-size: 1.45rem;
  line-height: 1.16;
}

.download {
  padding-block: 0 8rem;
}

.download__card {
  display: grid;
  grid-template-columns: 0.8fr 0.5fr 0.6fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 20%, rgb(129 99 72 / 0.18), transparent 18rem),
    linear-gradient(120deg, #fffaf2, #eadfce);
  border: 1px solid rgb(205 189 168 / 0.58);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.download__card h2 {
  max-width: 560px;
  font-size: clamp(3rem, 4.6vw, 3.6rem);
  margin-top:1rem;
}

.download__card > div:first-child p:not(.kicker) {
  max-width: 520px;
  margin-top: 1rem;
}

.download__card > img {
  width: 260px;
  max-width: min(72vw, 260px);
  filter: drop-shadow(0 26px 34px rgb(52 38 26 / 0.22));
}

.download__actions {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.download-modal {
  width: min(720px, calc(100vw - 2rem));
  max-height: min(86vh, 900px);
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.download-modal::backdrop {
  background: rgb(32 27 23 / 0.42);
  backdrop-filter: blur(8px);
}

.download-modal__panel {
  position: relative;
  display: grid;
  gap: 1.3rem;
  max-height: min(86vh, 900px);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  overflow-y: auto;
  background:
    radial-gradient(circle at 80% 10%, rgb(129 99 72 / 0.13), transparent 16rem),
    linear-gradient(120deg, #fffaf2, #eadfce);
  border: 1px solid rgb(205 189 168 / 0.58);
  border-radius: 30px;
  box-shadow: 0 34px 100px rgb(32 27 23 / 0.28);
}

.download-modal__close {
  position: fixed;
  top: max(1rem, calc((100dvh - min(86dvh, 900px)) / 2 + 1rem));
  right: max(2rem, calc((100vw - 720px) / 2 + 1rem));
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgb(255 250 242 / 0.75);
  border: 1px solid rgb(129 99 72 / 0.24);
  border-radius: 999px;
  cursor: pointer;
}

.download-modal__close::before,
.download-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--ink);
}

.download-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.download-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.download-modal__intro {
  max-width: 560px;
  padding-right: 3rem;
}

.download-modal__intro h2 {
  margin-top: 0.6rem;
  font-size: clamp(2.7rem, 7vw, 4.6rem);
}

.download-modal__intro p:not(.kicker) {
  margin-top: 1rem;
}

.download-form {
  display: grid;
  gap: 1.15rem;
  align-content: start;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.form-status:empty {
  display: none;
}

.form-status {
  color: var(--clay-dark);
  font-weight: 700;
}

.form-status.is-error {
  padding: 0.85rem 1rem;
  color: #7d241d;
  background: rgb(125 36 29 / 0.08);
  border: 1px solid rgb(125 36 29 / 0.24);
  border-radius: 14px;
}

.form-field,
.form-fieldset {
  display: grid;
  gap: 0.45rem;
}

.form-field label,
.form-fieldset legend {
  color: var(--ink);
  font-weight: 800;
}

.form-required-note {
  margin-left: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.78em;
  font-weight: 700;
}

.form-fieldset legend.mb-l {
  margin-bottom: 16px;
}



.form-field input,
.form-field select {
  min-height: 48px;
  width: 100%;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  background: rgb(255 250 242 / 0.86);
  border: 1px solid rgb(129 99 72 / 0.28);
  border-radius: 14px;
  font: inherit;
}

.form-input-shell {
  position: relative;
}

.form-field--with-icon input {
  padding-left: 2.85rem;
}

.form-input-icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 20px;
  height: 20px;
  color: var(--clay);
  pointer-events: none;
  transform: translateY(-50%);
}

.form-input-icon path,
.button__icon path,
.download-form__product svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  background: rgb(255 250 242 / 0.95);
  border-color: #a83a31;
  box-shadow: 0 0 0 3px rgb(168 58 49 / 0.12);
}

.form-fieldset.is-invalid,
.form-checkbox.is-invalid,
.form-section.is-invalid {
  padding: 0.85rem;
  background: rgb(125 36 29 / 0.06);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgb(168 58 49 / 0.28);
}

.form-fieldset.is-invalid legend,
.form-checkbox.is-invalid,
.form-section.is-invalid {
  color: #7d241d;
}

.form-fieldset input[aria-invalid="true"],
.form-checkbox input[aria-invalid="true"],
.form-section input[aria-invalid="true"] {
  outline: 2px solid rgb(168 58 49 / 0.3);
  outline-offset: 3px;
}

.form-error {
  min-height: 1.2rem;
  color: #7d241d;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-error:empty {
  display: none;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-checkbox input:focus-visible,
.form-fieldset input:focus-visible,
.form-section input:focus-visible {
  outline: 2px solid rgb(129 99 72 / 0.58);
  outline-offset: 3px;
}

.form-fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.form-fieldset label,
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 36px;
  color: var(--ink-soft);
  cursor: pointer;
}

.form-fieldset input,
.form-checkbox input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--clay);
}

.form-section {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-block: 1rem;
  color: var(--ink-soft);
  border-top: 1px solid rgb(205 189 168 / 0.5);
}

.form-section--choice {
  cursor: pointer;
}

.form-section__body {
  display: inline;
  min-width: 0;
}

.form-section__body strong,
.form-section__body > strong {
  color: var(--ink);
  font-weight: 800;
}

.form-section__checkbox {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin: 0.15rem 0.5rem 0;
  accent-color: var(--clay);
}

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

.download-form .button {
  min-height: 50px;
  width: 100%;
  justify-self: stretch;
  border: 0;
}

.download-form__note,
.download-form__local-note,
.download-form__privacy {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.download-form__privacy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.download-form .button,
.button__icon,
.download-form__product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button__icon {
  width: 20px;
  height: 20px;
  margin-right: 0.3rem;
}

.download-form__product {
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.8rem 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  background: rgb(255 250 242 / 0.58);
  border-radius: 16px;
}

.download-form__product svg {
  width: 18px;
  height: 18px;
  color: var(--clay);
}

.download-form a,
.legal-card a,
.site-footer__links a {
  color: var(--clay-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.download-form a:hover,
.legal-card a:hover,
.site-footer__links a:hover {
  color: var(--clay);
}

.download-form a:focus-visible,
.legal-card a:focus-visible,
.site-footer__links a:focus-visible,
.legal-back:focus-visible {
  outline: 2px solid rgb(129 99 72 / 0.58);
  outline-offset: 4px;
  border-radius: 8px;
}

.download-form__local-note {
  color: var(--clay);
  font-size: 0.86rem;
  font-weight: 700;
}

.system-message {
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-size: 0.94rem;
  background: rgb(151 111 78 / 0.09);
  border-radius: 14px;
}

.system-message--error {
  color: #7d241d;
  background: rgb(125 36 29 / 0.08);
}

.system-dev-note {
  color: var(--clay);
  font-size: 0.88rem;
  font-weight: 700;
}

.system-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.system-flow {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  width: min(920px, 100%);
  margin: auto;
}

.system-card {
  width: 100%;
  margin: 0;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(120deg, #fffaf2, #eadfce);
  border: 1px solid rgb(205 189 168 / 0.58);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.system-card .brand {
  margin-bottom: 2rem;
}

.system-card h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 4.6rem);
}

.confirmation-status {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.confirmation-status__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-top: 0.1rem;
  color: var(--clay);
  background: rgb(151 111 78 / 0.09);
  border-radius: 999px;
}

.confirmation-status__icon svg,
.preference-heading__icon svg {
  width: 32px;
  height: 32px;
}

.confirmation-status__icon path,
.preference-heading__icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.preference-card {
  padding-top: clamp(1.75rem, 4vw, 3rem);
}

.preference-heading {
  display: inline-block;
  align-items: center;
  margin-bottom: 1.4rem;
}

.preference-heading__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--clay);
  background: rgb(151 111 78 / 0.09);
  border-radius: 999px;
}

.preference-heading h2 {
  margin: 0 0 1rem;
  font-family: var(--heading);
  font-size: clamp(3rem, 3vw, 1.8rem);
  font-weight: 500;
  line-height:1em;
}

.preference-form {
  display: grid;
}

.preference-form {
  gap: 1.2rem;
}

.preference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.preference-fieldset {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.5rem 0 0;
  margin: 0;
  border: 0;
}

.preference-fieldset + .preference-fieldset {
  padding-left: clamp(1rem, 3vw, 2rem);
  border-left: 1px solid rgb(205 189 168 / 0.45);
}

.preference-fieldset legend {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-weight: 800;
}

.preference-fieldset label,
.feedback-consent-box {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  min-height: 44px;
  color: var(--ink-soft);
  cursor: pointer;
}

.preference-fieldset input,
.feedback-consent-box input {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 0.16rem 0.5rem 0;
  accent-color: var(--clay);
}

.feedback-consent-box {
  display: block;
  padding-top: 1.1rem;
  border-top: 1px solid rgb(205 189 168 / 0.45);
}

.feedback-consent-box__content {
  display: grid;
  gap: 0.3rem;
}

.feedback-consent-box__choice {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  min-height: 54px;
  padding-block: 0.35rem;
}

.feedback-consent-box strong {
  color: var(--ink);
  font-weight: 800;
}

.preference-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.survey-skip {
  justify-self: start;
  min-height: 44px;
  margin-top: 0.75rem;
  padding: 0.25rem 0;
  color: var(--ink-soft);
  font: inherit;
  font-weight: 800;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.system-back-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  min-height: 44px;
  color: var(--ink-soft);
  font-weight: 800;
  text-decoration: none;
  text-underline-offset: 0.18em;
}

.system-back-link svg {
  flex: 0 0 auto;
  width: 1.05em;
  height: 1.05em;
}

.system-back-link path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.preference-card a,
.survey-skip:hover,
.system-back-link:hover {
  color: var(--clay-dark);
}

.survey-skip:hover {
  text-decoration-thickness: 0.09em;
}

.system-back-link:hover {
  text-decoration: underline;
}

.button:focus-visible,
.preference-fieldset input:focus-visible,
.feedback-consent-box input:focus-visible,
.survey-skip:focus-visible,
.system-back-link:focus-visible {
  outline: 2px solid rgb(129 99 72 / 0.58);
  outline-offset: 4px;
}

.system-card p + p,
.system-card p + .button,
.system-card p + .system-back-link {
  margin-top: 1rem;
}

.confirmation-status + p,
.system-message + p {
  margin-top: 1rem;
}

.site-footer {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1.5rem;
  width: var(--wrap);
  margin-inline: auto;
  padding-block: 2rem;
  border-top: 1px solid rgb(205 189 168 / 0.5);
}

.site-footer__brand {
  justify-self: start;
}

.site-footer__claim {
  justify-self: center;
  text-align: center;
  white-space: nowrap;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.9rem;
  justify-self: end;
}

.site-footer__links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-decoration: none;
}

.site-footer__links a[aria-current="page"] {
  color: var(--ink);
}

.legal-page {
  min-height: 100vh;
  padding-top: 7rem;
}

.legal-main {
  width: var(--wrap);
  margin-inline: auto;
  padding-block: clamp(2rem, 6vw, 5rem);
}

.legal-card {
  width: min(820px, 100%);
  margin-inline: auto;
  padding: clamp(1.5rem, 5vw, 4rem);
  background: rgb(255 250 242 / 0.74);
  border: 1px solid rgb(205 189 168 / 0.55);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 1.5rem;
  color: var(--clay-dark);
  font-weight: 800;
}

.legal-card h1 {
  margin-top: 0.6rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  font-size: clamp(2.2rem, 9vw, 4.4rem);
}

.legal-card h2 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-family: var(--body);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 800;
  line-height: 1.2;
}

.legal-card h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.legal-card p,
.legal-card li,
.legal-card address {
  color: var(--ink-soft);
  line-height: 1.72;
}

.legal-card p + p,
.legal-card address + p,
.legal-card ul + p,
.legal-card p + ul {
  margin-top: 0.85rem;
}

.legal-card address {
  font-style: normal;
}

.legal-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

@media print {
  body {
    background: #fff;
    color: #000;
  }

  .site-header,
  .site-footer,
  .grain,
  .cursor,
  .progress-rail,
  .line-field,
  .legal-back,
  script {
    display: none !important;
  }

  .legal-page,
  .legal-main,
  .legal-card {
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: #fff;
  }

  .legal-card h1,
  .legal-card h2,
  .legal-card h3,
  .legal-card p,
  .legal-card li,
  .legal-card address {
    color: #000;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes drift {
  to {
    transform: rotate(1turn);
  }
}

@media (max-width: 980px) {
  .site-header nav {
    gap: 1.5rem;
    font-size: 0.92rem;
  }

  .hero,
  .section-heading--split,
  .origin,
  .download__card {
    grid-template-columns: 1fr;
  }
  .origin{gap: 24px;}

  .hero {
    padding-top: 8rem;
  }

  .hero__stage {
    min-height: 620px;
  }

  .hero__photo {
    width: 100%;
  }

  .hero__cover {
    width: 230px;
    left: 0;
    bottom: 1rem;
  }

  .deliverable-strip {
    padding-block: 1rem;
  }

  .deliverable-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deliverable-strip__item {
    justify-content: flex-start;
    min-height: 88px;
    border-left: 0;
  }

  .deliverable-strip__item:nth-child(1),
  .deliverable-strip__item:nth-child(2) {
    border-top: 0;
  }

  .deliverable-strip__item:nth-child(even) {
    border-left: 1px solid rgb(205 189 168 / 0.36);
  }

  .method-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-list li:nth-child(odd) {
    border-left: 0;
  }

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

  .audience-grid article:nth-child(odd) {
    border-left: 0;
  }

  .origin__image,
  .origin__text {
    border-radius: 30px;
  }

  .origin__quote-card {
    border-radius: 22px;
  }

  .origin__text {
    border-left: 1px solid rgb(205 189 168 / 0.48);
  }

  .download__card > img {
    justify-self: center;
  }
  .download__actions,
  .download__actions .button,
  .download-form .button {
    width: 100%;
    justify-self: stretch;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: start;
  }

  .site-footer__claim {
    grid-column: 2;
    justify-self: center;
    white-space: normal;
  }

  .site-footer__links {
    grid-column: 1 / -1;
    justify-self: end;
  }

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

  .preference-fieldset + .preference-fieldset {
    padding-top: 1rem;
    padding-left: 0;
    border-top: 1px solid rgb(205 189 168 / 0.45);
    border-left: 0;
  }
}

@media (min-width: 701px) and (max-width: 1180px) and (orientation: portrait) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding-block: clamp(11rem, 15vw, 13rem) 1rem;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__stage {
    min-height: clamp(430px, 58vw, 560px);
  }

  .hero__photo {
    top: 0;
    width: 100%;
    height: clamp(410px, 54vw, 530px);
    object-position: 62% center;
  }

  .hero__cover {
    width: clamp(180px, 24vw, 240px);
  }

  .hero__floating-note {
    right: 1.2rem;
    bottom: 3.2rem;
  }

  .deliverable-strip {
    padding-block: 0 1.5rem;
  }
}

@media (max-width: 700px) {
  :root {
    --wrap: min(100vw - 32px, 1180px);
  }

  body {
    font-size: 16px;
  }

  .progress-rail,
  .cursor {
    display: none;
  }

  .site-header {
    top: 12px;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
  }

  .site-header.is-menu-open {
    z-index: 150;
  }

  body.is-menu-open::before {
    position: fixed;
    inset: 0;
    z-index: 100;
    content: "";
    background: transparent;
  }

  .site-menu-toggle {
    position: relative;
    z-index: 80;
    display: grid;
    place-content: center;
    gap: 0.34rem;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    cursor: pointer;
    appearance: none;
  }

  .site-menu-toggle span,
  .site-menu-toggle::before,
  .site-menu-toggle::after {
    display: block;
    width: 28px;
    height: 2.5px;
    content: "";
    background: currentColor;
    border-radius: 999px;
    transition:
      opacity 180ms ease,
      transform 240ms ease;
  }

  .site-menu-toggle::before,
  .site-menu-toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .site-header nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    display: grid;
    align-content: start;
    width: auto;
    min-height: min(58vh, 430px);
    margin-right: 0;
    padding: 5.2rem 2.8rem 3.2rem;
    overflow: visible;
    color: #050505;
    background: rgb(255 250 242 / 0.96);
    border: 1px solid rgb(205 189 168 / 0.26);
    border-radius: 28px;
    box-shadow: 0 28px 68px rgb(63 44 29 / 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.7rem) scale(0.92);
    transform-origin: top right;
    transition:
      opacity 180ms ease,
      transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

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

  .site-header nav a:not(.site-nav__close) {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: clamp(1.25rem, 5.2vw, 1.65rem);
    font-weight: 800;
    line-height: 1;
    opacity: 0;
    transform: translateY(0.7rem);
    transition:
      opacity 220ms ease,
      transform 260ms ease;
  }

  .site-header nav a:not(.site-nav__close) + a:not(.site-nav__close) {
    margin-top: clamp(1.7rem, 7vw, 2.7rem);
  }

  .site-header.is-menu-open nav a:not(.site-nav__close),
  .site-header nav.is-open a:not(.site-nav__close) {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.is-menu-open nav a:nth-child(2),
  .site-header nav.is-open a:nth-child(2) {
    transition-delay: 110ms;
  }

  .site-header.is-menu-open nav a:nth-child(3),
  .site-header nav.is-open a:nth-child(3) {
    transition-delay: 170ms;
  }

  .site-header.is-menu-open nav a:nth-child(4),
  .site-header nav.is-open a:nth-child(4) {
    transition-delay: 230ms;
  }

  .site-header.is-menu-open nav a:nth-child(5),
  .site-header nav.is-open a:nth-child(5) {
    transition-delay: 290ms;
  }

  .site-nav__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    cursor: pointer;
    appearance: none;
  }

  .site-nav__close::before,
  .site-nav__close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2.5px;
    content: "";
    background: var(--ink);
    border-radius: 999px;
  }

  .site-nav__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-nav__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 1.75rem;
  }

  h1 {
    font-size: clamp(4.2rem, 22vw, 7rem);
  }

  h1 span {
    padding-left: 0;
  }

  h2,
  .manifest p {
    font-size: clamp(3.1rem, 14vw, 5.2rem);
  }

  .hero {
    min-height: auto;
    padding-bottom: 4rem;
  }

  .hero__lead {
    font-size: 1.7rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__product-line {
    display: grid;
    gap: 0.35rem;
    font-size: 0.98rem;
  }

  .hero__product-line li + li::before {
    display: none;
  }

  .hero__deliverables-mobile {
    display: grid;
    margin-top: 2rem;
    border-block:none;
  }

  .hero__deliverables-mobile .deliverable-strip__item {
    justify-content: flex-start;
    min-height: 64px;
    font-size:1rem;
    padding: 1rem 0;
    border-left: 0;
    border-top: 1px solid rgb(205 189 168 / 0.32);
  }

  .hero__deliverables-mobile .deliverable-strip__item:first-child {
    border-top: 0;
  }

  .hero__deliverables-mobile .deliverable-strip__item img {
    width: 38px;
    height: 38px;
  }

  .hero__deliverables-mobile .deliverable-strip__item strong {
    font-size: 1rem;
    white-space: normal;
  }

  .hero + .deliverable-strip {
    display: none;
  }

  .hero__stage {
    min-height: 520px;
    padding-bottom: 5rem;
  }

  .hero__photo {
    top: 0;
    height: 490px;
    border-radius: 28px;
    clip-path: none;
  }

  .hero__cover {
    width: 180px;
    bottom: 2%;
  }

  .hero__floating-note {
    right: 1rem;
    bottom: 3rem;
  }

  .deliverable-strip {
    padding-block: 2rem;
  }

  .deliverable-strip__inner {
    grid-template-columns: 1fr;
    border-block: 0;
  }

  .deliverable-strip__item {
    justify-content: flex-start;
    min-height: 72px;
    padding: 1rem 0.35rem;
    border-left: 0;
    border-top: 1px solid rgb(205 189 168 / 0.32);
  }

  .deliverable-strip__item:nth-child(2) {
    border-top: 1px solid rgb(205 189 168 / 0.32);
  }

  .deliverable-strip__item:nth-child(even) {
    border-left: 0;
  }

  .deliverable-strip__item:first-child {
    border-top: 0;
  }

  .deliverable-strip__item img {
    width: 38px;
    height: 38px;
  }

  .deliverable-strip__item strong {
    font-size: 1.1rem;
    white-space: normal;
  }

  .manifest {
    padding-block: 4rem 6rem;
  }

  .atelier,
  .method,
  .for-who,
  .download {
    padding-block: 4.5rem;
  }

  .origin + .download {
    padding-top: 2.25rem;
  }

  .preview-wall {
    gap: 1rem;
    height: auto;
    min-height: 0;
    overflow-y: visible;
  }

  .preview-card,
  .preview-card.is-large {
    flex-basis: 74%;
  }

 
  .audience-grid {
    display: flex;
    gap: 1rem;
    padding-inline: 0;
    padding-bottom: 0.35rem;
    overflow-x: auto;
    overflow-y: hidden;
    border: 0;
    border-radius: 0;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
  }

  .method-list li,
  .method-list li:nth-child(odd) {
    border-left: 0;
  }

  .audience-grid article,
  .audience-grid article:nth-child(odd) {
    flex: 0 0 min(82vw, 360px);
    min-height: 300px;
    padding: 2.25rem;
    border: 1px solid rgb(205 189 168 / 0.45);
    border-radius: 30px;
    scroll-snap-align: start;
  }

  .audience-grid article + article {
    border-left: 1px solid rgb(205 189 168 / 0.45);
  }

  .audience-grid article:first-child {
    border-left: 1px solid rgb(205 189 168 / 0.45);
  }

  .audience-grid article[data-reveal] {
    opacity: 1;
    transform: none;
  }

  .method-list li + li {
    border-top: 1px solid rgb(205 189 168 / 0.45);
  }
  .method-list li {

    min-height:180px;
  }

  .immersive,
  .immersive__image {
   object-position: 88% -120px;
   min-height:580px;
  }

  .immersive__panel {
    left: 24px;
    right: 24px;
    bottom: 32px;
  }

  .origin {
    padding-bottom: 2rem;
  }

  .origin__image {
    min-height: 420px;
  }

  .origin__quote-card {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem;
  }

  .origin__quote-card blockquote {
    font-size: 1.35rem;
    font-weight:500;
  }

  .download__card {
    padding: 2rem 1.25rem;
  }

  .download-form {
    padding: 0;
    border-radius: 0;
  }

  .download__card > img {
    justify-self: center;
  }

  .download-modal {
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    margin: 0;
    overflow: hidden;
  }

  .download-modal__panel {
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    padding: calc(5.25rem + env(safe-area-inset-top)) 1rem calc(1.25rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .download-modal__close {
    position: fixed;
    top: calc(0.85rem + env(safe-area-inset-top));
    right: calc(0.85rem + env(safe-area-inset-right));
    z-index: 2;
    background: rgb(255 250 242 / 0.92);
    box-shadow: 0 10px 28px rgb(52 38 26 / 0.18);
  }

  .download-modal__intro {
    padding-right: 0;
  }

  .download-modal__intro h2 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .system-page {
    padding: 1rem;
  }

  .system-card {
    border-radius: 28px;
  }

  .confirmation-status,
  .preference-heading {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .feedback-consent-box {
    align-items: flex-start;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .site-footer__brand,
  .site-footer__claim,
  .site-footer__links {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .site-footer__claim {
    max-width: 100%;
  }

  .site-footer__links {
    justify-content: flex-start;
    gap: 0.2rem 1rem;
    width: 100%;
  }
}
