:root {
  --porcelain: #f5f7f5;
  --white: #ffffff;
  --ink: #14282d;
  --ink-soft: #254047;
  --muted: #5e7073;
  --blue: #356b86;
  --blue-deep: #102e38;
  --mist: #dcebef;
  --mist-strong: #c9e0e6;
  --rose: #ead9dc;
  --line: rgba(20, 40, 45, 0.16);
  --line-light: rgba(255, 255, 255, 0.17);
  --display: "Iowan Old Style", Baskerville, "Palatino Linotype", Georgia, serif;
  --body: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 0.72, 0.2, 1);
  --quick: 160ms;
  --standard: 420ms;
  --expressive: 680ms;
}

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

html {
  scroll-behavior: smooth;
  background: var(--blue-deep);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

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

button,
a,
summary {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
video:focus-visible {
  outline: 3px solid #5c9fc0;
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.052em;
}

h1,
h2 {
  line-height: 0.96;
}

h1 em,
h2 em {
  color: var(--blue);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.65rem, 5.2vw, 5.15rem);
}

.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;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 15px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform var(--quick) ease;
}

.skip-link:focus {
  transform: none;
}

.section {
  padding: clamp(84px, 9vw, 132px) max(24px, calc((100vw - var(--container)) / 2));
}

.section-label,
.eyebrow {
  margin: 0 0 19px;
  color: var(--blue);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.015em;
  transition:
    background var(--quick) ease,
    color var(--quick) ease,
    border-color var(--quick) ease,
    transform var(--quick) var(--ease);
}

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

.button-primary {
  background: var(--blue-deep);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue);
}

.button-light {
  background: var(--white);
  color: var(--blue-deep);
}

.button-light:hover {
  background: var(--mist);
}

.text-link {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 800;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform var(--quick) var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

/* Header */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px max(24px, calc((100vw - var(--container)) / 2));
  color: var(--ink);
  transition:
    min-height 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  min-height: 70px;
  background: rgba(245, 247, 245, 0.92);
  box-shadow: 0 12px 34px rgba(16, 46, 56, 0.08);
  backdrop-filter: blur(14px);
}

.site-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.9;
}

.site-mark {
  position: relative;
  width: 26px;
  height: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

.site-mark i {
  border: 1px solid var(--blue);
}

.site-mark i:nth-child(2),
.site-mark i:nth-child(3) {
  background: var(--blue);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
}

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 800;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--quick) var(--ease);
}

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

.menu-toggle {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  grid-template-columns: minmax(340px, 0.87fr) minmax(500px, 1.13fr);
  align-items: center;
  gap: clamp(34px, 5vw, 80px);
  padding: 120px max(24px, calc((100vw - var(--container)) / 2)) 76px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(220, 235, 239, 0.58), transparent 38%),
    var(--porcelain);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42vw;
  height: 100%;
  background: rgba(220, 235, 239, 0.5);
}

.hero-thread {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  width: 100%;
  height: 68%;
  overflow: visible;
  pointer-events: none;
}

.hero-thread path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
  opacity: 0.55;
}

.js .hero-thread path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.2s var(--ease) 260ms;
}

.js.is-ready .hero-thread path {
  stroke-dashoffset: 0;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 590px;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(4.25rem, 7.7vw, 7.5rem);
  line-height: 0.86;
}

.hero h1 em {
  display: block;
  margin-left: 0.42em;
  font-style: italic;
}

.hero-lead {
  max-width: 560px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  z-index: 3;
  width: min(690px, 49vw);
  justify-self: end;
  aspect-ratio: 1 / 0.92;
}

.hero-photo-wrap {
  position: absolute;
  top: 5%;
  right: 1%;
  width: 80%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--mist);
  box-shadow: 0 30px 70px rgba(16, 46, 56, 0.12);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone {
  position: absolute;
  right: 1%;
  bottom: -12%;
  z-index: 3;
  width: 27%;
  filter: drop-shadow(0 26px 22px rgba(16, 46, 56, 0.24));
}

.hero-count {
  position: absolute;
  top: -2%;
  left: 0;
  z-index: 4;
  display: grid;
  color: var(--blue-deep);
}

.hero-count strong {
  font-family: var(--display);
  font-size: clamp(5rem, 8vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.hero-count span {
  margin: 15px 0 0 9px;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-caption {
  position: absolute;
  bottom: 2%;
  left: 1%;
  z-index: 4;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  font-style: italic;
  line-height: 1.1;
}

.js .hero-copy > *,
.js .hero-count,
.js .hero-caption {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease);
}

.js .hero-photo-wrap {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 820ms var(--ease);
}

.js .hero-phone {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms var(--ease) 500ms,
    transform 620ms var(--ease) 500ms;
}

.js.is-ready .hero-copy > *,
.js.is-ready .hero-count,
.js.is-ready .hero-caption,
.js.is-ready .hero-phone {
  opacity: 1;
  transform: none;
}

.js.is-ready .hero-photo-wrap {
  clip-path: inset(0);
}

.js.is-ready .hero-copy > :nth-child(2) { transition-delay: 100ms; }
.js.is-ready .hero-copy > :nth-child(3) { transition-delay: 210ms; }
.js.is-ready .hero-copy > :nth-child(4) { transition-delay: 290ms; }
.js.is-ready .hero-count { transition-delay: 410ms; }
.js.is-ready .hero-caption { transition-delay: 530ms; }

/* Ribbon */

.fact-ribbon {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  background: var(--blue-deep);
  color: var(--white);
}

.fact-ribbon p {
  min-height: 106px;
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 16px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line-light);
}

.fact-ribbon p:first-child {
  border-left: 1px solid var(--line-light);
}

.fact-ribbon strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
}

