@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308-0309, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Unbounded";
  src: url("/assets/fonts/unbounded-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Unbounded";
  src: url("/assets/fonts/unbounded-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308-0309, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #ebe7de;
  --ink: #20211f;
  --mint: #a8c7bd;
  --coral: #b86f61;
  --white: #f5f1e9;
  --line: rgb(32 33 31 / 24%);
  --pad: clamp(20px, 3.4vw, 58px);
  --display: "Unbounded", "Arial Black", sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.82) contrast(0.97);
}

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  background: var(--white);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 14px var(--pad);
  border-bottom: 1px solid transparent;
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  border-color: rgb(32 33 31 / 14%);
  background: rgb(235 231 222 / 92%);
  backdrop-filter: blur(14px);
}

.wordmark {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  width: max-content;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.wordmark i {
  position: absolute;
  top: -1px;
  right: -10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-nav a,
.header-cta {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.header-cta:hover {
  color: var(--paper);
  background: var(--ink);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(360px, 42fr);
  min-height: max(720px, 100svh);
  padding: 120px var(--pad) 40px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 2vh;
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title {
  position: relative;
  z-index: 2;
  margin: auto -11vw auto 0;
  font-family: var(--display);
  font-size: clamp(70px, 10.4vw, 184px);
  font-weight: 800;
  line-height: 0.79;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title span:last-child {
  padding-left: 0.34em;
  color: var(--coral);
}

.hero-title i {
  color: var(--mint);
  font-style: normal;
}

.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  width: min(620px, 94%);
}

.hero-bottom > p {
  max-width: 270px;
  margin: 0 0 10px;
  font-size: clamp(17px, 1.5vw, 23px);
  font-weight: 650;
  line-height: 1.25;
}

.circle-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(132px, 11vw, 172px);
  aspect-ratio: 1;
  padding: 24px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.circle-link b {
  position: absolute;
  margin: 88px 0 0 88px;
  font-size: 21px;
}

.circle-link:hover {
  color: var(--ink);
  background: var(--mint);
  transform: rotate(-7deg);
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 580px;
  margin: 0;
  overflow: hidden;
  background: #99a29f;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgb(0 0 0 / 46%));
  content: "";
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.02);
}

.hero-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  right: calc(42% - 42px);
  bottom: 5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  transform: rotate(8deg);
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--coral);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 19px 0 18px;
  animation: ticker 24s linear infinite;
}

.ticker span {
  padding: 0 28px;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.ticker i {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--ink);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-index {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding-bottom: 20px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.philosophy {
  padding: clamp(90px, 12vw, 190px) var(--pad);
  background: var(--mint);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.58fr 0.64fr;
  gap: clamp(24px, 4vw, 76px);
  align-items: start;
  margin-top: clamp(54px, 8vw, 120px);
}

.display-copy {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 6.2vw, 105px);
  font-weight: 750;
  line-height: 0.94;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.display-copy em {
  display: inline-block;
  color: var(--coral);
  font-style: normal;
  transform: translateX(0.42em);
}

.philosophy-note {
  align-self: end;
  padding-bottom: 20px;
}

.philosophy-note p {
  margin: 0 0 42px;
  font-size: clamp(16px, 1.3vw, 21px);
  font-weight: 650;
  line-height: 1.35;
}

.philosophy-note span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.philosophy-photo {
  align-self: center;
  margin: 0;
  overflow: hidden;
  transform: rotate(3deg);
}

.philosophy-photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.water {
  position: relative;
  min-height: 800px;
  padding: clamp(90px, 11vw, 180px) var(--pad);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.water::before,
.water::after {
  position: absolute;
  border: 1px solid rgb(87 212 188 / 40%);
  border-radius: 50%;
  content: "";
}

.water::before {
  top: -31vw;
  right: -10vw;
  width: 74vw;
  aspect-ratio: 1;
}

.water::after {
  top: -25vw;
  right: -4vw;
  width: 62vw;
  aspect-ratio: 1;
}

.water-orbit {
  position: absolute;
  top: 9vw;
  right: 11vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  clip-path: circle(50%);
}

.water-orbit span {
  width: 170px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-12deg);
}

.water-line {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 9.3vw, 160px);
  font-weight: 750;
  line-height: 0.86;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.water-line span {
  display: block;
}

.water-line span:last-child {
  padding-left: 0.55em;
  color: var(--mint);
}

.water-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: clamp(90px, 12vw, 190px) 0 0 32%;
  padding: 0;
  list-style: none;
  counter-reset: water;
}

.water-steps li {
  padding-top: 14px;
  border-top: 1px solid rgb(242 239 231 / 50%);
  font-size: 13px;
  counter-increment: water;
}

.water-steps li::before {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  content: "0" counter(water);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
}

.things {
  padding: clamp(90px, 12vw, 190px) var(--pad);
}

.things-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin: clamp(50px, 7vw, 100px) 0 clamp(60px, 8vw, 120px);
}

.things-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 10vw, 172px);
  font-weight: 800;
  line-height: 0.79;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.things-heading p {
  margin: 0 0 8px;
  color: var(--coral);
  font-family: var(--display);
  font-size: clamp(17px, 1.8vw, 30px);
  font-weight: 750;
  line-height: 1.05;
  text-transform: uppercase;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr 0.8fr;
  gap: clamp(18px, 2.6vw, 42px);
  align-items: start;
}

