:root {
  --ivory: #fff8f4;
  --blush: #fff0ef;
  --rose: #f5dcdd;
  --burgundy: #472d34;
  --burgundy-soft: #775d64;
  --lime: #d7e5b8;
  --lime-bright: #e3f3bd;
  --white: #fff;
  --ink: #2f2528;
  --line: rgba(71, 45, 52, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --container: min(100% - 32px, 1240px);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --shadow: 0 24px 70px rgba(71, 45, 52, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--burgundy);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  background: var(--rose);
}

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid #a9c866;
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--burgundy);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--burgundy);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 13px;
  border-bottom: 1px solid transparent;
  transition: padding 0.35s var(--ease), background-color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  padding-block: 8px;
  background: rgba(255, 248, 244, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.brand-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--burgundy);
  background: var(--lime);
  border-radius: 50%;
  font-size: 15px;
}

.site-header .brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.brand-logo-text {
  display: grid;
  color: var(--ink);
  font-size: 6px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-align: center;
}

.brand-logo-text > span {
  display: block;
}

.brand-mark svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
}

.nav-toggle {
  position: relative;
  z-index: 102;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.35s var(--ease), margin 0.35s var(--ease);
}

.nav-toggle span:first-child {
  margin-top: -6px;
}

.nav-toggle span:last-child {
  margin-top: 6px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  margin-top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  margin-top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  z-index: 101;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 90px 24px 32px;
  background: rgba(255, 240, 239, 0.98);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.35s ease, transform 0.45s var(--ease), visibility 0.35s;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding-inline: 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 8vw, 40px);
  line-height: 1;
}

.site-nav .nav-order {
  margin-top: 18px;
  padding: 15px 24px;
  color: var(--white);
  background: var(--burgundy);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  display: inline-block;
  background: currentColor;
}

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

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

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 108px 0 58px;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 46%),
    var(--blush);
}

.hero::before {
  content: "ROYAL FLOWERS";
  position: absolute;
  z-index: -1;
  bottom: 1.5%;
  left: -2%;
  color: rgba(71, 45, 52, 0.032);
  font-size: clamp(80px, 17vw, 240px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: -90px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: rgba(215, 229, 184, 0.56);
}

.hero-glow-two {
  bottom: 12%;
  left: -120px;
  width: 240px;
  height: 240px;
  background: rgba(245, 220, 221, 0.84);
}

.hero-grid {
  display: grid;
  gap: 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(52px, 14vw, 100px);
  line-height: 1;
}

.hero-line-two {
  display: block;
  margin-top: 0.16em;
}

.hero-lead {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--burgundy-soft);
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin-top: 28px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 16px 12px 21px;
  border: 1px solid var(--burgundy);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.35s ease, background-color 0.35s ease, transform 0.35s var(--ease), box-shadow 0.35s ease;
}

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

.button-ghost {
  background: rgba(255, 255, 255, 0.28);
}

.button-max {
  color: var(--burgundy);
  background: var(--lime);
}

.button-max .button-arrow {
  background: var(--white);
}

.button-max:hover {
  background: var(--lime-bright);
}

.button-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  color: var(--burgundy);
  font-size: 16px;
  transition: transform 0.35s var(--ease);
}

.arrow-icon {
  width: 14px;
  height: 14px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-cta .arrow-icon {
  width: 16px;
  height: 16px;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(71, 45, 52, 0.16);
}

.button:hover .button-arrow {
  transform: rotate(45deg);
}

.button-ghost:hover {
  color: var(--white);
  background: var(--burgundy);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: var(--burgundy-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-notes span {
  margin-right: 5px;
  color: #9ab55f;
}

.hero-visual {
  position: relative;
  width: min(88vw, 520px);
  justify-self: center;
  --parallax-x: 0px;
  --parallax-y: 0px;
}

.hero-image-wrap {
  position: relative;
  aspect-ratio: 0.82;
  overflow: hidden;
  background: var(--rose);
  border: 8px solid rgba(255, 255, 255, 0.56);
  border-radius: 50% 50% 32px 32px;
  box-shadow: var(--shadow);
}

.hero-image-wrap img {
  width: calc(100% + 22px);
  height: calc(100% + 22px);
  object-fit: cover;
  object-position: 60% 54%;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0) scale(1.035);
  transition: transform 0.25s ease-out;
}

.image-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.23), transparent 30% 70%, rgba(255, 255, 255, 0.1));
  pointer-events: none;
}

.hero-sticker {
  position: absolute;
  top: 12%;
  left: -22px;
  width: 94px;
  height: 94px;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(71, 45, 52, 0.14);
  transform: rotate(-10deg);
  animation: float-sticker 5s ease-in-out infinite;
}