.fact-ribbon p > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 800;
}

.wave,
.mini-wave {
  height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wave i,
.mini-wave i {
  width: 2px;
  display: block;
  background: currentColor;
}

.wave i:nth-child(1) { height: 8px; }
.wave i:nth-child(2) { height: 20px; }
.wave i:nth-child(3) { height: 28px; }
.wave i:nth-child(4) { height: 16px; }
.wave i:nth-child(5) { height: 10px; }

/* Intro */

.intro {
  position: relative;
  display: grid;
  grid-template-columns: 0.19fr 1.1fr 0.71fr;
  align-items: end;
  gap: clamp(28px, 5vw, 80px);
  background: var(--porcelain);
}

.section-index {
  align-self: start;
  margin: 7px 0 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
}

.intro-heading {
  max-width: 790px;
}

.intro-copy {
  max-width: 430px;
  padding-bottom: 4px;
  color: var(--muted);
}

.intro-copy p {
  margin-bottom: 0;
}

.quiet-note {
  margin-top: 24px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
  font-size: 0.78rem;
  font-weight: 800;
}

/* Ritual mechanism */

.ritual {
  position: relative;
  overflow: hidden;
  background: var(--mist);
}

.ritual::before {
  content: "";
  position: absolute;
  top: 0;
  right: max(24px, calc((100vw - var(--container)) / 2));
  width: 1px;
  height: 78px;
  background: var(--blue);
}

.ritual-heading {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(280px, 0.48fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 52px;
}

.ritual-heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: -40px;
}

.ritual-heading h2 {
  max-width: 760px;
}

.ritual-heading > p:last-child {
  max-width: 440px;
  margin: 0 0 5px;
  color: var(--muted);
}

.ritual-shell {
  position: relative;
}

.ritual-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(20, 40, 45, 0.2);
  border-bottom: 1px solid rgba(20, 40, 45, 0.2);
}

.ritual-tab {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-content: center;
  gap: 2px 16px;
  padding: 17px 24px;
  border: 0;
  border-right: 1px solid rgba(20, 40, 45, 0.2);
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition:
    color var(--standard) ease,
    background var(--standard) ease;
}

.ritual-tab:last-child {
  border-right: 0;
}

.ritual-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--standard) var(--ease);
}

.ritual-tab:hover,
.ritual-tab.is-active {
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
}

.ritual-tab.is-active::after {
  transform: scaleX(1);
}

.ritual-tab > span {
  grid-row: 1 / 3;
  color: var(--blue);
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
}

.ritual-tab strong {
  font-size: 0.78rem;
}

.ritual-tab small {
  font-size: 0.66rem;
}

.ritual-progress {
  position: absolute;
  top: 142px;
  right: 26px;
  left: 26px;
  z-index: 6;
  height: 1px;
  background: rgba(20, 40, 45, 0.16);
}

.ritual-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--blue);
  transition: width var(--expressive) var(--ease);
}

.ritual-shell[data-step="1"] .ritual-progress span { width: 0; }
.ritual-shell[data-step="2"] .ritual-progress span { width: 50%; }
.ritual-shell[data-step="3"] .ritual-progress span { width: 100%; }

.ritual-progress i {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid var(--blue);
  background: var(--mist);
  transform: translate(-50%, -50%);
  transition: background var(--standard) ease;
}

.ritual-progress i:nth-of-type(1) { left: 0; }
.ritual-progress i:nth-of-type(2) { left: 50%; }
.ritual-progress i:nth-of-type(3) { left: 100%; }

.ritual-shell[data-step="1"] .ritual-progress i:nth-of-type(1),
.ritual-shell[data-step="2"] .ritual-progress i:nth-of-type(-n + 2),
.ritual-shell[data-step="3"] .ritual-progress i {
  background: var(--blue);
}

.ritual-stage {
  position: relative;
  min-height: 630px;
  margin-top: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(16, 46, 56, 0.09);
}

.ritual-panel {
  min-height: 630px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.js .ritual-panel {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(18px);
  pointer-events: none;
  transition:
    opacity var(--standard) var(--ease),
    transform var(--standard) var(--ease),
    visibility 0s var(--standard);
}

.js .ritual-panel.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition-delay: 60ms;
}

.js .ritual-panel.is-leaving {
  z-index: 1;
  visibility: visible;
  opacity: 0;
  transform: translateX(-18px);
  transition-delay: 0s;
}

.panel-media {
  position: relative;
  min-width: 0;
  min-height: 630px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #eaf2f3;
}

.panel-copy {
  align-self: center;
  max-width: 520px;
  padding: 70px clamp(38px, 5vw, 76px);
}

.panel-number {
  margin-bottom: 21px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.panel-copy h3 {
  color: var(--ink);
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
  line-height: 1;
}

.panel-copy > p:not(.panel-number) {
  margin: 26px 0 0;
  color: var(--muted);
}

.panel-proof {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 32px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 800;
}

.panel-proof > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f755f;
  box-shadow: 0 0 0 5px rgba(47, 117, 95, 0.12);
}

.art-media::before {
  content: "";
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--rose);
}

.art-media::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(53, 107, 134, 0.2);
}

.art-media img {
  position: relative;
  z-index: 2;
  width: min(620px, 88%);
  filter: drop-shadow(0 28px 20px rgba(16, 46, 56, 0.17));
}

.qr-focus {
  position: absolute;
  right: 14%;
  bottom: 22%;
  z-index: 4;
  width: 68px;
  height: 68px;
}

