:root {
  --cotton: #f7f4ed;
  --linen: #e6ded1;
  --sage: #a5b2a0;
  --eucalyptus: #7e9284;
  --deep: #53675a;
  --ink: #303831;
  --muted: #53675a;
  --warm: #5a4639;
  --blush: #e2cdd3;
  --clay: #b9987b;
  --line: rgba(48, 56, 49, 0.14);
  --white: #fff;
  --radius: 1.75rem;
  --shadow: 0 22px 55px rgba(48, 56, 49, 0.12);
}
.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;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cotton);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.font-serif,
h1,
h2,
h3 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 450;
}
.lang-en {
  display: none;
}
html[data-lang="en"] .lang-fr {
  display: none;
}
html[data-lang="en"] .lang-en {
  display: inline;
}
html[data-lang="en"] .block.lang-en {
  display: block;
}
.no-scroll {
  overflow: hidden;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--deep);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
}
.skip-link:focus {
  top: 1rem;
}
.container {
  width: min(100% - 2.5rem, 76rem);
  margin-inline: auto;
}
.section {
  padding: clamp(5.5rem, 10vw, 10rem) 0;
}
.section-anchor {
  scroll-margin-top: 5rem;
}
.eyebrow {
  margin: 0;
  color: var(--eucalyptus);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  margin: 0 0.7rem 0.25rem 0;
  background: currentColor;
}
.display {
  margin: 0.9rem 0 0;
  font-size: clamp(2.3rem, 3.5vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.eyebrow + :is(h1, h2, h3, .display) {
  margin-top: 0.9rem;
}
.hero .display {
  font-size: clamp(3rem, 5vw, 5rem);
}
.display em {
  font-style: normal;
  color: var(--deep);
}
.body-lg {
  max-width: 39rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11.75rem;
  min-height: 3.2rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button--primary {
  background: var(--deep);
  color: #fff;
}
.button--primary:hover {
  background: var(--ink);
}
.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--deep);
}
.button--secondary:hover {
  background: #fff;
}
.button--small {
  min-width: 0;
  min-height: 2.6rem;
  padding: 0.55rem 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(247, 244, 237, 0.72);
  backdrop-filter: blur(14px);
  transition: 0.25s;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(247, 244, 237, 0.94);
  box-shadow: 0 8px 24px rgba(48, 56, 49, 0.06);
}
.nav {
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wordmark {
  width: 10rem;
  height: auto;
}
.nav-tagline {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  white-space: nowrap;
}
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-links a {
  position: relative;
  padding-bottom: 0.45rem;
  font-size: 0.84rem;
  color: var(--muted);
}
.nav-links a.is-active {
  color: var(--ink);
}
.nav-links a.is-active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.5px;
  background: currentColor;
  content: "";
}
.nav-links a:hover,
.login-link:hover {
  color: var(--ink);
}
.login-link {
  font-size: 0.84rem;
  color: var(--muted);
}
.language-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 4.5rem;
  height: 1.85rem;
  padding: 2px;
  border: 1px solid rgba(83, 103, 90, 0.45);
  border-radius: 999px;
  background: var(--cotton);
}
.language-switch button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--deep);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 700;
}
.language-switch button.is-active {
  background: var(--deep);
  color: var(--cotton);
}
.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.1rem;
}
.mobile-menu {
  display: none;
}
@media (min-width: 901px) and (max-width: 1080px) {
  .nav-links,
  .nav-actions > .language-switch,
  .nav-actions > .button,
  .nav-actions .login-link {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-menu.is-open {
    display: block;
    border-top: 1px solid var(--line);
    background: var(--cotton);
  }
  .mobile-menu .container {
    display: grid;
    gap: 0.65rem;
    padding: 0.75rem 0 1rem;
  }
  .mobile-menu a {
    padding: 0.4rem 0;
    color: var(--deep);
  }
  .mobile-menu .mobile-actions {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.1rem;
  }
  .mobile-menu .language-switch {
    display: grid;
  }
  .mobile-menu .nav-cta {
    width: 100%;
    min-height: 3rem;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(4rem, 7vw, 6.5rem);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.8), transparent 38%),
    linear-gradient(155deg, var(--cotton), var(--linen));
}
.hero:before {
  content: "";
  position: absolute;
  inset: auto -10vw -23vw auto;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgba(126, 146, 132, 0.23);
  border-radius: 48% 52% 58% 42%;
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 51rem;
  margin: auto;
}
.hero .body-lg {
  margin-inline: auto;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.4rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}