.product {
  margin: 0;
}

.product img {
  width: 100%;
  object-fit: cover;
  background: #d4d0c8;
}

.product-main {
  grid-row: span 2;
}

.product-main img {
  aspect-ratio: 4 / 5;
}

.product-white img,
.product-detail img {
  aspect-ratio: 3 / 4;
}

.product figcaption {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid var(--ink);
  margin-top: 10px;
}

.product figcaption b,
.product figcaption small {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.product figcaption span {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: 24px;
  color: var(--paper);
  background: var(--coral);
}

.product-quote span {
  font-family: var(--display);
  font-size: clamp(24px, 2.7vw, 44px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.product-quote p {
  max-width: 260px;
  margin: 80px 0 0;
  font-size: 14px;
  font-weight: 650;
}

.product-detail {
  grid-column: 3;
  margin-top: -8vw;
}

.moment {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) 1.28fr;
  min-height: 850px;
  color: var(--ink);
  background: var(--coral);
}

.moment-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(70px, 8vw, 130px) var(--pad);
}

.moment-copy h2 {
  margin: auto -8vw auto 0;
  font-family: var(--display);
  font-size: clamp(52px, 7.5vw, 126px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.moment-copy > p {
  max-width: 420px;
  margin: 50px 0 0;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 650;
}

.moment-gallery {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: var(--ink);
}

.moment-gallery figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 20px 70px rgb(0 0 0 / 20%);
}

.moment-gallery figure:nth-child(1) {
  z-index: 2;
  top: 7%;
  left: 8%;
  width: 48%;
  transform: rotate(-4deg);
}

.moment-gallery figure:nth-child(2) {
  z-index: 1;
  top: 29%;
  right: 5%;
  width: 44%;
  transform: rotate(5deg);
}

.moment-gallery figure:nth-child(3) {
  z-index: 3;
  bottom: -12%;
  left: 31%;
  width: 36%;
  transform: rotate(1deg);
}

.moment-gallery img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.manifest {
  position: relative;
  min-height: 1020px;
  padding: clamp(80px, 10vw, 150px) var(--pad);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.manifest-lines {
  position: relative;
  z-index: 2;
  margin: clamp(80px, 11vw, 170px) 0 0;
  font-family: var(--display);
  font-size: clamp(44px, 7.3vw, 120px);
  font-weight: 760;
  line-height: 0.94;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.manifest-lines span {
  display: block;
}

.manifest-lines span:nth-child(even) {
  padding-left: 10vw;
}

.manifest-lines .accent {
  color: var(--mint);
}

.manifest-photo {
  position: absolute;
  right: 5vw;
  bottom: -13vw;
  width: min(29vw, 440px);
  margin: 0;
  transform: rotate(7deg);
}

.manifest-photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.gift {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  align-items: end;
  gap: clamp(48px, 7vw, 120px);
  min-height: 880px;
  padding: clamp(80px, 10vw, 150px) var(--pad);
  overflow: hidden;
  background: var(--mint);
}

.gift-intro {
  position: relative;
  z-index: 3;
}

.gift-intro h2 {
  margin: clamp(58px, 8vw, 110px) 0 38px;
  font-family: var(--display);
  font-size: clamp(62px, 9vw, 148px);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.gift-intro h2 em {
  color: var(--coral);
  font-style: normal;
}

.gift-intro > p {
  max-width: 530px;
  margin: 0;
  font-size: clamp(17px, 1.5vw, 23px);
  font-weight: 650;
}

.gift-form {
  position: relative;
  z-index: 4;
  width: min(860px, 100%);
  margin: 0 12px 12px 0;
  padding: clamp(24px, 4vw, 58px);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 13px 13px 0 var(--ink);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(38px, 5vw, 70px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.email-stage > label:first-of-type {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

[hidden] {
  display: none !important;
}

.quiz-progress {
  height: 4px;
  margin: calc(clamp(38px, 5vw, 70px) * -0.55) 0 clamp(32px, 4vw, 54px);
  overflow: hidden;
  background: rgb(32 33 31 / 13%);
}

.quiz-progress i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--coral);
  transition: width 260ms ease;
}

.quiz-question {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.quiz-question legend {
  margin: 0 0 clamp(22px, 3vw, 34px);
  padding: 0;
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.quiz-question button,
.result-button {
  width: 100%;
  padding: 17px 20px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.quiz-question button:hover,
.quiz-question button:focus-visible {
  color: var(--paper);
  background: var(--ink);
  transform: translateX(5px);
}

.vibe-score {
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-family: var(--display);
  line-height: 0.8;
}

.vibe-score strong {
  font-size: clamp(86px, 12vw, 170px);
  letter-spacing: -0.11em;
}

.vibe-score span {
  margin: 6px 0 0 10px;
  color: var(--coral);
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 800;
}

.quiz-result h3 {
  margin: 34px 0 12px;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.055em;
}

.quiz-result > p:not(.vibe-score) {
  max-width: 570px;
  margin: 0;
  font-size: clamp(16px, 1.5vw, 20px);
}

.result-button {
  display: flex;
  justify-content: space-between;
  margin-top: 38px;
  color: var(--paper);
  background: var(--ink);
  text-transform: uppercase;
}

.result-button:hover {
  color: var(--ink);
  background: var(--mint);
}

.quiz-result.is-failed h3,
.quiz-result.is-failed .vibe-score span {
  color: var(--coral);
}

.result-button-secondary {
  background: var(--coral);
}

.email-row {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 3px solid var(--ink);
}

.email-row input {
  min-width: 0;
  padding: 12px 18px 18px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--display);
  font-size: clamp(22px, 3.2vw, 46px);
  font-weight: 650;
  letter-spacing: -0.055em;
}

.email-row input::placeholder {
  color: rgb(17 17 15 / 32%);
}

.email-row input[aria-invalid="true"]::placeholder,
.email-row input[aria-invalid="true"] {
  color: #b52c27;
}

.email-row button {
  display: flex;
  align-items: center;
  gap: 28px;
  align-self: center;
  padding: 14px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.email-row button:hover {
  color: var(--ink);
  background: var(--mint);
}

.email-row button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.form-hint {
  margin: 13px 0 26px;
  color: rgb(17 17 15 / 62%);
  font-size: 11px;
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 570px;
  cursor: pointer;
}

.consent input {
  position: absolute;
  opacity: 0;
}

.consent > span {
  display: grid;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  border: 1px solid var(--ink);
  place-items: center;
}

.consent input:checked + span::after {
  width: 11px;
  height: 6px;
  border-bottom: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  content: "";
  transform: rotate(-45deg) translateY(-1px);
}

.consent input:focus-visible + span {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.consent small {
  color: rgb(17 17 15 / 70%);
  font-size: 10px;
  line-height: 1.5;
}

.consent a {
  border-bottom: 1px solid currentColor;
}

.company-field {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  margin: 22px 0 0;
  font-size: 13px;
  font-weight: 750;
}

.form-status.is-success {
  color: #08745f;
}

.form-status.is-error {
  color: #b52c27;
}

.gift-form.is-success .email-row,
.gift-form.is-success .consent,
.gift-form.is-success .form-hint,
.gift-form.is-success .email-stage > label:first-of-type {
  display: none;
}

.gift-form.is-success .form-status {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 30px;
  min-height: 330px;
  padding: 70px var(--pad) 38px;
  color: var(--paper);
  background: var(--ink);
}

.wordmark-footer {
  font-size: clamp(22px, 3vw, 42px);
}

.wordmark-footer i {
  top: -3px;
  right: -18px;
  width: 12px;
  height: 12px;
  background: var(--mint);
}

.site-footer > p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(17px, 2vw, 28px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.site-footer > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer > div a {
  border-bottom: 1px solid currentColor;
}

.js .reveal,
.js .photo-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms cubic-bezier(.2, .7, .2, 1), transform 800ms cubic-bezier(.2, .7, .2, 1);
}

.js .photo-reveal {
  transform: translateY(40px) scale(0.97);
}

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

.js .philosophy-photo.photo-reveal.is-visible {
  transform: rotate(3deg);
}

.js .moment-gallery figure:nth-child(1).photo-reveal.is-visible { transform: rotate(-4deg); }
.js .moment-gallery figure:nth-child(2).photo-reveal.is-visible { transform: rotate(5deg); }
.js .moment-gallery figure:nth-child(3).photo-reveal.is-visible { transform: rotate(1deg); }
.js .manifest-photo.photo-reveal.is-visible { transform: rotate(7deg); }

.privacy-page {
  min-height: 100vh;
  padding: 110px var(--pad) 80px;
}

.privacy-page article {
  width: min(760px, 100%);
  margin: 70px auto 0;
}

.privacy-page h1 {
  margin: 0 0 50px;
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 90px);
  line-height: 0.93;
  letter-spacing: -0.07em;
}

.privacy-page h2 {
  margin: 42px 0 12px;
  font-family: var(--display);
  font-size: 18px;
}

.privacy-page p {
  font-size: 17px;
  line-height: 1.65;
}

.back-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 100px var(--pad) 50px;
    color: var(--paper);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease;
  }

  .site-nav a {
    font-family: var(--display);
    font-size: clamp(31px, 8vw, 72px);
    font-weight: 750;
    line-height: 1.05;
    letter-spacing: -0.06em;
  }

  .site-nav.is-open {
    z-index: 29;
    opacity: 1;
    pointer-events: auto;
  }

  .menu-button {
    position: relative;
    z-index: 31;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border: 0;
    color: inherit;
    background: transparent;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
  }

  .menu-button i,
  .menu-button i::before {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
  }

  .menu-button i::before {
    transform: translateY(-5px);
  }

  .menu-button[aria-expanded="true"] {
    color: var(--paper);
  }

  .menu-button[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i::before {
    transform: rotate(-90deg);
  }

  .site-header:has(.menu-button[aria-expanded="true"]) .wordmark {
    z-index: 31;
    color: var(--paper);
  }

  .hero {
    grid-template-columns: 1fr 0.8fr;
  }

  .hero-title {
    font-size: clamp(64px, 12vw, 118px);
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stamp {
    right: calc(44% - 42px);
  }

  .philosophy-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .philosophy-photo {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .philosophy-note {
    grid-column: 1;
  }

  .water-steps {
    margin-left: 10%;
  }

  .editorial-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .product-quote {
    grid-column: 2;
  }

  .product-detail {
    grid-column: 2;
    margin-top: 0;
  }

  .moment {
    grid-template-columns: 0.8fr 1.2fr;
  }

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

  .gift-intro {
    max-width: 75%;
  }

  .gift-form {
    margin-top: 70px;
  }
}

@media (max-width: 700px) {
  :root {
    --pad: 18px;
  }

  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    min-height: 66px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    padding-top: 92px;
    padding-bottom: 18px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 0;
    margin-bottom: 30px;
  }

  .hero-title {
    order: 1;
    margin: 0 0 -0.15em;
    font-size: clamp(54px, 19vw, 92px);
    line-height: 0.82;
  }

  .hero-title span:last-child {
    padding-left: 0;
  }

  .hero-visual {
    order: 2;
    min-height: auto;
    height: min(54svh, 590px);
  }

  .hero-bottom {
    position: absolute;
    z-index: 4;
    right: 28px;
    bottom: 48px;
    order: 3;
    width: auto;
  }

  .hero-bottom > p {
    display: none;
  }

  .circle-link {
    width: 126px;
    color: var(--ink);
    background: var(--mint);
  }

  .circle-link b {
    margin: 76px 0 0 76px;
  }

  .hero-stamp {
    top: 47%;
    right: auto;
    bottom: auto;
    left: 3px;
    width: 66px;
  }

  .ticker span {
    padding: 0 18px;
    font-size: 27px;
  }

  .ticker i {
    width: 10px;
    height: 10px;
  }

  .section-index {
    grid-template-columns: 52px 1fr;
  }

  .philosophy,
  .things {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .philosophy-grid {
    display: flex;
    flex-direction: column;
    margin-top: 55px;
  }

  .display-copy {
    font-size: clamp(36px, 12vw, 64px);
  }

  .display-copy em {
    transform: none;
  }

  .philosophy-note {
    order: 3;
    padding: 10px 20px 0 16vw;
  }

  .philosophy-photo {
    order: 2;
    width: 72%;
    margin: 18px 0 0 auto;
  }

  .water {
    min-height: 720px;
    padding-top: 95px;
    padding-bottom: 75px;
  }

  .water-line {
    font-size: clamp(46px, 14vw, 76px);
  }

  .water-line span:last-child {
    padding-left: 0;
  }

  .water-orbit {
    top: auto;
    right: -36px;
    bottom: 105px;
    width: 160px;
  }

  .water-orbit span {
    width: 120px;
    font-size: 12px;
  }

  .water-steps {
    grid-template-columns: 1fr 1fr;
    margin: 90px 115px 0 0;
  }

  .things-heading {
    display: block;
    margin-top: 56px;
    margin-bottom: 60px;
  }

  .things-heading h2 {
    font-size: clamp(52px, 17vw, 88px);
  }

  .things-heading p {
    margin-top: 26px;
  }

  .editorial-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .product-white {
    width: 72%;
    margin-left: auto;
  }

  .product-quote {
    min-height: 330px;
  }

  .product-detail {
    width: 83%;
  }

  .product figcaption {
    grid-template-columns: 28px 1fr;
  }

  .product figcaption small {
    display: none;
  }

  .moment {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .moment-copy {
    min-height: 650px;
    padding: 72px var(--pad);
  }

  .moment-copy h2 {
    margin: auto 0;
    font-size: clamp(48px, 15vw, 78px);
  }

  .moment-gallery {
    min-height: 760px;
  }

  .moment-gallery figure:nth-child(1) { width: 62%; }
  .moment-gallery figure:nth-child(2) { top: 34%; width: 54%; }
  .moment-gallery figure:nth-child(3) { left: 18%; width: 49%; }

  .manifest {
    min-height: 800px;
    padding-top: 80px;
  }

  .manifest-lines {
    margin-top: 90px;
    font-size: clamp(38px, 11.5vw, 62px);
  }

  .manifest-lines span:nth-child(even) {
    padding-left: 0;
  }

  .manifest-photo {
    right: -8%;
    bottom: -11%;
    width: 55vw;
  }

  .gift {
    display: block;
    min-height: auto;
    padding-top: 78px;
    padding-bottom: 90px;
  }

  .gift-intro {
    max-width: 100%;
  }

  .gift-intro h2 {
    margin-top: 60px;
    font-size: clamp(56px, 18vw, 90px);
  }

  .gift-intro > p {
    width: 86%;
    font-size: 16px;
  }

  .gift-form {
    margin-top: 70px;
    padding: 24px 19px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .form-heading {
    margin-bottom: 34px;
  }

  .quiz-progress {
    margin-top: -18px;
    margin-bottom: 30px;
  }

  .quiz-question legend {
    font-size: clamp(22px, 7vw, 30px);
  }

  .quiz-question button {
    padding: 15px;
  }

  .email-row {
    display: block;
    border: 0;
  }

  .email-row input {
    width: 100%;
    border-bottom: 2px solid var(--ink);
    font-size: clamp(21px, 7vw, 32px);
  }

  .email-row button {
    justify-content: space-between;
    width: 100%;
    margin-top: 18px;
    padding: 15px 20px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    min-height: 310px;
  }

  .site-footer > p {
    text-align: right;
  }

  .site-footer > div {
    grid-column: 1 / -1;
    align-items: flex-start;
    margin-top: 80px;
  }

  .privacy-page {
    padding-top: 70px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal,
  .js .photo-reveal {
    opacity: 1;
    transform: none;
  }
}