.qr-focus i {
  position: absolute;
  width: 19px;
  height: 19px;
  border-color: var(--blue);
  border-style: solid;
}

.qr-focus i:nth-child(1) { top: 0; left: 0; border-width: 2px 0 0 2px; }
.qr-focus i:nth-child(2) { top: 0; right: 0; border-width: 2px 2px 0 0; }
.qr-focus i:nth-child(3) { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.qr-focus i:nth-child(4) { right: 0; bottom: 0; border-width: 0 2px 2px 0; }

.scan-media {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15), transparent),
    var(--blue-deep);
}

.video-frame {
  position: relative;
  width: min(316px, 72%);
  padding: 8px;
  background: #0c171b;
  box-shadow: 18px 18px 0 var(--blue), 0 34px 60px rgba(4, 15, 19, 0.34);
}

.video-frame video {
  width: 100%;
  max-height: 548px;
  aspect-ratio: 478 / 850;
  background: #0c171b;
  object-fit: cover;
}

.scan-line {
  position: absolute;
  top: 10%;
  right: 11px;
  left: 11px;
  height: 2px;
  background: #8dd6f1;
  box-shadow: 0 0 14px #8dd6f1, 0 0 36px rgba(141, 214, 241, 0.66);
  opacity: 0;
  pointer-events: none;
}

.ritual-shell[data-step="2"] .is-active .scan-line {
  animation: scan 1.45s ease-in-out 180ms 1 both;
}

@keyframes scan {
  0% { opacity: 0; transform: translateY(0); }
  12% { opacity: 1; }
  78% { opacity: 0.85; }
  100% { opacity: 0; transform: translateY(430px); }
}

.prayer-media {
  isolation: isolate;
  background: linear-gradient(145deg, #e9f3f4, #f7faf8 70%);
}

.prayer-media img {
  position: relative;
  z-index: 3;
  width: min(300px, 52%);
  margin-top: 92px;
  filter: drop-shadow(0 28px 23px rgba(16, 46, 56, 0.23));
}

.audio-halo {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(53, 107, 134, 0.28);
  border-radius: 50%;
}

.halo-one {
  width: 430px;
  height: 430px;
}

.halo-two {
  width: 560px;
  height: 560px;
}

.ritual-shell[data-step="3"] .is-active .halo-one {
  animation: halo 720ms var(--ease) 220ms 1 both;
}

.ritual-shell[data-step="3"] .is-active .halo-two {
  animation: halo 720ms var(--ease) 320ms 1 both;
}

@keyframes halo {
  0% { opacity: 0; transform: scale(0.82); }
  60% { opacity: 1; }
  100% { opacity: 0.72; transform: scale(1); }
}

.mini-wave {
  height: 18px;
  color: var(--blue);
}

.mini-wave i:nth-child(1) { height: 6px; }
.mini-wave i:nth-child(2) { height: 15px; }
.mini-wave i:nth-child(3) { height: 10px; }
.mini-wave i:nth-child(4) { height: 5px; }

/* Collection */

.collection {
  background: var(--porcelain);
}

.collection-heading {
  display: grid;
  grid-template-columns: 0.42fr 1.15fr 0.43fr;
  align-items: end;
  gap: clamp(34px, 5vw, 78px);
}

.collection-heading h2 {
  max-width: 760px;
  font-size: clamp(2.75rem, 4.8vw, 4.7rem);
}

.collection-heading > p:last-child {
  max-width: 390px;
  margin: 0 0 4px;
  color: var(--muted);
}

.collection-number {
  align-self: start;
  display: grid;
  padding-top: 7px;
}

.collection-number strong {
  font-family: var(--display);
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.72;
}

.collection-number span {
  margin: 14px 0 0 6px;
  color: var(--blue);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2.1vw, 28px);
  margin-top: 64px;
}

.product-card {
  min-width: 0;
  margin: 0;
}

.product-stage {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(20, 40, 45, 0.12);
  transition: inset var(--standard) var(--ease);
}

.product-card:hover .product-stage::before {
  inset: 13px;
}

.product-stage img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 90%;
  max-height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(16, 46, 56, 0.15));
  transition: transform var(--standard) var(--ease);
}

.product-card:hover img {
  transform: translateY(-5px) scale(1.012);
}

