:root {
  --cream: #fff8ed;
  --cream-deep: #f7ecdc;
  --navy: #08286f;
  --navy-deep: #031e5c;
  --violet: #6528ef;
  --violet-bright: #7427f3;
  --white: #ffffff;
  --line: rgba(8, 40, 111, 0.2);
  --radius: 28px;
  --display: "Arial Rounded MT Bold", "Avenir Next", "Trebuchet MS", sans-serif;
  --body: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  --arabic: "Geeza Pro", Tahoma, Arial, sans-serif;
  --gutter: clamp(24px, 5vw, 76px);
  --section-space: clamp(90px, 10vw, 160px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

[dir="rtl"] body {
  font-family: var(--arabic);
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: 104px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 20px var(--gutter);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.07em;
}

.brand img {
  width: 62px;
  height: 50px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.brand span {
  font-size: 21px;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 4vw, 62px);
  font-size: 15px;
  font-weight: 600;
}

.site-nav a,
.site-footer nav a,
.language-toggle {
  position: relative;
}

.site-nav a::after,
.site-footer nav a::after,
.language-toggle::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--violet);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.language-toggle,
.menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-toggle {
  padding: 8px 0;
  color: var(--navy);
  font-family: var(--arabic);
  font-size: 16px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1.5px solid transparent;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(101, 40, 239, 0.3);
  outline-offset: 4px;
}

.button--navy {
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(8, 40, 111, 0.12);
  color: var(--white);
}

.button--navy:hover,
.button--navy:focus-visible {
  background: var(--violet);
  box-shadow: 0 16px 28px rgba(101, 40, 239, 0.2);
}

.button--outline {
  border-color: var(--violet);
  color: var(--violet);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--violet);
  color: var(--white);
}

.button--violet {
  min-width: 214px;
  background: var(--violet);
  box-shadow: 0 12px 28px rgba(101, 40, 239, 0.24);
  color: var(--white);
}

.button--violet:hover,
.button--violet:focus-visible {
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(940px, 100vh);
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
  align-items: center;
  gap: clamp(48px, 6vw, 104px);
  padding: 150px var(--gutter) 64px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 100px solid rgba(101, 40, 239, 0.045);
  border-radius: 50%;
  content: "";
}

[dir="rtl"] .hero::after {
  right: auto;
  left: -180px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
}

.hero h1,
.story h2,
.collections h2,
.promise h2,
.closing h2,
.ritual h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.045em;
}

[dir="rtl"] .hero h1,
[dir="rtl"] .story h2,
[dir="rtl"] .collections h2,
[dir="rtl"] .promise h2,
[dir="rtl"] .closing h2,
[dir="rtl"] .ritual h2 {
  font-family: var(--arabic);
  letter-spacing: 0;
}

.hero h1 {
  color: var(--navy);
  font-size: clamp(58px, 6.6vw, 106px);
  line-height: 0.98;
}

.hero h1::first-line {
  color: var(--violet);
}

.hero-copy > p {
  max-width: 540px;
  margin: 38px 0 0;
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 38px;
}

.hero-visual {
  position: relative;
  width: min(calc(100% - 48px), 470px);
  aspect-ratio: 0.86;
  justify-self: end;
  margin: 24px;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 48% 48% 30px 30px;
  box-shadow: 0 26px 70px rgba(8, 40, 111, 0.15);
  object-fit: cover;
}

.hero-arch {
  position: absolute;
  z-index: 1;
  inset: -20px;
  border: 20px solid var(--violet);
  border-radius: 50% 50% 50px 50px;
}

.hero-crescent {
  position: absolute;
  z-index: 4;
  top: 12%;
  right: -10%;
  width: clamp(92px, 9vw, 136px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream);
  filter: drop-shadow(0 8px 14px rgba(8, 40, 111, 0.06));
}

.hero-crescent::after {
  position: absolute;
  top: -14%;
  left: -22%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}

.sparkle {
  display: block;
  width: 42px;
  height: 42px;
  background: var(--violet);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
}

.sparkle--hero {
  margin: 0 0 32px 6px;
}

[dir="rtl"] .sparkle--hero {
  margin-right: 6px;
  margin-left: 0;
}

.sparkle--visual {
  position: absolute;
  z-index: 5;
  top: 24px;
  left: 22%;
  width: 32px;
  height: 32px;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 35%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--violet);
  animation: bob 2.4s ease-in-out infinite;
}

.scroll-cue svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.section {
  padding: var(--section-space) var(--gutter);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);
  align-items: center;
  gap: clamp(68px, 8vw, 128px);
  min-height: 760px;
  overflow: hidden;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

[dir="rtl"] .section-label {
  letter-spacing: 0;
}

.mini-sparkle {
  font-size: 18px;
}

.story h2,
.collections h2 {
  font-size: clamp(52px, 5.3vw, 82px);
  line-height: 1.06;
}

.story h2::first-line,
.collections h2::first-line {
  color: var(--violet);
}

.story-copy > p {
  max-width: 470px;
  margin: 34px 0 0;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.65;
}