.hero-note:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--eucalyptus);
}
.lifestyle {
  padding: 0 1.25rem;
  background: var(--cotton);
}
.lifestyle-frame {
  position: relative;
  width: min(100%, 88rem);
  height: clamp(24rem, 52vw, 42rem);
  margin: auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #d9d4c8, #b9c3af);
}
.lifestyle-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.lifestyle-heading {
  position: absolute;
  z-index: 2;
  top: clamp(2rem, 5vw, 4rem);
  right: clamp(2rem, 6vw, 5rem);
  max-width: 25ch;
  margin: 0;
  color: var(--cotton);
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(34, 43, 36, 0.38);
}
.lifestyle-heading-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(100%, 18rem);
  margin: 1rem auto 0;
  color: rgba(247, 244, 237, 0.78);
  line-height: 1;
}
.lifestyle-heading-divider img {
  display: block;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  object-fit: contain;
}
.lifestyle-heading-divider::before,
.lifestyle-heading-divider::after {
  height: 1px;
  flex: 1;
  background: currentColor;
  content: "";
}
.lifestyle-caption {
  position: absolute;
  z-index: 2;
  left: clamp(1rem, 4vw, 3.2rem);
  bottom: clamp(1rem, 4vw, 3.2rem);
  width: min(25rem, calc(100% - 2rem));
  height: min(18rem, calc(100% - 2rem));
  padding: 0.85rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  background: rgba(247, 244, 237, 0.1);
  box-shadow: 0 18px 45px rgba(48, 56, 49, 0.1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--warm);
  font-size: 0.88rem;
  line-height: 1.45;
  scrollbar-width: none;
}
.lifestyle-caption::-webkit-scrollbar {
  display: none;
}
.lifestyle-caption > .lang-fr {
  display: block;
}
.lifestyle-caption > .lang-en {
  display: none;
}
html[data-lang="en"] .lifestyle-caption > .lang-fr {
  display: none;
}
html[data-lang="en"] .lifestyle-caption > .lang-en {
  display: block;
}
.lifestyle-conversation-turn,
.lifestyle-conversation-bubble,
.lifestyle-conversation-bubble > span {
  display: block;
}
.lifestyle-conversation-turn + .lifestyle-conversation-turn {
  margin-top: 0.65rem;
}
.lifestyle-caption-label {
  display: block;
  margin: 0 0.55rem 0.25rem;
  color: var(--cotton);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lifestyle-conversation-bubble {
  width: fit-content;
  max-width: 92%;
  padding: 0.7rem 0.85rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: 0 7px 20px rgba(48, 56, 49, 0.07);
  line-height: 1.4;
}
.lifestyle-conversation-bubble--primary {
  font-size: 0.84rem;
  font-weight: 500;
}
.lifestyle-conversation-bubble--primary > span + span,
.lifestyle-conversation-bubble--secondary > span + span {
  margin-top: 0.25rem;
}
.lifestyle-conversation-turn--user {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.lifestyle-conversation-turn--user .lifestyle-caption-label {
  margin-right: 0.55rem;
}
.lifestyle-conversation-bubble--user {
  max-width: 78%;
  background: var(--deep);
  color: var(--cotton);
  font-size: 0.84rem;
  font-weight: 500;
  box-shadow: none;
}
.lifestyle-conversation-bubble--secondary {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 500;
}
.pillar-carousel {
  position: absolute;
  z-index: 3;
  right: clamp(1rem, 4vw, 3.2rem);
  bottom: clamp(1rem, 4vw, 3.2rem);
  width: min(17rem, calc(100% - 2rem));
  min-height: 10.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.6rem;
  background: rgba(230, 222, 209, 0.18);
  box-shadow: 0 16px 38px rgba(48, 56, 49, 0.12);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.pillar-feature-card {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.55s ease,
    visibility 0s linear 0.55s;
}
.pillar-feature-card.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
.pillar-feature-link {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  color: var(--cotton);
}
.pillar-feature-image,
.pillar-feature-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.pillar-feature-image {
  object-fit: cover;
  opacity: 0.82;
}
.pillar-feature-card--nutrition .pillar-feature-image {
  object-position: 70% center;
}
.pillar-feature-card--movement .pillar-feature-image {
  object-position: 72% center;
}
.pillar-feature-card--beauty .pillar-feature-image {
  object-position: 35% center;
}
.pillar-feature-card--balance .pillar-feature-image {
  object-position: 64% center;
}
.pillar-feature-overlay {
  background: linear-gradient(
    0deg,
    rgba(34, 43, 36, 0.76) 0%,
    rgba(34, 43, 36, 0.2) 72%,
    rgba(34, 43, 36, 0.08) 100%
  );
}
.pillar-feature-icon {
  position: absolute;
  top: 0.75rem;
  left: 0.85rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(247, 244, 237, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pillar-feature-icon img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}
.pillar-feature-content {
  position: absolute;
  right: 0.9rem;
  bottom: 2.65rem;
  left: 0.9rem;
  display: block;
  max-width: none;
}
.pillar-feature-title,
.pillar-feature-description {
  display: block;
}
.pillar-feature-title {
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.035em;
}
.pillar-feature-description {
  max-width: 15rem;
  margin-top: 0.35rem;
  color: rgba(247, 244, 237, 0.92);
  font-size: 0.72rem;
  line-height: 1.35;
}
.pillar-feature-progress {
  position: absolute;
  z-index: 2;
  right: 0.55rem;
  bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.pillar-feature-progress button {
  display: grid;
  width: 2.35rem;
  height: 2rem;
  padding: 0.45rem 0.25rem;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.pillar-feature-progress-segment {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: rgba(247, 244, 237, 0.3);
}
.pillar-feature-progress-segment::after {
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--sage);
  content: "";
}
.pillar-feature-progress button.is-active .pillar-feature-progress-segment::after {
  width: 100%;
  animation: pillar-progress 5s linear;
}
.pillar-carousel.is-paused
  .pillar-feature-progress
  button.is-active
  .pillar-feature-progress-segment::after {
  animation-play-state: paused;
}
@keyframes pillar-progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
}
.experience-copy {
  min-width: 0;
}
.experience-heading {
  font-size: clamp(2.05rem, 3.15vw, 3.25rem);
}
.experience-heading-line {
  white-space: nowrap;
}
.experience-intro {
  max-width: 34rem;
}
.experience-points {
  display: grid;
  gap: 1.15rem;
  margin-top: 2.25rem;
}
.experience-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.experience-point-icon {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(83, 103, 90, 0.34);
  border-radius: 50%;
  color: var(--deep);
}
.experience-point-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}
.experience-point-title {
  margin: 0;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.2rem;
  font-weight: 450;
  line-height: 1.15;
}
.experience-point-text {
  margin: 0.28rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}
.experience-visual {
  display: grid;
  width: 100%;
  padding: clamp(0.75rem, 2.5vw, 1.75rem);
  place-items: center;
  border-radius: var(--radius);
  background: rgba(230, 222, 209, 0.32);
  box-shadow: 0 20px 48px rgba(48, 56, 49, 0.09);
}
.experience-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 0.5rem);
}
@media (max-width: 900px) {
  .experience-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.5rem;
  }
  .experience-intro {
    font-size: 0.98rem;
  }
}
@media (max-width: 760px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
  .experience-points {
    margin-top: 2rem;
  }
  .experience-visual {
    width: min(100%, 42rem);
    margin-inline: auto;
  }
}
.intro-grid,
.feature-grid,
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}
.intro-mark {
  min-height: 25rem;
  padding: 2.3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--sage), #dce2d7 70%);
  position: relative;
  overflow: hidden;
}
.intro-mark:before {
  content: "";
  position: absolute;
  top: 12%;
  right: -20%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
}
.intro-mark p {
  position: relative;
  max-width: 19rem;
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: 2rem;
  line-height: 1.04;
}
.interface {
  background: var(--deep);
  color: var(--cotton);
  overflow: hidden;
}
.interface .body-lg {
  color: #d5ddd2;
}
.device-stage {
  position: relative;
  min-height: 34rem;
  display: grid;
  place-items: center;
}
.device-stage:before {
  content: "";
  position: absolute;
  width: 30rem;
  max-width: 105%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 222, 209, 0.24), transparent 66%);
}
.device {
  position: relative;
  width: min(100%, 21rem);
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.28));
}
.floating-card {
  position: absolute;
  z-index: 2;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1rem;
  background: rgba(247, 244, 237, 0.96);
  color: var(--warm);
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  line-height: 1.35;
}
.floating-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--deep);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.floating-card--one {
  left: 0;
  top: 27%;
}
.floating-card--two {
  right: 0;
  bottom: 23%;
}
.benefits-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.72), transparent 32%);
}
.benefits-section .container {
  position: relative;
  z-index: 1;
}
.benefit-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(15rem, 0.9fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
}
.benefit-head .display {
  max-width: 13ch;
}
.benefit-intro {
  max-width: 25rem;
  padding-bottom: 0.35rem;
  color: var(--ink);
}
.benefit-intro p {
  margin: 0;
  line-height: 1.65;
}
.benefit-infinity {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 7rem;
  margin-top: 1.2rem;
  color: var(--eucalyptus);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}