.hero-sticker span,
.hero-sticker strong {
  display: block;
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-sticker strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.hero-caption {
  position: absolute;
  right: -4px;
  bottom: -28px;
  margin: 0;
  padding: 13px 16px;
  background: rgba(255, 248, 244, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(71, 45, 52, 0.08);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-caption span {
  display: block;
  margin-bottom: 4px;
  color: #9ab55f;
  font-size: 15px;
}

.scroll-cue {
  display: none;
}

@keyframes float-sticker {
  0%, 100% { transform: rotate(-10deg) translateY(0); }
  50% { transform: rotate(-7deg) translateY(-8px); }
}

.compositions,
.process {
  padding: clamp(86px, 12vw, 150px) 0;
}

.section-heading {
  display: grid;
  gap: 24px;
  margin-bottom: 42px;
}

.section-heading h2,
.process-heading h2,
.benefits h2,
.contact h2 {
  font-size: clamp(48px, 12vw, 88px);
  line-height: 0.92;
}

.section-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--burgundy-soft);
  font-size: 15px;
  line-height: 1.65;
}

.product-grid {
  display: grid;
  gap: 28px;
}

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

.product-image {
  position: relative;
  display: block;
  aspect-ratio: 0.78;
  overflow: hidden;
  background: var(--rose);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(71, 45, 52, 0.07);
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(71, 45, 52, 0.05), transparent 32%, rgba(71, 45, 52, 0.09));
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s ease;
}

.product-card-soft .product-image img {
  object-position: 58% 55%;
}

.product-card-fresh .product-image img,
.product-card-bold .product-image img {
  object-position: center 52%;
}

.product-image:hover img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.product-number {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  background: rgba(255, 248, 244, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.product-cta {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--burgundy);
  border-radius: 50%;
  font-size: 20px;
  transition: transform 0.4s var(--ease), background-color 0.3s ease;
}

.product-image:hover .product-cta {
  color: var(--burgundy);
  background: var(--lime);
  transform: rotate(45deg);
}

.product-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 4px 0;
}

.product-info h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.product-info p {
  margin: 0;
  color: var(--burgundy-soft);
  font-size: 11px;
}

.product-info strong {
  flex: 0 0 auto;
  padding-top: 7px;
  font-size: 12px;
}

.catalog-note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 44px;
  padding: 24px;
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.catalog-note > span {
  color: var(--burgundy-soft);
  font-size: 16px;
  font-weight: 600;
}

.catalog-note a {
  font-family: var(--serif);
  font-size: 22px;
  border-bottom: 1px solid currentColor;
}

.catalog-note a span {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.catalog-note a:hover span {
  transform: translateX(5px);
}

.benefits {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0;
  color: var(--ivory);
  background: var(--burgundy);
  overflow: hidden;
  isolation: isolate;
}

.benefits::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -40%;
  right: -18%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.eyebrow-light {
  color: var(--lime);
}

.benefits h2 em {
  color: var(--lime);
}

.benefits-title {
  position: relative;
  z-index: 2;
}

.benefit-list {
  display: grid;
  gap: 0;
  margin-top: 56px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 4px 14px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.benefit-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.benefit-item > span {
  grid-row: 1 / 3;
  color: var(--lime);
  font-family: var(--serif);
  font-size: 26px;
}

.benefit-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.benefit-item p {
  max-width: 330px;
  margin: 6px 0 0;
  color: rgba(255, 248, 244, 0.7);
  font-size: 13px;
}

.benefit-orbit {
  display: none;
}

.process-grid {
  display: grid;
  gap: 58px;
}

.process-visual {
  position: relative;
  width: min(100%, 520px);
  justify-self: center;
  --parallax-x: 0px;
  --parallax-y: 0px;
}

.process-visual::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 72%;
  height: 72%;
  background: var(--lime);
  border-radius: var(--radius-lg) 50% 50% var(--radius-lg);
}

.process-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: center 50%;
  border-radius: 50% 50% var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow);
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 0.25s ease-out;
}

.process-visual > p {
  position: absolute;
  right: -5px;
  bottom: 28px;
  margin: 0;
  padding: 13px 17px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 14px 34px rgba(71, 45, 52, 0.12);
}

.process-visual > p span,
.process-visual > p strong {
  display: block;
}

.process-visual > p span {
  color: var(--burgundy-soft);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-visual > p strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.process-heading {
  margin-bottom: 28px;
}

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

.steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--lime);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.steps h3 {
  margin: 3px 0 7px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

.steps p {
  max-width: 470px;
  margin: 0;
  color: var(--burgundy-soft);
  font-size: 13px;
  line-height: 1.55;
}

.contact {
  position: relative;
  min-height: 740px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.62), transparent 30%),
    var(--lime);
  isolation: isolate;
  overflow: hidden;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(71, 45, 52, 0.14);
  border-radius: 50%;
}