.product-card figcaption {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: baseline;
  gap: 12px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.product-card figcaption span {
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card figcaption strong {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
}

.card-fatima { grid-column: span 7; }
.card-shirt { grid-column: span 5; }
.card-rose { grid-column: span 5; }
.card-rita { grid-column: span 7; }
.card-tile { grid-column: span 4; }
.card-aparecida { grid-column: span 8; }

.card-fatima .product-stage { min-height: 510px; background: #dfeaed; }
.card-shirt .product-stage { min-height: 510px; background: #ece6e4; }
.card-rose .product-stage { min-height: 440px; background: #eadbdd; }
.card-rita .product-stage { min-height: 440px; background: #d7e5e9; }
.card-tile .product-stage { min-height: 400px; background: #e9edef; }
.card-aparecida .product-stage { min-height: 400px; background: #dee9ec; }

.card-shirt .product-stage img { max-height: 96%; }
.card-rose .product-stage img { max-width: 82%; }
.card-tile .product-stage img { max-width: 84%; }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Prayer statement */

.prayer-band {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: clamp(90px, 10vw, 150px) max(24px, calc((100vw - var(--container)) / 2));
  overflow: hidden;
  background: var(--blue-deep);
  color: var(--white);
  text-align: center;
}

.prayer-band::before,
.prayer-band::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(220, 235, 239, 0.14);
  border-radius: 50%;
}

.prayer-band::before {
  width: 560px;
  height: 560px;
  top: -330px;
  left: -100px;
}

.prayer-band::after {
  width: 720px;
  height: 720px;
  right: -320px;
  bottom: -520px;
}

.prayer-band > p {
  position: relative;
  z-index: 2;
  margin: 0 0 22px;
  color: #91c4d3;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.prayer-band h2 {
  position: relative;
  z-index: 2;
  max-width: 970px;
  font-size: clamp(3.05rem, 6vw, 6.2rem);
}

.prayer-band h2 em {
  color: #91c4d3;
}

.prayer-band-facts {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.prayer-band-facts span {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 14px 24px;
  border-right: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.69rem;
}

.prayer-band-facts span:last-child {
  border-right: 0;
}

.prayer-band-facts strong {
  color: var(--white);
  font-size: 0.76rem;
}

.prayer-band-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 68px;
  background: rgba(220, 235, 239, 0.42);
}

.prayer-band-line span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 7px;
  height: 7px;
  background: #91c4d3;
  transform: translate(-50%, 50%) rotate(45deg);
}

/* FAQ */

.faq {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
  background: var(--porcelain);
}

.faq-intro {
  max-width: 500px;
}

.faq-intro h2 {
  font-size: clamp(2.55rem, 4.2vw, 4.35rem);
}

.faq-intro > p:last-child {
  max-width: 360px;
  margin: 25px 0 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 56px 23px 0;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 18px;
  height: 1px;
  background: var(--blue);
  transition: transform var(--quick) var(--ease);
}

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

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 620px;
  margin: -3px 0 24px;
  color: var(--muted);
}

/* Closing */

.closing {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  padding: clamp(78px, 8vw, 120px) max(24px, calc((100vw - var(--container)) / 2));
  overflow: hidden;
  background: #cfe2e7;
}

.closing-products {
  position: relative;
  min-height: 520px;
}

.closing-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, 44vw);
  aspect-ratio: 1;
  border: 1px solid rgba(53, 107, 134, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.closing-halo::before,
.closing-halo::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(53, 107, 134, 0.19);
  border-radius: inherit;
}

.closing-halo::after {
  inset: 25%;
}

.closing-mug,
.closing-tile {
  position: absolute;
  filter: drop-shadow(0 28px 24px rgba(16, 46, 56, 0.18));
}

.closing-mug {
  top: 23%;
  left: -5%;
  z-index: 2;
  width: min(490px, 40vw);
}

.closing-tile {
  right: -2%;
  bottom: 4%;
  z-index: 3;
  width: min(320px, 26vw);
}

.closing-copy {
  position: relative;
  z-index: 4;
  max-width: 580px;
}

.closing-copy h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.closing-copy > p:not(.section-label) {
  max-width: 500px;
  margin: 28px 0 0;
  color: var(--muted);
}

.closing .button {
  margin-top: 30px;
}

.site-footer {
  min-height: 98px;
  display: grid;
  grid-template-columns: 0.8fr 1.4fr auto;
  align-items: center;
  gap: 30px;
  padding: 24px max(24px, calc((100vw - var(--container)) / 2));
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.69rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--white);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 600;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(320px, 0.85fr) minmax(430px, 1.15fr);
  }

  .hero-visual {
    width: 48vw;
  }

  .intro {
    grid-template-columns: 50px 1.05fr 0.72fr;
  }

  .collection-heading {
    grid-template-columns: 0.35fr 1.15fr 0.5fr;
  }

  .ritual-stage,
  .ritual-panel,
  .panel-media {
    min-height: 590px;
  }

  .panel-copy {
    padding-inline: 44px;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 74px;
  }

  .menu-toggle {
    position: relative;
    z-index: 5;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(20, 40, 45, 0.26);
    border-radius: 50%;
    background: rgba(245, 247, 245, 0.82);
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform var(--quick) ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    padding: 90px max(28px, 9vw);
    background: var(--porcelain);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    width: 100%;
    padding: 7px 0;
    font-family: var(--display);
    font-size: clamp(2.3rem, 8vw, 4rem);
    font-weight: 400;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: 1050px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 34px;
    padding-top: 136px;
  }

  .hero::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 55%;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(4.3rem, 11.8vw, 6.7rem);
  }

  .hero h1 em {
    display: inline;
    margin-left: 0;
  }

  .hero-visual {
    width: min(720px, 88vw);
    justify-self: center;
  }

  .hero-photo-wrap {
    width: 78%;
  }

  .hero-count {
    left: 1%;
  }

  .hero-phone {
    bottom: -8%;
  }

  .intro {
    grid-template-columns: 54px 1fr;
    align-items: start;
  }

  .intro-copy {
    grid-column: 2;
    max-width: 630px;
  }

  .ritual-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .ritual-heading .section-label {
    margin-bottom: -8px;
  }

  .ritual-heading > p:last-child {
    margin: 0;
  }

  .ritual-tab {
    grid-template-columns: 30px 1fr;
    padding-inline: 15px;
  }

  .ritual-panel {
    grid-template-columns: 1fr 0.85fr;
  }

  .panel-copy {
    padding-inline: 32px;
  }

  .panel-copy h3 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .collection-heading {
    grid-template-columns: 0.4fr 1fr;
  }

  .collection-heading > p:last-child {
    grid-column: 2;
  }

  .card-fatima,
  .card-shirt,
  .card-rose,
  .card-rita,
  .card-tile,
  .card-aparecida {
    grid-column: span 6;
  }

  .product-stage,
  .card-fatima .product-stage,
  .card-shirt .product-stage,
  .card-rose .product-stage,
  .card-rita .product-stage,
  .card-tile .product-stage,
  .card-aparecida .product-stage {
    min-height: 390px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .closing-products {
    min-height: 430px;
  }

  .closing-halo {
    width: min(520px, 70vw);
  }

  .closing-mug {
    width: min(500px, 62vw);
    left: 5%;
  }

  .closing-tile {
    width: min(300px, 36vw);
    right: 10%;
  }

  .closing-copy {
    max-width: 700px;
  }

  .site-footer {
    grid-template-columns: 1fr 1.5fr;
  }

  .site-footer p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 76px 21px;
  }

  h2 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .site-header {
    padding-inline: 21px;
  }

  .site-name {
    font-size: 0.86rem;
  }

  .hero {
    min-height: 890px;
    gap: 27px;
    padding: 112px 21px 58px;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 17.2vw, 5.1rem);
    line-height: 0.89;
  }

  .hero h1 em {
    display: block;
    margin-left: 0.4em;
  }

  .hero-lead {
    max-width: 370px;
    margin-top: 24px;
    font-size: 0.95rem;
  }

  .hero-actions {
    align-items: stretch;
    gap: 19px;
    margin-top: 27px;
  }

  .hero-actions .button {
    flex: 1;
    padding-inline: 15px;
  }

  .hero-visual {
    width: min(460px, 94vw);
    aspect-ratio: 1 / 0.93;
  }

  .hero-photo-wrap {
    top: 8%;
    width: 84%;
  }

  .hero-phone {
    right: -1%;
    bottom: -7%;
    width: 28%;
  }

  .hero-count {
    top: 1%;
  }

  .hero-count strong {
    font-size: clamp(4.7rem, 23vw, 6.2rem);
  }

  .hero-caption {
    bottom: -2%;
    font-size: 1.06rem;
  }

  .fact-ribbon {
    padding-inline: 0;
  }

  .fact-ribbon p {
    min-height: 88px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 1px;
    padding: 12px 6px;
    text-align: center;
  }

  .fact-ribbon p:first-child {
    border-left: 0;
  }

  .fact-ribbon strong {
    font-size: 1.55rem;
    line-height: 1;
  }

  .fact-ribbon p > span {
    font-size: 0.59rem;
  }

  .wave {
    height: 22px;
    justify-content: center;
  }

  .wave i:nth-child(2) { height: 15px; }
  .wave i:nth-child(3) { height: 21px; }

  .intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-index {
    display: none;
  }

  .intro-copy {
    grid-column: auto;
  }

  .ritual::before {
    right: 21px;
    height: 52px;
  }

  .ritual-heading {
    margin-bottom: 38px;
  }

  .ritual-tabs {
    width: calc(100vw - 21px);
    display: flex;
    margin-right: -21px;
    padding-right: 21px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .ritual-tab {
    min-width: min(76vw, 280px);
    min-height: 96px;
    scroll-snap-align: start;
  }

  .ritual-progress {
    top: 123px;
    right: 15px;
    left: 15px;
  }

  .ritual-stage {
    min-height: 730px;
    margin-top: 27px;
  }

  .ritual-panel {
    min-height: 730px;
    grid-template-columns: 1fr;
    grid-template-rows: 410px auto;
  }

  .panel-media {
    min-height: 410px;
  }

  .panel-copy {
    align-self: start;
    max-width: none;
    padding: 34px 24px 38px;
  }

  .panel-copy h3 {
    font-size: clamp(2.25rem, 10.5vw, 3rem);
  }

  .panel-copy > p:not(.panel-number) {
    margin-top: 20px;
    font-size: 0.92rem;
  }

  .panel-proof {
    margin-top: 23px;
  }

  .art-media::after {
    inset: 15px;
  }

  .art-media img {
    width: 94%;
  }

  .qr-focus {
    right: 10%;
    bottom: 20%;
    width: 54px;
    height: 54px;
  }

  .video-frame {
    width: 216px;
    box-shadow: 11px 11px 0 var(--blue), 0 25px 42px rgba(4, 15, 19, 0.28);
  }

  .video-frame video {
    max-height: 370px;
  }

  @keyframes scan {
    0% { opacity: 0; transform: translateY(0); }
    12% { opacity: 1; }
    78% { opacity: 0.85; }
    100% { opacity: 0; transform: translateY(288px); }
  }

  .prayer-media img {
    width: 188px;
    margin-top: 74px;
  }

  .halo-one { width: 300px; height: 300px; }
  .halo-two { width: 390px; height: 390px; }

  .collection-heading {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  .collection-heading > p:last-child {
    grid-column: auto;
  }

  .collection-number {
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 15px;
  }

  .collection-number strong {
    font-size: 4.7rem;
  }

  .collection-number span {
    margin: 0 0 2px;
  }

  .collection-heading h2 {
    font-size: clamp(2.7rem, 12vw, 3.7rem);
  }

  .product-mosaic {
    width: calc(100vw - 21px);
    display: flex;
    gap: 14px;
    margin-top: 45px;
    margin-right: -21px;
    padding-right: 21px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .product-card {
    width: min(82vw, 340px);
    min-width: min(82vw, 340px);
    scroll-snap-align: start;
  }

  .product-stage,
  .card-fatima .product-stage,
  .card-shirt .product-stage,
  .card-rose .product-stage,
  .card-rita .product-stage,
  .card-tile .product-stage,
  .card-aparecida .product-stage {
    min-height: 345px;
  }

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

  .prayer-band {
    min-height: 680px;
    padding: 100px 21px 82px;
  }

  .prayer-band h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .prayer-band-facts {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .prayer-band-facts span {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .prayer-band-facts span:last-child {
    border-bottom: 0;
  }

  .faq {
    gap: 42px;
  }

  .faq-intro h2 {
    font-size: clamp(2.65rem, 12vw, 3.6rem);
  }

  .faq-list summary {
    padding-right: 44px;
    font-size: 0.92rem;
  }

  .closing {
    min-height: 830px;
    gap: 0;
    padding: 58px 21px 74px;
  }

  .closing-products {
    min-height: 370px;
  }

  .closing-halo {
    width: 88vw;
  }

  .closing-mug {
    top: 20%;
    left: -14%;
    width: 84vw;
  }

  .closing-tile {
    right: -5%;
    bottom: 0;
    width: 48vw;
  }

  .closing-copy h2 {
    font-size: clamp(3rem, 13.5vw, 4.3rem);
  }

  .closing .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 31px 21px;
  }

  .site-footer p:last-child {
    grid-column: auto;
  }
}

@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;
    transition-delay: 0s !important;
  }

  .js .hero-thread path {
    stroke-dashoffset: 0;
  }

  .js .hero-copy > *,
  .js .hero-count,
  .js .hero-caption,
  .js .hero-phone {
    opacity: 1;
    transform: none;
  }

  .js .hero-photo-wrap {
    clip-path: inset(0);
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Revision v2 — simplified hero, visible video flow and compact collection */

.site-header {
  justify-content: flex-end;
}

.hero-visual {
  aspect-ratio: 1 / 0.98;
}

.hero-photo-wrap {
  top: 0;
  right: 6%;
  width: 73%;
  aspect-ratio: 1122 / 1402;
}

.hero-photo {
  object-fit: cover;
  object-position: center;
}

.hero-phone {
  right: -1%;
  bottom: -5%;
  width: 30%;
}

.intro {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.62fr);
  align-items: end;
}

.intro-copy {
  grid-column: auto;
}

.ritual-heading {
  display: block;
  max-width: 880px;
  margin: 0 auto 52px;
  text-align: center;
}

.ritual-heading .section-label {
  margin-bottom: 19px;
}

.ritual-heading > p:last-child {
  max-width: 570px;
  margin: 23px auto 0;
}

.experience-showcase {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(430px, 1.22fr);
  min-height: 690px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(16, 46, 56, 0.09);
}

.experience-video {
  min-width: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  margin: 0;
  padding: 44px clamp(26px, 4vw, 58px) 32px;
  background: var(--blue-deep);
  color: var(--white);
}

.video-frame-large {
  position: relative;
  width: min(344px, 100%);
  padding: 8px;
  overflow: hidden;
  background: #09181d;
  box-shadow: 17px 17px 0 var(--blue), 0 34px 64px rgba(4, 15, 19, 0.32);
}

.video-frame-large video {
  width: 100%;
  max-height: 570px;
  aspect-ratio: 478 / 850;
  background: #09181d;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 8px;
  z-index: 4;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 15px;
  border: 0;
  background: linear-gradient(180deg, rgba(5, 20, 25, 0.13), rgba(5, 20, 25, 0.6));
  color: var(--white);
  cursor: pointer;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.video-play > span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.12);
  transition: transform var(--quick) var(--ease);
}

.video-play > span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--blue-deep);
}