.benefit-infinity::before,
.benefit-infinity::after {
  width: 1.7rem;
  height: 1px;
  background: currentColor;
  content: "";
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2.5rem;
}
.benefit {
  min-height: 28rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.72);
}
.benefit-number {
  color: var(--deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.benefit-icon {
  display: grid;
  width: 4.6rem;
  height: 4.6rem;
  margin: 0.25rem 0 0.3rem 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(165, 178, 160, 0.18);
  color: var(--deep);
}
.benefit--blush .benefit-icon {
  background: rgba(226, 205, 211, 0.52);
  color: #a2607d;
}
.benefit-icon svg,
.benefit-safety-icon svg {
  width: 2.7rem;
  height: 2.7rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.benefit h3 {
  margin: 0.7rem 0 0;
  font-size: 1.75rem;
  line-height: 1.05;
}
.benefit-rule {
  width: 1.6rem;
  height: 1px;
  margin-top: 0.85rem;
  background: var(--deep);
}
.benefit--blush .benefit-rule {
  background: #a2607d;
}
.benefit p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}
.benefit .benefit-lead {
  max-width: 14rem;
  color: var(--deep);
  font-family: Newsreader, Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}
.benefit--blush .benefit-lead {
  color: #a2607d;
}
.benefit-sprig {
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--sage);
  font-family: Newsreader, Georgia, serif;
  font-size: 2.5rem;
  line-height: 0.6;
  transform: rotate(-9deg);
}
.benefit--blush .benefit-sprig {
  color: #c58ba1;
}
.benefit-safety {
  display: grid;
  grid-template-columns: auto minmax(12rem, 0.85fr) 1px minmax(0, 1.5fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  margin-top: 1.15rem;
  padding: 1.15rem clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(165, 178, 160, 0.16);
  border-radius: 1rem;
  background: linear-gradient(100deg, rgba(230, 222, 209, 0.5), rgba(255, 255, 255, 0.68));
}
.benefit-safety::before {
  grid-column: 3;
  grid-row: 1;
  width: 1px;
  height: 3.5rem;
  background: var(--line);
  content: "";
}
.benefit-safety-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--deep);
}
.benefit-safety-icon svg {
  width: 2.8rem;
  height: 2.8rem;
}
.benefit-safety strong {
  color: var(--deep);
  font-family: Newsreader, Georgia, serif;
  font-size: 1rem;
  line-height: 1.3;
}
.benefit-safety p {
  grid-column: 4;
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.6;
}
.lifestyle-cards {
  background: #fff;
}
.card-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1rem;
  margin-top: 3.5rem;
}
.lifestyle-card {
  min-height: 27rem;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--linen) center/cover;
  position: relative;
}
.lifestyle-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(48, 56, 49, 0.54));
}
.lifestyle-card:nth-child(2) {
  background: linear-gradient(145deg, #e3d8ca, #b7c5b1);
}
.lifestyle-card:nth-child(3) {
  background: linear-gradient(145deg, #b9c3af, #e8e1d5);
}
.lifestyle-card div {
  position: relative;
  color: #fff;
}
.lifestyle-card h3 {
  margin: 0;
  font-size: 1.75rem;
}
.lifestyle-card p {
  margin: 0.4rem 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
}
.split-media {
  min-height: 31rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--linen);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split--reverse .split-media {
  order: 2;
}
.split--reverse .split-copy {
  order: 1;
}
.suggestions-cta {
  margin-top: 1.75rem;
}
.suggestions-section {
  background: #fff;
}
.pillars {
  background: var(--deep);
  color: var(--cotton);
}
.pillars-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}
.pillars-head .eyebrow {
  color: #c8d6c4;
}
.pillars-head .display {
  color: var(--cotton);
}
.pillars-head .display em {
  color: #c8d6c4;
}
.pillars-head .body-lg {
  max-width: 25rem;
  margin: 0;
  color: #d5ddd2;
  font-size: 1rem;
  line-height: 1.65;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}
.pillar {
  min-height: 32rem;
  padding: 0;
  border-radius: var(--radius);
  cursor: pointer;
  outline: none;
  perspective: 90rem;
}
.pillar-inner {
  position: relative;
  width: 100%;
  min-height: 32rem;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.22, 0.75, 0.22, 1);
  will-change: transform;
}
.pillar:hover .pillar-inner,
.pillar:focus .pillar-inner {
  transform: rotateY(180deg);
}
.pillar:focus-visible {
  outline: 3px solid var(--eucalyptus);
  outline-offset: 4px;
}
.pillar-face {
  position: absolute;
  inset: 0;
  min-height: 32rem;
  padding: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 237, 0.22);
  border-radius: var(--radius);
  background: rgba(247, 244, 237, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(34, 43, 36, 0.18);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.pillar-face--front {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pillar-front-icon {
  display: grid;
  width: 4.6rem;
  height: 4.6rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(165, 178, 160, 0.18);
  color: var(--deep);
}
.pillar-face--blush .pillar-front-icon {
  background: rgba(226, 205, 211, 0.52);
  color: #a2607d;
}
.pillar-face--clay .pillar-front-icon {
  background: rgba(230, 222, 209, 0.65);
  color: #8d765d;
}
.pillar-front-icon img,
.pillar-front-icon svg {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
}
.pillar-front-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.pillar-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.67);
  color: var(--deep);
  font-size: 1.25rem;
}
.pillar h3 {
  margin: 1rem 0 0;
  font-size: 1.75rem;
  line-height: 1.05;
}
.pillar-kicker {
  margin: 0.45rem 0 0;
  color: var(--deep);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}