.story-visual {
  position: relative;
  width: min(calc(100% - 44px), 390px);
  aspect-ratio: 2 / 3;
  justify-self: center;
  margin: 22px;
}

.story-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 46% 46% 30px 30px;
  box-shadow: 0 24px 58px rgba(8, 40, 111, 0.12);
  object-fit: cover;
}

.story-crescent {
  position: absolute;
  z-index: 1;
  inset: -18px;
  border: 18px solid var(--violet);
  border-radius: 48% 48% 48px 48px;
}

.sparkle--story {
  position: absolute;
  z-index: 4;
  top: -5%;
  right: 8%;
  width: 30px;
  height: 30px;
}

.ritual {
  position: relative;
  overflow: hidden;
  border-radius: 44px 44px 0 0;
  background: var(--navy-deep);
  color: var(--white);
}

.ritual::before {
  position: absolute;
  top: -55%;
  left: 18%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(101, 40, 239, 0.2);
  filter: blur(110px);
  content: "";
}

.ritual-inner {
  position: relative;
  z-index: 1;
  max-width: 1450px;
  margin: 0 auto;
  padding: 76px var(--gutter) 92px;
}

.section-label--light {
  color: #9a7aff;
}

.ritual h2 {
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.12;
}

.ritual-steps {
  display: grid;
  grid-template-columns: 1fr minmax(70px, 0.3fr) 1fr minmax(70px, 0.3fr) 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
}

.ritual-step {
  display: grid;
  grid-template-columns: auto 112px;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.step-number {
  color: var(--violet-bright);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 900;
}

.step-icon {
  width: 92px;
  height: 92px;
  fill: none;
  stroke: #d9d0ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.step-visual {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(217, 208, 255, 0.26);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 28px rgba(101, 40, 239, 0.1);
}

.step-icon .icon-fill {
  fill: rgba(101, 40, 239, 0.28);
  stroke: #e6e0ff;
}

.step-icon .icon-fill--soft {
  fill: rgba(255, 255, 255, 0.07);
}

.step-icon .icon-accent {
  stroke: #986aff;
}

.step-icon .icon-accent-fill {
  fill: #986aff;
  stroke: none;
}

.step-icon .icon-spark {
  stroke-width: 2.5;
}

.step-copy {
  grid-column: 1 / -1;
}

.ritual-step h3 {
  margin: 10px 0 0;
  font-size: 16px;
}

.ritual-step p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.step-line {
  position: relative;
  height: 1px;
  background: var(--violet);
}

.step-line::after {
  position: absolute;
  top: 50%;
  right: -2px;
  width: 8px;
  height: 8px;
  background: var(--violet);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  transform: translateY(-50%);
}

[dir="rtl"] .step-line::after {
  right: auto;
  left: -2px;
  transform: translateY(-50%) scaleX(-1);
}

.collections {
  padding-top: clamp(110px, 11vw, 170px);
}

.collections-heading {
  display: flex;
  max-width: 1450px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin: 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--violet);
  color: var(--violet);
  font-size: 16px;
  font-weight: 700;
}

.text-link svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 180ms ease;
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(5px);
}

[dir="rtl"] .text-link svg {
  transform: scaleX(-1);
}

[dir="rtl"] .text-link:hover svg,
[dir="rtl"] .text-link:focus-visible svg {
  transform: scaleX(-1) translateX(5px);
}

.collection-grid {
  display: grid;
  max-width: 1450px;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: clamp(20px, 3vw, 44px);
  margin: 72px auto 0;
}

.collection-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 0;
  font-size: clamp(18px, 1.55vw, 25px);
}

.collection-image {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 18px 42px rgba(8, 40, 111, 0.1);
}

.collection-image--short {
  aspect-ratio: 0.83;
}

.collection-image--tall {
  aspect-ratio: 0.76;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.collection-card:hover .collection-image img {
  transform: scale(1.045);
}

.tiny-moon {
  position: relative;
  display: block;
  width: 19px;
  height: 19px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--violet);
}

.tiny-moon::after {
  position: absolute;
  top: -3px;
  left: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cream);
  content: "";
}

.promise {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #4e16d9 0%, #7228f2 52%, #5b1fe7 100%);
  color: var(--white);
}

.promise-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: clamp(90px, 9vw, 145px) var(--gutter) clamp(70px, 8vw, 112px);
}

.promise-title-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 8vw, 120px);
}

.promise h2 {
  font-size: clamp(58px, 6.4vw, 100px);
  line-height: 1;
}