.video-play:hover > span,
.video-play:focus-visible > span {
  transform: scale(1.06);
}

.video-play strong {
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-frame-large.has-started .video-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-frame-large .scan-line {
  right: 11px;
  left: 11px;
  opacity: 0;
}

.video-frame-large.has-started .scan-line {
  animation: scan 1.45s ease-in-out 1 both;
}

.experience-video figcaption {
  width: min(344px, 100%);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 31px;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
}

.experience-video figcaption strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
}

.experience-video figcaption span {
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.65rem;
  font-weight: 750;
}

.experience-explainer {
  display: grid;
  align-content: center;
  padding: 54px clamp(34px, 5vw, 76px);
}

.experience-explainer > .section-label {
  margin-bottom: 18px;
}

.static-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.static-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.static-steps li > span {
  color: var(--blue);
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
}

.static-steps h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.static-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.phone-proof-static {
  min-height: 190px;
  display: grid;
  grid-template-columns: 126px 1fr;
  align-items: center;
  gap: 27px;
  margin-top: 28px;
  padding: 0 25px;
  overflow: hidden;
  background: var(--mist);
}

.phone-proof-static img {
  align-self: start;
  width: 116px;
  margin-top: 19px;
  filter: drop-shadow(0 15px 13px rgba(16, 46, 56, 0.18));
}