.pillar-face--blush .pillar-kicker {
  color: #a2607d;
}
.pillar-face--clay .pillar-kicker {
  color: #8d765d;
}
.pillar-rule {
  width: 1.45rem;
  height: 1px;
  margin-top: 0.9rem;
  background: currentColor;
  opacity: 0.7;
}
.pillar-description {
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: 0.75rem;
  line-height: 1.65;
}
.pillar-topics {
  display: grid;
  width: 100%;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.25rem;
}
.pillar-topics > span {
  position: relative;
  display: block;
  padding: 0.42rem 0.65rem 0.42rem 1.65rem;
  border-radius: 999px;
  background: rgba(165, 178, 160, 0.14);
  color: var(--ink);
  font-size: 0.66rem;
  line-height: 1.25;
}
.pillar-topics > span::before {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  width: 0.38rem;
  height: 0.38rem;
  border: 1px solid var(--deep);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}
.pillar-face--blush .pillar-topics > span {
  background: rgba(226, 205, 211, 0.4);
}
.pillar-face--clay .pillar-topics > span {
  background: rgba(230, 222, 209, 0.5);
}
.pillar-face--back {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotateY(180deg);
}
.pillar-face--back h3 {
  margin: 0;
}
.pillar-face--back p {
  margin: 0.65rem 0 0;
  color: #3f4d41;
  font-size: 0.88rem;
  line-height: 1.55;
}
.privacy {
  background: var(--deep);
}
.privacy-card {
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius);
  background: linear-gradient(120deg, #eff1e9, var(--linen));
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
.privacy-card h2 {
  margin: 0;
  font-size: clamp(2.3rem, 3.5vw, 3.6rem);
  line-height: 1;
}
.privacy-card p {
  color: var(--muted);
  line-height: 1.7;
}
.mobile-section {
  overflow: hidden;
  background: var(--deep);
  color: var(--cotton);
}
.mobile-section .eyebrow {
  color: #d5ddd2;
}
.mobile-copy .body-lg {
  color: #d5ddd2;
}
.mobile-stage {
  position: relative;
  min-height: 34rem;
  display: grid;
  place-items: center;
}
.mobile-stage:before {
  content: "";
  position: absolute;
  width: 32rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(165, 178, 160, 0.17);
}
.mobile-stage img {
  position: relative;
  width: min(100%, 21rem);
  filter: drop-shadow(0 28px 35px rgba(0, 0, 0, 0.3));
}
.beta {
  background: var(--cotton);
}
.beta-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.beta .body-lg {
  color: var(--muted);
}
.beta-phase-note {
  margin: 1.4rem 0 0;
  color: var(--deep);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.35;
}
.beta-list {
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}
.beta-list li {
  margin: 0.65rem 0;
  color: var(--muted);
}
.beta-list li:before {
  content: "—";
  margin-right: 0.65rem;
}
.beta-socials {
  display: grid;
  justify-items: center;
  margin-top: 2.25rem;
}
.beta-socials p {
  margin: 0 0 0.75rem;
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.beta-socials .footer-socials {
  gap: 1rem;
  margin-top: 0;
}
.beta-socials .footer-social {
  border-color: var(--deep);
  background: var(--deep);
  color: var(--cotton);
}
.beta-form {
  padding: clamp(1.2rem, 3vw, 2.25rem);
  border: 1px solid rgba(83, 103, 90, 0.2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1.25rem 3.25rem rgba(48, 56, 49, 0.14);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}
.form-grid label.full {
  grid-column: 1/-1;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 3rem;
  margin-top: 0.45rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--cotton);
  color: var(--ink);
}
.form-grid textarea {
  min-height: 6.5rem;
  resize: vertical;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 3px solid rgba(126, 146, 132, 0.3);
  border-color: var(--deep);
}
.beta-form .button {
  width: 100%;
  margin-top: 1rem;
}
.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}
.faq {
  background: var(--white);
}
.faq-content {
  max-width: 68rem;
}
.faq-content .display {
  max-width: 42rem;
}
.faq-list {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border: 0;
  background: transparent;
  color: var(--deep);
  cursor: pointer;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}
.faq-icon {
  flex: 0 0 auto;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer p {
  max-width: 48rem;
  margin: 0 3rem 1.5rem 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}
@media (prefers-reduced-motion: no-preference) {
  .faq-answer:not([hidden]) {
    animation: faq-answer-reveal 0.2s ease-out;
  }
  @keyframes faq-answer-reveal {
    from {
      opacity: 0;
      transform: translateY(-0.35rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
.faq-more {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
  text-align: center;
}
.faq-more p {
  margin: 0;
  color: var(--muted);
}
.faq-intro {
  max-width: 48rem;
  color: var(--muted);
}
.faq-final {
  display: grid;
  justify-items: center;
  max-width: 42rem;
  margin: clamp(4rem, 8vw, 7rem) auto 0;
  text-align: center;
}
.faq-final h2 {
  margin: 0;
}
.faq-final p {
  margin: 1rem 0 1.5rem;
  color: var(--muted);
}
@media (max-width: 600px) {
  .faq-question {
    text-align: left;
  }
}
.footer {
  padding: 3.5rem 0;
  background: var(--deep);
  color: var(--cotton);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
}
.footer-logo {
  width: 10.5rem;
  filter: brightness(0) invert(1);
}
.footer p {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: #d5ddd2;
  font-size: 0.82rem;
  line-height: 1.65;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #d5ddd2;
}
.footer-links a:hover {
  color: #fff;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--eucalyptus);
  outline-offset: 3px;
}
@media (max-width: 900px) {
  .lifestyle-caption {
    width: min(22rem, calc(100% - 2rem));
    padding: 0.75rem;
  }
  .pillar-carousel {
    width: min(15rem, calc(100% - 2rem));
    min-height: 9.75rem;
  }
  .pillar-feature-title {
    font-size: 1.5rem;
  }
  .pillar-feature-description {
    font-size: 0.68rem;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-actions .login-link,
  .nav-actions > .button {
    display: none;
  }
  .mobile-menu.is-open {
    display: block;
    border-top: 1px solid var(--line);
    background: var(--cotton);
  }
  .mobile-menu .container {
    padding: 1rem 0 1.5rem;
    display: grid;
    gap: 0.75rem;
  }
  .mobile-menu a {
    padding: 0.65rem 0;
    color: var(--deep);
  }
  .mobile-menu .mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.35rem;
  }
  .intro-grid,
  .feature-grid,
  .split,
  .beta-grid {
    grid-template-columns: 1fr;
  }
  .split--reverse .split-media,
  .split--reverse .split-copy {
    order: initial;
  }
  .suggestions-split .split-copy {
    order: 1;
  }
  .suggestions-split .split-media {
    order: 2;
  }
  .device-stage,
  .mobile-stage {
    min-height: 28rem;
  }
  .pillars-head {
    display: block;
  }
  .pillars-head .body-lg {
    margin-top: 1.5rem;
  }
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .privacy-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.8rem;
  }
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lifestyle-card:first-child {
    grid-column: 1/-1;
  }
  .lifestyle-card {
    min-height: 20rem;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit-head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .benefit-intro {
    max-width: 35rem;
  }
  .benefit {
    min-height: 0;
  }
  .benefit h3 {
    margin-top: 0.7rem;
  }
  .benefit-safety {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .benefit-safety::before {
    display: none;
  }
  .benefit-safety p {
    grid-column: 2;
  }
}
@media (max-width: 720px) {
  .lifestyle-frame {
    margin-bottom: 0;
    overflow: hidden;
  }
  .lifestyle-frame img {
    border-radius: inherit;
  }
  .pillar-carousel {
    top: calc(100% + 0.8rem);
    right: auto;
    bottom: auto;
    left: 50%;
    width: calc(100% - 2rem);
    min-height: 8.5rem;
    aspect-ratio: 5 / 2;
    border-radius: 1.25rem;
    transform: translateX(-50%);
  }
  .pillar-feature-icon {
    top: 0.75rem;
    left: 0.85rem;
    width: 2rem;
    height: 2rem;
  }
  .pillar-feature-content {
    top: 0.8rem;
    right: 0.85rem;
    bottom: auto;
    left: 3.5rem;
  }
  .pillar-feature-title {
    font-size: 1.45rem;
  }
  .pillar-feature-description {
    max-width: 22rem;
    margin-top: 0.25rem;
    font-size: 0.68rem;
    line-height: 1.3;
  }
}
@media (max-width: 600px) {
  .benefit-grid {
    margin-top: 2rem;
  }
  .benefit-icon {
    width: 4rem;
    height: 4rem;
    margin-left: 1rem;
  }
  .benefit-safety {
    grid-template-columns: 1fr;
  }
  .benefit-safety p {
    grid-column: 1;
  }
  .pillar,
  .pillar-inner,
  .pillar-face {
    min-height: 30rem;
  }
  .pillar-face {
    padding: 1.4rem;
  }
  .lifestyle-heading {
    top: 1.25rem;
    right: auto;
    left: 50%;
    width: calc(100% - 2rem);
    max-width: 22rem;
    font-size: clamp(1.35rem, 6vw, 1.9rem);
    transform: translateX(-50%);
  }
  .lifestyle-heading-divider {
    width: min(100%, 12rem);
    margin-top: 0.65rem;
  }
  .lifestyle-caption {
    right: auto;
    left: 50%;
    width: calc(100% - 3rem);
    height: auto;
    max-height: 15rem;
    padding: 0.55rem;
    border-radius: 1.25rem;
    transform: translateX(-50%);
  }
  .lifestyle-conversation-turn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .lifestyle-conversation-turn--user {
    align-items: flex-end;
  }
  .lifestyle-caption-label {
    margin: 0 0 0.2rem 0.45rem;
    text-align: left;
  }
  .lifestyle-conversation-turn--user .lifestyle-caption-label {
    margin: 0 0.45rem 0.2rem 0;
    text-align: right;
  }
  .lifestyle-conversation-turn + .lifestyle-conversation-turn {
    margin-top: 0.4rem;
  }
  .lifestyle-conversation-bubble {
    max-width: 88%;
    margin: 0;
    padding: 0.5rem 0.65rem;
    text-align: left;
  }
  .lifestyle-conversation-bubble--primary {
    font-size: 0.84rem;
  }
  .lifestyle-conversation-bubble--secondary {
    font-size: 0.84rem;
  }
  .lifestyle-conversation-bubble--user {
    max-width: 82%;
    text-align: left;
  }
  .container {
    width: min(100% - 2rem, 76rem);
  }
  .section {
    padding: 4.5rem 0;
  }
  .nav {
    height: 5rem;
  }
  .wordmark {
    width: 10rem;
  }
  .nav-tagline {
    font-size: 0.43rem;
    letter-spacing: 0.14em;
  }
  .hero {
    text-align: left;
  }
  .hero .body-lg {
    margin-inline: 0;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .hero-note {
    justify-content: flex-start;
  }
  .lifestyle {
    padding: 0 1rem;
  }
  .lifestyle-frame {
    height: 29rem;
    border-radius: 1.25rem;
  }
  .lifestyle-frame img {
    object-position: 58% center;
  }
  .intro-mark {
    min-height: 19rem;
  }
  .floating-card {
    display: none;
  }
  .device-stage,
  .mobile-stage {
    min-height: 25rem;
  }
  .device,
  .mobile-stage img {
    width: 16.5rem;
  }
  .card-grid,
  .pillar-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .lifestyle-card:first-child {
    grid-column: auto;
  }
  .pillar {
    min-height: 15rem;
  }
  .footer-grid {
    display: block;
  }
  .footer-links {
    margin-top: 2rem;
  }
  .button {
    width: 100%;
  }
  .hero-actions {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .button {
    transition: none;
  }
  .pillar-feature-card {
    transition: none;
  }
  .pillar-inner {
    transition: none;
  }
  .pillar-feature-progress button.is-active .pillar-feature-progress-segment::after {
    animation: none;
  }
}
.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}
.footer-links button:hover {
  color: #fff;
}
.cookie-consent {
  position: fixed;
  z-index: 100;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: none;
  width: min(100% - 2rem, 46rem);
  margin: auto;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 50px rgba(30, 40, 31, 0.24);
  color: var(--ink);
}
.cookie-consent.is-visible {
  display: flex;
  gap: 1.5rem;
  align-items: end;
}
.cookie-consent__content {
  flex: 1;
}
.cookie-consent__eyebrow {
  margin: 0;
  color: var(--eucalyptus);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cookie-consent h2 {
  margin: 0.4rem 0 0;
  font-size: 1.55rem;
  line-height: 1.08;
}
.cookie-consent p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}
.cookie-consent__link a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.65rem;
}
.cookie-consent__actions .button {
  min-width: 0;
  min-height: 2.8rem;
  padding: 0.6rem 1rem;
}
@media (max-width: 600px) {
  .cookie-consent {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 1.25rem 1.25rem 0 0;
  }
  .cookie-consent.is-visible {
    display: block;
  }
  .cookie-consent__actions {
    margin-top: 1rem;
  }
  .cookie-consent__actions .button {
    width: 50%;
  }
}
.thank-you-main {
  display: grid;
  min-height: calc(100svh - 4.75rem);
  place-items: center;
  padding: clamp(5rem, 10vw, 9rem) 1.25rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.86), transparent 35%), var(--cotton);
}
.thank-you-card {
  width: min(100%, 45rem);
  text-align: center;
}
.thank-you-icon {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 auto 1.4rem;
  place-items: center;
  border: 1px solid rgba(83, 103, 90, 0.28);
  border-radius: 50%;
  background: #eef1e9;
  color: var(--deep);
}
.thank-you-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.thank-you-card .eyebrow:before {
  display: none;
}
.thank-you-card .display {
  max-width: 12ch;
  margin-inline: auto;
}
.thank-you-card .body-lg {
  margin: 1.7rem auto 0;
}
.thank-you-card .body-lg p {
  margin: 0 0 1rem;
}
.thank-you-card .button {
  margin-top: 1.4rem;
}
@media (max-width: 600px) {
  .thank-you-main {
    min-height: calc(100svh - 4.35rem);
    padding: 4.5rem 1rem;
  }
  .thank-you-card .button {
    width: min(100%, 20rem);
  }
}
.footer-grid {
  align-items: flex-start;
}
.footer-brand {
  max-width: 40rem;
}
.footer-brand p {
  margin-top: 1.25rem;
}
.footer-navigation {
  display: flex;
  max-width: 29rem;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.4rem;
}
.footer-links {
  justify-content: flex-end;
  line-height: 1.5;
}
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  color: #d5ddd2;
  font-size: 0.78rem;
}
.footer-socials {
  display: flex;
  gap: 0.55rem;
}
.footer-social {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.18s ease;
}
.footer-social:hover {
  transform: scale(1.14);
}
.footer-social--linkedin {
  color: #9dc7db;
}
.footer-social--facebook {
  color: #c6d5e4;
}
.footer-social--instagram {
  color: #e6b4b0;
}
.footer-social--instagram svg {
  width: 1.8rem;
  height: 1.8rem;
}
.footer-social--facebook svg {
  width: 1.65rem;
  height: 1.65rem;
}
.footer-social--email {
  color: var(--deep);
}
.footer-social--email svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
@media (max-width: 600px) {
  .footer-navigation {
    align-items: flex-start;
    margin-top: 2rem;
  }
  .footer-links {
    justify-content: flex-start;
    margin-top: 0;
  }
  .footer-meta {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.footer {
  padding: 0;
  background: var(--deep);
}
.footer .container {
  width: 100%;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4.5rem) 1.15rem;
  background: var(--deep);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}
.footer-brand {
  max-width: 34rem;
}
.footer-logo {
  width: 9.8rem;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.footer-brand p {
  max-width: 28rem;
  margin: 1.1rem 0 1.8rem;
  color: #e3e8df;
  font-family: Newsreader, Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.3;
}
.footer-brand .footer-tagline {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.45;
}
.footer-links {
  display: grid;
  grid-template-columns: max-content;
  justify-content: start;
  gap: 0.55rem;
  color: #d5ddd2;
  font-size: 0.78rem;
}
.footer-links a {
  white-space: nowrap;
}
.footer-socials {
  margin-top: 1.75rem;
}
.footer-social {
  width: 2.5rem;
  height: 2.5rem;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}
.footer-social--linkedin {
  color: #b3d2dc;
}
.footer-social--facebook {
  color: #c6d5e4;
}
.footer-social--instagram {
  color: #ecc7c3;
}
.footer-social--email {
  color: var(--deep);
}
.footer-cta {
  align-self: start;
  padding-top: 0.15rem;
  color: var(--cotton);
}
.footer-cta .eyebrow {
  color: #c8d6c4;
}
.footer-cta h2 {
  max-width: 17rem;
  margin: 0.75rem 0 0;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1;
}
.footer-cta p {
  max-width: 20rem;
  margin: 0.9rem 0 1.35rem;
  color: #d5ddd2;
  font-size: 0.86rem;
  line-height: 1.6;
}
.footer-cta .button {
  min-width: 0;
  background: var(--cotton);
  color: var(--deep);
}
.footer-cta .button:hover {
  background: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #d5ddd2;
  font-size: 0.7rem;
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}
.footer-bottom a:hover,
.footer-bottom button:hover {
  color: #fff;
}
.footer-bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}
@media (max-width: 700px) {
  .footer {
    padding: 0;
    background: var(--deep);
  }
  .footer .container {
    width: 100%;
    padding: 2.5rem 1.5rem 1.25rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-links {
    grid-template-columns: max-content;
    gap: 0.65rem;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-cta .button {
    width: auto;
  }
}
.footer .container {
  padding: clamp(1.75rem, 3.5vw, 2.7rem) clamp(1.5rem, 4vw, 3.4rem) 0.9rem;
}
.footer-grid {
  gap: clamp(2rem, 5vw, 4rem);
}
.footer-brand p {
  margin: 0.85rem 0 1.25rem;
  font-size: 1.06rem;
}
.footer-socials {
  margin-top: 1.15rem;
}
.footer-cta h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
}
.footer-cta p {
  margin: 0.6rem 0 0.9rem;
  font-size: 0.8rem;
}
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 0.85rem;
}
.footer-newsletter {
  display: flex;
  max-width: 23rem;
  margin-top: 1rem;
}
.footer-newsletter input {
  min-width: 0;
  flex: 1;
  height: 2.65rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-right: 0;
  border-radius: 0.25rem 0 0 0.25rem;
  background: transparent;
  color: var(--cotton);
  font-size: 0.78rem;
}
.footer-newsletter input::placeholder {
  color: #d5ddd2;
}
.footer-newsletter input:focus {
  outline: 2px solid #c8d6c4;
  outline-offset: 2px;
}
.footer-newsletter button {
  height: 2.65rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0 0.25rem 0.25rem 0;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cotton);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
}
.footer-newsletter button:hover {
  background: rgba(255, 255, 255, 0.2);
}
.footer-newsletter-note {
  max-width: 23rem;
  margin: 0.55rem 0 0;
  color: #d5ddd2;
  font-size: 0.67rem;
  line-height: 1.4;
}
.footer-newsletter-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-feedback {
  min-height: 1.25rem;
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
}
.form-feedback:empty {
  min-height: 0;
  margin: 0;
}
.form-feedback.is-success {
  color: #d9f2dc;
}
.form-feedback.is-error {
  color: #ffd1cc;
}
.beta-form .form-feedback.is-success,
.contact-form .form-feedback.is-success {
  color: #2f6840;
}
.beta-form .form-feedback.is-error,
.contact-form .form-feedback.is-error {
  color: #9f2d20;
}
.beta-form.is-submitted,
.contact-form.is-submitted {
  display: grid;
  min-height: clamp(22rem, 46vw, 34rem);
  place-items: center;
}
.form-success {
  width: min(100%, 34rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  animation: form-success-entrance 450ms ease-out both;
}
.form-success:focus {
  outline: none;
}
.form-success-icon {
  display: inline-grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  border-radius: 50%;
  background: var(--deep);
  color: var(--cotton);
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 0.8rem 2rem rgba(48, 56, 49, 0.18);
}
.form-success h2 {
  margin: 1.35rem 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
}
.form-success-message {
  margin: 1.25rem 0 0;
  color: var(--deep);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 650;
  line-height: 1.5;
}
.form-success-detail {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.form-success-closing {
  margin: 1.25rem 0 0;
  color: var(--deep);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 600;
}
@keyframes form-success-entrance {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .form-success {
    animation: none;
  }
}
.footer-newsletter button:disabled,
.beta-form button:disabled,
.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}
@media (max-width: 700px) {
  .footer .container {
    padding: 2rem 1.5rem 1rem;
  }
  .footer-newsletter {
    max-width: 100%;
  }
}
.nav-links {
  gap: 1rem;
}
.nav-links a {
  white-space: nowrap;
}
.nav-links {
  margin-left: auto;
}
@media (max-width: 900px) {
  .mobile-menu .container {
    padding: 0.75rem 0 1rem;
    justify-items: end;
    gap: 0.15rem;
    text-align: right;
  }
  .mobile-menu a {
    padding: 0.4rem 0;
  }
  .mobile-menu .mobile-link[href="#"] {
    display: none;
  }
  .mobile-menu .mobile-actions {
    justify-content: flex-end;
    margin-top: 0.5rem;
  }
  .mobile-menu .button {
    width: auto;
  }
}
@media (max-width: 600px) {
  .mobile-menu .container {
    padding: 0.65rem 0 0.85rem;
  }
  .mobile-menu .mobile-actions {
    gap: 0.55rem;
  }
  .mobile-menu .button {
    width: auto;
  }
}
@media (max-width: 900px) {
  .mobile-menu .container {
    justify-items: start;
    text-align: left;
  }
  .mobile-menu .mobile-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }
  .mobile-menu .button {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .mobile-menu .mobile-actions {
    display: grid !important;
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: start !important;
  }
  .mobile-menu .language-switch {
    justify-self: start !important;
  }
  .mobile-menu .nav-cta {
    width: 100% !important;
    justify-self: stretch;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .mobile-menu .container {
    gap: 0;
  }
  .mobile-menu a {
    padding: 0.18rem 0;
    line-height: 1.25;
  }
  .mobile-menu .mobile-actions {
    margin-top: 0.45rem;
  }
}

/* Temporary Revellia editorial placeholders: replace these assets when final product imagery is available. */
.device-stage,
.mobile-stage {
  min-height: clamp(17rem, 30vw, 24rem);
}
.floating-card {
  display: none;
}
.split-media {
  min-height: clamp(17rem, 30vw, 24rem);
}

.support-hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(135deg, var(--cotton), var(--linen));
}
.support-hero .display {
  max-width: 12ch;
}
.support-hero .body-lg {
  max-width: 44rem;
}
.support-main {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}
.support-layout {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}
.support-toc {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 0.2rem;
}
.support-toc a {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}
.support-toc a:hover {
  color: var(--deep);
}
.support-content {
  display: grid;
  gap: 1rem;
}
.support-card {
  padding: clamp(1.35rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: #fff;
}
.support-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}
.support-card p,
.support-card li {
  color: var(--muted);
  line-height: 1.7;
}
.support-card ul {
  padding-left: 1.1rem;
}
.support-note {
  padding: 1.2rem 1.35rem;
  border-radius: 1rem;
  background: #eef1e9;
  color: var(--deep);
  line-height: 1.6;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-aside {
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #eff1e9, var(--linen));
}
.contact-aside-stack {
  display: grid;
  gap: 1rem;
}
.contact-aside h2 {
  margin-top: 0;
  font-size: 2.2rem;
}
.contact-aside-icon {
  display: flex;
  justify-content: center;
  margin: 1.75rem 0 0;
}
.contact-aside .footer-social {
  width: 3rem;
  height: 3rem;
  border-color: var(--deep);
  background: var(--deep);
  color: var(--cotton);
}
.contact-form {
  padding: clamp(1.3rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .support-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .support-toc {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
  .support-hero .display {
    max-width: 14ch;
  }
}

.editorial-banner {
  padding: clamp(4.5rem, 9vw, 9rem) 1.25rem;
  background: #fff;
}
.editorial-banner__frame {
  position: relative;
  min-height: clamp(30rem, 50vw, 43rem);
  max-width: 88rem;
  margin: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: #53675a url("archive-unused/revellia-banner-ritual.png") center/cover no-repeat;
}
.editorial-banner__frame:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(32, 42, 35, 0.62),
    rgba(32, 42, 35, 0.12) 68%,
    rgba(32, 42, 35, 0.05)
  );
}
.editorial-banner__content {
  position: relative;
  width: min(100% - 3rem, 34rem);
  margin-left: clamp(1.5rem, 7vw, 7rem);
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 1.3rem;
  background: rgba(247, 244, 237, 0.9);
  box-shadow: 0 18px 50px rgba(25, 35, 28, 0.18);
}
.editorial-banner__content h2 {
  margin: 0.7rem 0 0;
  font-size: clamp(2.3rem, 3.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}
.editorial-banner__content p {
  margin: 1.2rem 0 0;
  color: var(--deep);
  line-height: 1.65;
}
.editorial-banner__marks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.editorial-banner__mark {
  padding: 0.9rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.65);
  color: var(--deep);
  font-size: 0.8rem;
  line-height: 1.4;
}
.editorial-banner__mark strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .display,
  .privacy-card h2,
  .editorial-banner__content h2 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .hero .display {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }
  .editorial-banner {
    padding: 4rem 1rem;
  }
  .editorial-banner__frame {
    min-height: 38rem;
    align-items: flex-end;
    background-position: 63% center;
  }
  .editorial-banner__content {
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
  }
  .editorial-banner__marks {
    grid-template-columns: 1fr;
  }
}

/* Landing UI images: rendered directly from the HTML image elements. */
.device-stage {
  min-height: clamp(24rem, 35vw, 32rem);
}
.split-media {
  min-height: clamp(24rem, 35vw, 32rem);
}
.mobile-stage {
  min-height: clamp(25rem, 36vw, 34rem);
}
.lifestyle-card:nth-child(1) {
  background-image: url("archive-unused/revellia-banner-ritual.png");
}
.lifestyle-card:nth-child(2) {
  background: url("archive-unused/revellia-lifestyle-adjust.jpg") 72% center/cover no-repeat;
}
.lifestyle-card:nth-child(3) {
  background: url("archive-unused/revellia-lifestyle-advance.jpg") 64% center/cover no-repeat;
}
@media (max-width: 600px) {
  .device-stage,
  .split-media,
  .mobile-stage {
    min-height: 24rem;
    background-size: contain;
  }
  .lifestyle-card:nth-child(1) {
    background-position: 70% center;
  }
}

/* Keep the HTML UI imagery fully visible at every breakpoint. */
.device-stage,
.split-media,
.mobile-stage {
  display: grid;
  place-items: center;
  background: transparent;
}
.device-stage .device,
.split-media img,
.mobile-stage img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  filter: none;
}

/* Soft editorial photography beneath the four wellness pillars. */
.pillar-face--back {
  position: absolute;
  isolation: isolate;
}
.pillar-face--back::before,
.pillar-face--back::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pillar-face--back::before {
  z-index: 0;
  inset: -0.45rem;
  background: center/cover no-repeat;
  filter: blur(2.5px);
  transform: scale(1.035);
  opacity: 0.64;
}
.pillar-face--back::after {
  z-index: 1;
  background: rgba(247, 244, 237, 0.42);
}
.pillar-face--back > * {
  position: relative;
  z-index: 2;
}
.pillar-back--nutrition::before {
  background-image: url("revellia-4pillars-nutrition.png");
  background-position: 70% center;
}
.pillar-back--nutrition::after {
  background-color: rgba(185, 203, 174, 0.62);
}
.pillar-back--movement::before {
  background-image: url("revellia-4pillars-mouvement.jpg");
  background-position: 72% center;
}
.pillar-back--movement::after {
  background-color: rgba(165, 178, 160, 0.66);
}
.pillar-back--balance::before {
  background-image: url("revellia-4pillars-equilibre.jpg");
  background-position: 64% center;
}
.pillar-back--balance::after {
  background-color: rgba(195, 177, 181, 0.68);
}
.pillar-back--beauty::before {
  background-image: url("revellia-4pillars-beaute.jpg");
  background-position: 35% center;
}
.pillar-back--beauty::after {
  background-color: rgba(226, 205, 211, 0.68);
}

.privacy-visual {
  width: min(100%, 32rem);
  max-width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .nav-actions > .language-switch {
    display: none;
  }
  .mobile-menu .language-switch {
    display: grid;
  }
  .mobile-menu .container {
    gap: 0.65rem;
  }
  .mobile-menu .mobile-actions {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.1rem;
  }
  .mobile-menu .nav-cta {
    width: 100%;
    min-height: 3rem;
    color: #fcfbf7;
    opacity: 1;
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    font-size: 0.92rem;
    text-indent: 0;
    overflow: visible;
  }
  .mobile-menu .nav-cta span {
    position: relative;
    z-index: 2;
  }
  .mobile-menu .nav-cta:before,
  .mobile-menu .nav-cta:after {
    pointer-events: none;
  }
}

.interface .display em {
  color: var(--ink);
}

.mobile-section .display em {
  color: var(--ink);
}

.intro-mark--dashboard,
.intro-mark--lifestyle {
  min-height: 0;
  padding: 0;
  display: grid;
  place-items: center;
  background: transparent;
}
.intro-mark--dashboard:before,
.intro-mark--lifestyle:before {
  display: none;
}
.intro-mark--dashboard img,
.intro-mark--lifestyle img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.intro-mark--dashboard img {
  opacity: 0.48;
}
.intro-mark .intro-photo-note {
  position: absolute;
  bottom: clamp(0.75rem, 2vw, 1.25rem);
  left: clamp(0.75rem, 2vw, 1.25rem);
  width: min(55%, 18rem);
  min-height: 0;
  margin: 0;
  padding: 0;
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-shadow: none;
}
.intro-photo-note::after {
  display: none;
}
.intro-photo-note > span {
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .intro-mark--dashboard {
    display: none;
  }

  .intro-mark .intro-photo-note {
    width: min(65%, 14rem);
    min-height: 0;
    padding: 0;
    font-size: clamp(0.92rem, 4.2vw, 1.15rem);
  }
}

.scroll-to-top {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 20;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(75, 101, 86, 0.34);
  border-radius: 50%;
  background: var(--cotton);
  box-shadow: 0 0.5rem 1.5rem rgba(49, 65, 56, 0.16);
  color: var(--deep);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.scroll-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--sage);
}

.scroll-to-top:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