.large-crescent {
  position: relative;
  width: clamp(120px, 13vw, 200px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: var(--cream);
}

.large-crescent::after {
  position: absolute;
  top: -12%;
  left: 31%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #5f21e6;
  content: "";
}

.sparkle--promise {
  position: absolute;
  top: 15%;
  left: 23%;
  width: 32px;
  height: 32px;
  background: var(--cream);
}

.promise-line {
  position: relative;
  display: flex;
  height: 1px;
  justify-content: space-around;
  margin: 70px 0 34px;
  background: rgba(255, 255, 255, 0.65);
}

.promise-line i {
  width: 10px;
  height: 10px;
  background: var(--white);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
  transform: translateY(-50%);
}

.promise-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.promise-points > div {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  font-weight: 700;
}

.promise-points > div:last-child {
  border-right: 0;
}

[dir="rtl"] .promise-points > div {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

[dir="rtl"] .promise-points > div:last-child {
  border-left: 0;
}

.promise-points svg {
  width: 48px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.closing {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sparkle--closing {
  width: 36px;
  height: 36px;
  margin-bottom: 26px;
}

.closing h2 {
  margin-bottom: 36px;
  font-size: clamp(48px, 5.4vw, 84px);
  line-height: 1.05;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  margin: 0 var(--gutter);
  padding: 34px 0 28px;
  border-top: 1px solid rgba(8, 40, 111, 0.4);
}

.footer-brand img {
  width: 58px;
  height: 46px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.footer-brand > span {
  display: grid;
  gap: 2px;
}

.footer-brand b {
  font-size: 15px;
}

.footer-brand small {
  font-family: var(--arabic);
  font-size: 13px;
  letter-spacing: 0;
}

.site-footer nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 42px);
  font-size: 13px;
  font-weight: 600;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  color: rgba(8, 40, 111, 0.72);
  font-size: 12px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

.reveal--delay {
  transition-delay: 110ms;
}

.reveal--delay-2 {
  transition-delay: 220ms;
}

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

@media (max-width: 1120px) {
  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);
    gap: 36px;
  }

  .ritual-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step-line {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: 22px;
    --section-space: 88px;
  }

  .site-header {
    position: absolute;
    min-height: 82px;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand img {
    width: 48px;
    height: 40px;
  }

  .brand span {
    font-size: 16px;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(8, 40, 111, 0.2);
    border-radius: 14px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
    transition: transform 180ms ease;
  }

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

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: var(--cream);
    font-family: var(--display);
    font-size: 34px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  [dir="rtl"] .site-nav {
    font-family: var(--arabic);
  }

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

  .header-actions {
    gap: 10px;
  }

  .language-toggle {
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 134px;
    padding-bottom: 90px;
  }

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

  .hero h1 {
    font-size: clamp(58px, 14vw, 96px);
  }

  .hero-visual {
    width: min(calc(100% - 48px), 420px);
    justify-self: center;
  }

  .scroll-cue {
    display: none;
  }

  .story {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .story-visual {
    width: min(calc(100% - 44px), 350px);
  }

  .ritual {
    border-radius: 32px 32px 0 0;
  }

  .ritual-steps {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .ritual-step {
    grid-template-columns: auto 100px 1fr;
    gap: 18px;
  }

  .step-visual {
    width: 100px;
    height: 100px;
    border-radius: 30px;
  }

  .step-icon {
    width: 82px;
    height: 82px;
  }

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

  .ritual-step h3 {
    margin: 0;
    font-size: 18px;
  }

  .collections-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .collection-card {
    width: min(100%, 560px);
  }

  .collection-card:nth-child(2) {
    justify-self: end;
  }

  .collection-image--short,
  .collection-image--tall {
    aspect-ratio: 0.92;
  }

  .promise-title-wrap {
    justify-content: flex-start;
  }

  .promise-points {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .promise-points > div,
  [dir="rtl"] .promise-points > div {
    min-height: 90px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.36);
    border-left: 0;
  }

  .promise-points > div:last-child,
  [dir="rtl"] .promise-points > div:last-child {
    border-bottom: 0;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .hero-copy > p {
    margin-top: 28px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-visual {
    width: min(calc(100% - 36px), 320px);
    margin: 18px;
  }

  .hero-arch {
    inset: -14px;
    border-width: 14px;
    border-radius: 50% 50% 42px 42px;
  }

  .hero-crescent {
    right: -9%;
    width: 82px;
  }

  .story h2,
  .collections h2 {
    font-size: 49px;
  }

  .story-visual {
    width: min(calc(100% - 36px), 280px);
    margin: 18px;
  }

  .story-crescent {
    inset: -14px;
    border-width: 14px;
    border-radius: 48% 48% 42px 42px;
  }

  .ritual-inner {
    padding-top: 66px;
    padding-bottom: 74px;
  }

  .ritual h2 {
    font-size: 42px;
  }

  .ritual-step {
    grid-template-columns: 34px 88px 1fr;
    gap: 10px;
  }

  .step-number {
    font-size: 22px;
  }

  .step-icon {
    width: 72px;
    height: 72px;
  }

  .step-visual {
    width: 88px;
    height: 88px;
    border-radius: 26px;
  }

  .ritual-step h3 {
    font-size: 16px;
  }

  .ritual-step p {
    font-size: 12px;
  }

  .promise-title-wrap {
    gap: 24px;
  }

  .large-crescent {
    width: 90px;
  }

  .promise h2 {
    font-size: 48px;
  }

  .sparkle--promise {
    display: none;
  }

  .closing h2 {
    font-size: 46px;
  }

  .footer-brand {
    justify-self: center;
  }

  .site-footer nav {
    justify-content: center;
    gap: 18px 24px;
  }
}

@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;
  }

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