.phone-proof-static p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.phone-proof-static strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
}

.phone-proof-static span {
  color: var(--muted);
  font-size: 0.76rem;
}

.collection .collection-heading {
  max-width: 970px;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.collection-heading h2 {
  max-width: 900px;
  margin-inline: auto;
}

.collection-heading > p:last-child {
  max-width: 640px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1rem;
}

.collection-heading > p:last-child strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 54px;
}

.product-tile {
  min-width: 0;
  margin: 0;
}

.product-tile .product-stage {
  min-height: clamp(180px, 18vw, 242px);
}

.product-tile .product-stage::before {
  inset: 10px;
}

.product-tile:hover .product-stage::before {
  inset: 6px;
}

.product-tile .product-stage img {
  max-width: 95%;
  max-height: 92%;
}

.product-tile:hover img {
  transform: translateY(-4px) scale(1.012);
}

.tile-fatima .product-stage,
.tile-rita .product-stage,
.tile-aparecida .product-stage { background: #dfeaed; }
.tile-shirt .product-stage,
.tile-azulejo .product-stage { background: #ece8e6; }
.tile-rose .product-stage { background: #eadbdd; }

.lifestyle {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--blue-deep);
  color: var(--white);
}

.lifestyle > img,
.lifestyle-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lifestyle > img {
  object-fit: cover;
  object-position: center;
}

.lifestyle-shade {
  background: linear-gradient(90deg, rgba(9, 31, 38, 0.88) 0%, rgba(9, 31, 38, 0.68) 26%, rgba(9, 31, 38, 0.06) 57%, transparent 100%);
}

.lifestyle-copy {
  position: relative;
  z-index: 2;
  width: min(600px, 44vw);
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
  padding: 90px 0;
}

.lifestyle .section-label {
  color: #9bc8d5;
}

.lifestyle h2 {
  font-size: clamp(3.15rem, 5.4vw, 5.7rem);
}

.lifestyle h2 em {
  color: #9bc8d5;
}

.lifestyle-copy > p:not(.section-label) {
  max-width: 490px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.lifestyle-copy small {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.62rem;
}

@media (max-width: 900px) {
  .hero-photo-wrap {
    top: 0;
    right: 8%;
    width: 70%;
  }

  .hero-phone {
    right: 4%;
    bottom: -4%;
  }

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

  .experience-showcase {
    grid-template-columns: minmax(310px, 0.72fr) minmax(360px, 1.28fr);
  }

  .experience-video {
    padding-inline: 28px;
  }

  .video-frame-large {
    width: min(290px, 100%);
  }

  .experience-explainer {
    padding-inline: 34px;
  }

  .phone-proof-static {
    grid-template-columns: 98px 1fr;
    padding-inline: 18px;
  }

  .phone-proof-static img {
    width: 92px;
  }

  .product-strip {
    width: calc(100vw - 24px);
    display: flex;
    margin-right: -24px;
    padding-right: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .product-tile {
    width: min(29vw, 230px);
    min-width: min(29vw, 230px);
    scroll-snap-align: start;
  }

  .product-tile .product-stage {
    min-height: 220px;
  }

  .lifestyle {
    min-height: 760px;
    align-items: end;
  }

  .lifestyle > img {
    object-position: 56% center;
  }

  .lifestyle-shade {
    background: linear-gradient(0deg, rgba(9, 31, 38, 0.94) 0%, rgba(9, 31, 38, 0.66) 48%, rgba(9, 31, 38, 0.06) 84%);
  }

  .lifestyle-copy {
    width: min(670px, 78vw);
    margin: 0 0 0 24px;
    padding: 110px 0 52px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 860px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-actions .text-link {
    justify-self: start;
    white-space: nowrap;
  }

  .hero-visual {
    width: min(440px, 96vw);
    aspect-ratio: 1 / 0.94;
  }

  .hero-photo-wrap {
    top: -1%;
    right: 10%;
    width: 69%;
  }

  .hero-phone {
    right: 5%;
    bottom: -2%;
    width: 30%;
  }

  .intro {
    gap: 28px;
  }

  .ritual-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .ritual-heading > p:last-child {
    margin-left: 0;
  }

  .experience-showcase {
    grid-template-columns: 1fr;
  }

  .experience-video {
    padding: 40px 22px 28px;
  }

  .video-frame-large {
    width: min(252px, 84vw);
    box-shadow: 11px 11px 0 var(--blue), 0 25px 42px rgba(4, 15, 19, 0.28);
  }

  .video-frame-large video {
    max-height: 430px;
  }

  .video-play > span {
    width: 64px;
    height: 64px;
  }

  .experience-video figcaption {
    width: min(252px, 84vw);
  }

  .experience-explainer {
    padding: 44px 24px 38px;
  }

  .static-steps li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .static-steps h3 {
    font-size: 1.65rem;
  }

  .phone-proof-static {
    min-height: 178px;
    grid-template-columns: 91px 1fr;
    gap: 17px;
    padding-inline: 15px;
  }

  .phone-proof-static img {
    width: 86px;
  }

  .collection .collection-heading {
    text-align: center;
  }

  .collection-heading h2 {
    font-size: clamp(2.75rem, 12.8vw, 3.85rem);
  }

  .product-strip {
    width: calc(100vw - 21px);
    gap: 10px;
    margin-right: -21px;
    padding-right: 21px;
  }

  .product-tile {
    width: min(42vw, 164px);
    min-width: min(42vw, 164px);
  }

  .product-tile .product-stage {
    min-height: 170px;
  }

  .lifestyle {
    min-height: 720px;
  }

  .lifestyle > img {
    object-position: 58% center;
  }

  .lifestyle-copy {
    width: auto;
    margin: 0;
    padding: 120px 21px 42px;
  }

  .lifestyle h2 {
    font-size: clamp(3rem, 13vw, 4.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-play > span {
    transform: none !important;
  }
}

/* Conversion edition — the collection stays central; the offer enters after proof. */

:root {
  --conversion: #dc6d2d;
  --conversion-dark: #b64d18;
  --warm-paper: #fbf7f1;
}

.hero-access-note {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-access-note strong {
  position: relative;
  color: var(--ink);
  font-weight: 750;
}

.hero-access-note strong::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: var(--conversion);
}

.early-access-band {
  min-height: 76px;
  padding: 17px max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: var(--blue-deep);
  color: var(--white);
}

.early-access-band p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.65vw, 1.45rem);
  letter-spacing: -0.025em;
}

.early-access-band a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f59a62;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.early-access-band a span {
  color: var(--white);
  font-size: 1rem;
  transition: transform var(--quick) ease;
}

.early-access-band a:hover span {
  transform: translateX(4px);
}

.collection-access {
  width: min(var(--container), calc(100% - 48px));
  margin: 46px auto 0;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.collection-access > span {
  color: var(--conversion-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.collection-access p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.collection-access p strong {
  color: var(--ink);
}

.collection-access a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.collection-access a span {
  color: var(--conversion);
  font-size: 1rem;
  transition: transform var(--quick) ease;
}

.collection-access a:hover span {
  transform: translateY(3px);
}

.access-offer {
  background: var(--warm-paper);
  border-top: 1px solid rgba(20, 40, 45, 0.08);
  border-bottom: 1px solid rgba(20, 40, 45, 0.08);
}

.access-heading {
  width: min(940px, 100%);
  margin: 0 auto 58px;
  text-align: center;
}

.access-heading h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(3.3rem, 6.2vw, 6.4rem);
}

.access-heading h2 em {
  position: relative;
  display: inline-block;
  color: var(--conversion-dark);
}

.access-heading h2 em::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: -0.06em;
  left: 2%;
  height: 3px;
  background: var(--conversion);
  transform: rotate(-0.7deg);
}

.access-heading > p:last-child {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1rem;
}

.offer-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.34fr);
  box-shadow: 0 26px 70px rgba(16, 46, 56, 0.1);
}

.plan-panel {
  min-height: 590px;
  padding: 62px 54px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--blue-deep);
  color: var(--white);
  text-align: center;
}

.plan-kicker,
.included-kicker {
  margin-bottom: 18px;
  color: #9bd3e5;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plan-panel h3 {
  font-family: var(--body);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.plan-price {
  margin-top: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  line-height: 0.86;
}

.plan-price > span {
  padding-bottom: 7px;
  color: var(--conversion);
  font-size: 0.92rem;
  font-weight: 800;
}

.plan-price strong {
  display: flex;
  align-items: flex-start;
  font-family: var(--body);
  font-size: clamp(5.4rem, 8vw, 7rem);
  font-weight: 850;
  letter-spacing: -0.095em;
}

.plan-price small {
  padding: 12px 6px 0 0;
  font-size: 0.34em;
  letter-spacing: -0.04em;
}

.plan-payment {
  margin: 18px 0 30px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
}

.plan-payment span {
  margin-inline: 5px;
  color: var(--conversion);
}

.button-conversion {
  min-height: 60px;
  padding: 18px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--conversion);
  color: var(--white);
  border: 1px solid var(--conversion);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-align: center;
  transition: background var(--quick) ease, border-color var(--quick) ease, transform var(--quick) ease;
}

.button-conversion:hover {
  background: var(--conversion-dark);
  border-color: var(--conversion-dark);
  transform: translateY(-2px);
}

.secure-note {
  margin: 22px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  line-height: 1.35;
  text-align: left;
}

.secure-note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: #9bd3e5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.secure-note strong,
.secure-note span {
  display: block;
}

.secure-note strong {
  color: rgba(255, 255, 255, 0.86);
}

.included-panel {
  padding: 62px 60px 50px;
  background: var(--white);
}

.included-kicker {
  color: var(--blue);
}

.included-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  min-height: 92px;
  padding: 19px 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.included-list li:first-child {
  border-top: 0;
}

.included-list li > span {
  padding-top: 5px;
  color: var(--conversion);
  font-size: 0.68rem;
  font-weight: 800;
}

.included-list h3 {
  margin-bottom: 4px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.included-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.closing-copy h2 em {
  color: var(--conversion-dark);
}

.closing-cta {
  min-width: min(410px, 100%);
  margin-top: 4px;
  font-size: 0.86rem;
}

.closing-fine {
  margin-top: 14px !important;
  font-size: 0.68rem !important;
  line-height: 1.45 !important;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 30px;
  }

  .offer-grid {
    grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  }

  .plan-panel {
    padding-inline: 34px;
  }

  .included-panel {
    padding-inline: 38px;
  }
}

@media (max-width: 900px) {
  .collection-access {
    width: calc(100% - 48px);
    grid-template-columns: auto 1fr;
  }

  .collection-access a {
    grid-column: 2;
    justify-self: start;
  }

  .access-heading {
    margin-bottom: 42px;
  }

  .offer-grid {
    width: min(680px, 100%);
    grid-template-columns: 1fr;
  }

  .plan-panel {
    min-height: 0;
    padding-block: 56px 44px;
  }

  .included-panel {
    padding-block: 44px;
  }
}

@media (max-width: 620px) {
  .hero-access-note {
    margin-top: 16px;
    font-size: 0.74rem;
  }

  .early-access-band {
    min-height: 94px;
    padding: 17px 21px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .early-access-band p {
    font-size: 1.08rem;
  }

  .collection-access {
    width: calc(100% - 42px);
    margin-top: 32px;
    padding-inline: 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .collection-access a {
    grid-column: 1;
  }

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

  .access-heading h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .access-heading > p:last-child {
    margin-top: 22px;
    font-size: 0.9rem;
  }

  .plan-panel {
    padding: 46px 22px 38px;
  }

  .plan-panel h3 {
    font-size: 1.6rem;
  }

  .plan-price strong {
    font-size: 5.6rem;
  }

  .button-conversion {
    width: 100%;
    min-height: 64px;
    padding-inline: 18px;
    font-size: 0.82rem;
  }

  .included-panel {
    padding: 36px 22px 30px;
  }

  .included-list li {
    grid-template-columns: 34px 1fr;
  }

  .closing-cta {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .early-access-band a span,
  .collection-access a span,
  .button-conversion {
    transition: none;
  }
}