.contact::before {
  width: 460px;
  height: 460px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact::after {
  width: 620px;
  height: 620px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.contact h2 {
  font-size: clamp(58px, 15vw, 118px);
}

.contact h2 em {
  color: var(--burgundy);
}

.contact-lead {
  max-width: 500px;
  margin: 28px auto 0;
  color: var(--burgundy-soft);
  font-size: 15px;
  line-height: 1.6;
}

.contact-actions {
  width: min(100%, 760px);
}

.contact-petal {
  position: absolute;
  z-index: 0;
  width: 180px;
  height: 240px;
  background: rgba(255, 240, 239, 0.56);
  border-radius: 100% 0 100% 0;
  filter: blur(1px);
}

.petal-one {
  top: 12%;
  left: -80px;
  transform: rotate(24deg);
}

.petal-two {
  right: -80px;
  bottom: 18%;
  transform: rotate(205deg);
}

.site-footer {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 52px 0 28px;
  border-top: 1px solid rgba(71, 45, 52, 0.18);
  text-align: center;
}

.site-footer p,
.site-footer > a:last-child {
  margin: 0;
  color: var(--burgundy-soft);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer > a:last-child {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--burgundy);
  font-weight: 700;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.product-card:nth-child(2),
.benefit-item:nth-child(2),
.steps li:nth-child(2) {
  transition-delay: 0.08s;
}

.product-card:nth-child(3),
.benefit-item:nth-child(3),
.steps li:nth-child(3) {
  transition-delay: 0.16s;
}

@media (min-width: 560px) {
  :root {
    --container: min(100% - 48px, 1240px);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: row;
    align-items: center;
  }

  .button {
    min-width: 220px;
  }

  .hero-actions .button,
  .contact-actions .button {
    flex: 1 1 220px;
  }

  .catalog-note {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .site-footer {
    grid-template-columns: 1fr auto 1fr;
    justify-items: start;
    text-align: left;
  }

  .site-footer p {
    justify-self: center;
    align-self: center;
  }

  .site-footer > a:last-child {
    justify-self: end;
  }
}

@media (min-width: 760px) {
  .section-heading {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .product-card:nth-child(2) {
    margin-top: 54px;
  }

  .product-image {
    border-radius: 24px;
  }

  .product-info {
    display: block;
  }

  .product-info strong {
    display: inline-block;
    margin-top: 8px;
  }

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

  .benefit-item > span {
    grid-row: auto;
  }

  .benefit-item p {
    margin-top: 4px;
  }
}

@media (min-width: 960px) {
  :root {
    --container: min(100% - 80px, 1240px);
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 8px;
    padding: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    min-height: 44px;
    padding: 0 13px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .site-nav .nav-order {
    margin: 0 0 0 10px;
    padding-inline: 20px;
    color: var(--white);
    font-size: 10px;
  }

  .hero {
    min-height: 800px;
    padding: 112px 0 72px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
    align-items: center;
    gap: 26px;
  }

  .hero h1 {
    font-size: clamp(72px, 7.6vw, 114px);
    white-space: nowrap;
  }

  .hero-lead {
    max-width: 470px;
  }

  .hero-actions {
    margin-top: 34px;
  }

  .hero-visual {
    width: min(100%, 500px);
    justify-self: end;
    margin-right: 2vw;
  }

  .hero-sticker {
    top: 8%;
    left: auto;
    right: -24px;
    width: 112px;
    height: 112px;
  }

  .scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transform: rotate(-90deg) translateY(100%);
    transform-origin: left bottom;
  }

  .scroll-cue span {
    width: 34px;
    height: 1px;
    background: currentColor;
  }

  .product-grid {
    gap: 26px;
  }

  .product-info {
    display: flex;
  }

  .benefits-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 80px;
  }

  .benefit-list {
    margin-top: 10px;
  }

  .benefit-item {
    grid-template-columns: 42px 1fr;
  }

  .benefit-item > span {
    grid-row: 1 / 3;
  }

  .benefit-item p {
    margin-top: 4px;
  }

  .benefit-orbit {
    position: absolute;
    right: -80px;
    bottom: -210px;
    width: 460px;
    height: 460px;
    display: block;
    opacity: 0.12;
    transform: rotate(10deg);
  }

  .benefit-orbit span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 240px;
    margin: -210px 0 0 -90px;
    border: 1px solid var(--ivory);
    border-radius: 100% 0 100% 0;
    transform-origin: 90px 210px;
  }

  .benefit-orbit span:nth-child(2) { transform: rotate(90deg); }
  .benefit-orbit span:nth-child(3) { transform: rotate(180deg); }
  .benefit-orbit span:nth-child(4) { transform: rotate(270deg); }

  .benefit-orbit i {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 62px;
    font-style: normal;
  }

  .process-grid {
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(70px, 9vw, 140px);
  }

  .process-visual {
    justify-self: start;
  }

  .contact {
    min-height: 820px;
  }
}

@media (min-width: 1200px) {
  .product-card:nth-child(2) {
    margin-top: 72px;
  }

  .product-image {
    border-radius: var(--radius-md);
  }

  .benefit-item h3 {
    font-size: 28px;
  }

  .steps h3 {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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