:root {
  --ink: #2c1725;
  --muted: #765f6b;
  --cream: #fffaf4;
  --petal: #f7d7d9;
  --rose: #c55d73;
  --mulberry: #6f294e;
  --sage: #8aa07a;
  --gold: #c39a4b;
  --charcoal: #161016;
  --black-rose: #0d090d;
  --soft-border: rgba(44, 23, 37, 0.13);
  --shadow: 0 18px 50px rgba(44, 23, 37, 0.12);
  --shadow-lift: 0 24px 60px rgba(44, 23, 37, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 4.35rem;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(247, 215, 217, 0.52), transparent 26rem),
    linear-gradient(180deg, #fffaf4 0%, #fff6f0 42%, #ffffff 100%);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 12%, rgba(195, 154, 75, 0.12), transparent 18rem),
    radial-gradient(circle at 14% 72%, rgba(138, 160, 122, 0.13), transparent 20rem);
}

body,
button,
input,
select,
textarea {
  font: 16px/1.55 Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.65rem, 10vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 7vw, 3.9rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(44, 23, 37, 0.09);
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(16px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

main[id],
section[id] {
  scroll-margin-top: 5.35rem;
}

.site-header:hover {
  background: rgba(255, 250, 244, 0.97);
  box-shadow: 0 10px 30px rgba(44, 23, 37, 0.08);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  position: relative;
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: #fffaf4;
  filter: drop-shadow(0 5px 10px rgba(44, 23, 37, 0.12));
  transition: transform 220ms ease, filter 220ms ease;
}

.brand-mark:hover .brand-logo {
  filter: drop-shadow(0 8px 14px rgba(44, 23, 37, 0.18));
  transform: rotate(-2deg) scale(1.04);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.45);
  transform-origin: 50% 8%;
}

.brand-logo-loop {
  position: absolute;
  right: 0.44rem;
  bottom: 0.42rem;
  width: 1.22rem;
  height: 0.52rem;
  opacity: 0.88;
}

.brand-logo-loop::before,
.brand-logo-loop::after {
  content: "";
  position: absolute;
  top: 0.08rem;
  width: 0.58rem;
  height: 0.32rem;
  border: 0.07rem solid rgba(195, 154, 75, 0.82);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.06);
  box-shadow: 0 1px 2px rgba(44, 23, 37, 0.14);
}

.brand-logo-loop::before {
  left: 0;
  transform: rotate(-22deg);
}

.brand-logo-loop::after {
  right: 0;
  transform: rotate(22deg);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a,
.footer-links a {
  text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--mulberry);
}

.nav-order {
  flex: 0 0 auto;
  border: 1px solid rgba(111, 41, 78, 0.16);
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  color: var(--mulberry);
  background: rgba(247, 215, 217, 0.38);
  font-weight: 900;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-order:hover {
  border-color: rgba(111, 41, 78, 0.26);
  background: rgba(247, 215, 217, 0.58);
  transform: translateY(-1px);
}

.hero-section,
.section,
.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-section > *,
.section > *,
.site-footer > *,
.product-grid > *,
.reviews-grid > *,
.rules-grid > *,
.faq-list > *,
.intro-panel > *,
.intro-content > *,
.review-form > *,
.price-row > * {
  min-width: 0;
}

.hero-section {
  display: grid;
  position: relative;
  min-height: clamp(34rem, 72vh, 45rem);
  isolation: isolate;
  overflow: hidden;
  gap: 1.35rem;
  align-content: center;
  align-items: center;
  border-radius: var(--radius);
  padding: clamp(3.2rem, 8vw, 6rem) clamp(1.1rem, 5vw, 4.4rem);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 250, 244, 0.98), transparent 32%),
    linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0 42%, rgba(255, 250, 244, 0.82) 60%, rgba(255, 246, 240, 0.72)),
    linear-gradient(135deg, rgba(247, 215, 217, 0.28), rgba(195, 154, 75, 0.14));
  box-shadow: 0 24px 70px rgba(44, 23, 37, 0.1);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 250, 244, 0.72), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 244, 0), rgba(255, 246, 240, 0.28));
  pointer-events: none;
}

.hero-collage {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-collage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.96) 0 38%, rgba(255, 250, 244, 0.64) 58%, rgba(255, 250, 244, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.08), rgba(44, 23, 37, 0.1));
}

.hero-tile {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 0.55rem solid rgba(255, 250, 244, 0.96);
  border-bottom-width: 1.15rem;
  border-radius: 0.35rem;
  background: #fffaf4;
  box-shadow: 0 22px 46px rgba(44, 23, 37, 0.18);
}

.hero-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.tile-sunflower {
  right: -2rem;
  top: 1.6rem;
  width: min(34rem, 42vw);
  aspect-ratio: 1.05;
  transform: rotate(2deg);
}

.tile-rose {
  right: 28rem;
  bottom: 2.6rem;
  width: min(17rem, 24vw);
  aspect-ratio: 0.78;
  transform: rotate(-7deg);
}

.tile-pink {
  right: 4.2rem;
  bottom: 2.3rem;
  width: min(15rem, 22vw);
  aspect-ratio: 0.82;
  transform: rotate(7deg);
}

.tile-black {
  right: 20rem;
  top: 12.8rem;
  width: min(18rem, 23vw);
  aspect-ratio: 0.86;
  transform: rotate(-1deg);
}

.tile-mini {
  right: 12rem;
  bottom: -3.4rem;
  width: min(20rem, 26vw);
  aspect-ratio: 1;
  transform: rotate(3deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.hero-copy > * {
  animation: riseIn 680ms ease both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 70ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 130ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 190ms;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 250ms;
}

.hero-copy > *:nth-child(6) {
  animation-delay: 310ms;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--mulberry);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-kicker {
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 5vw, 2rem);
  font-style: italic;
  line-height: 1.15;
}

.hero-text {
  max-width: 37rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0;
}

.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #fffaf4;
  background: var(--mulberry);
  box-shadow: 0 14px 30px rgba(111, 41, 78, 0.22);
}

.button.primary:hover {
  box-shadow: 0 18px 38px rgba(111, 41, 78, 0.28);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--soft-border);
  background: rgba(255, 255, 255, 0.58);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.trust-strip {
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-strip span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--gold);
}

.hero-visual {
  display: grid;
  min-height: 14.5rem;
  place-items: center;
  overflow: visible;
  border: 1px solid rgba(44, 23, 37, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 250, 244, 0.96), rgba(247, 215, 217, 0.56) 62%, rgba(195, 154, 75, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(247, 215, 217, 0.42));
  box-shadow: var(--shadow);
  animation: softFloatIn 820ms ease 180ms both;
}

.hero-photo-frame {
  position: relative;
  width: min(15rem, 70%);
  aspect-ratio: 1;
  border: 12px solid rgba(255, 250, 244, 0.9);
  border-radius: 50%;
  background: #fffaf4;
  box-shadow: 0 28px 70px rgba(44, 23, 37, 0.2);
  transition: transform 420ms ease, box-shadow 420ms ease;
}

.hero-photo-frame:hover {
  box-shadow: 0 34px 85px rgba(44, 23, 37, 0.24);
  transform: translateY(-4px) rotate(1deg);
}

.hero-photo-mask {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 50%;
  background: #fffaf4;
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  padding: 0.55rem;
  background: #fffaf4;
  transition: transform 520ms ease;
}

.hero-photo-frame:hover .hero-photo {
  transform: scale(1.025);
}

.hero-photo-caption {
  position: absolute;
  right: -0.5rem;
  bottom: clamp(-0.8rem, -2vw, -0.35rem);
  display: none;
  max-width: 12rem;
  gap: 0.1rem;
  border: 1px solid rgba(195, 154, 75, 0.35);
  border-radius: var(--radius);
  padding: 0.72rem 0.85rem;
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 16px 36px rgba(44, 23, 37, 0.16);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.hero-photo-frame:hover .hero-photo-caption {
  box-shadow: 0 20px 42px rgba(44, 23, 37, 0.2);
  transform: translateY(-2px);
}

.hero-photo-caption span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-photo-caption strong {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
}

.hero-showcase {
  grid-template-columns: minmax(0, 1.15fr) minmax(7rem, 0.85fr);
  gap: 0.7rem;
  align-items: stretch;
  padding: 0.7rem;
}

.showcase-feature,
.showcase-mini {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 244, 0.58);
  background: #fffaf4;
  box-shadow: 0 18px 44px rgba(44, 23, 37, 0.13);
}

.showcase-feature {
  min-height: 18rem;
  border-radius: var(--radius);
}

.showcase-feature::after,
.showcase-mini::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(44, 23, 37, 0.26)),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.36), transparent 24%);
  pointer-events: none;
}

.showcase-feature img,
.showcase-mini img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.showcase-feature:hover img,
.showcase-mini:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.showcase-caption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  display: grid;
  gap: 0.1rem;
  border: 1px solid rgba(255, 250, 244, 0.34);
  border-radius: var(--radius);
  padding: 0.75rem;
  color: #fffaf4;
  background: rgba(44, 23, 37, 0.58);
  backdrop-filter: blur(8px);
}

.showcase-caption span,
.showcase-mini span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.15;
}

.showcase-stack {
  display: grid;
  gap: 0.7rem;
  min-height: 18rem;
}

.showcase-mini {
  min-height: 5.25rem;
  border-radius: calc(var(--radius) - 4px);
}

.showcase-mini span {
  position: absolute;
  right: 0.55rem;
  bottom: 0.5rem;
  left: 0.55rem;
  z-index: 1;
  color: #fffaf4;
  text-shadow: 0 2px 10px rgba(44, 23, 37, 0.42);
}

.section {
  padding: 3.4rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.intro-panel {
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--soft-border);
  border-bottom: 1px solid var(--soft-border);
}

.intro-content {
  display: grid;
  gap: 1rem;
}

.intro-content p {
  color: var(--muted);
  font-size: 1.03rem;
}

.intro-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.intro-media img {
  display: block;
  width: 100%;
  aspect-ratio: 0.9;
  border: 1px solid rgba(44, 23, 37, 0.12);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(44, 23, 37, 0.09);
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 1.6rem;
}

.section-heading > p:not(.eyebrow),
.section-copy > p {
  color: var(--muted);
}

.occasion-section {
  border-top: 1px solid var(--soft-border);
}

.occasion-grid {
  display: grid;
  gap: 1rem;
}

.occasion-grid article {
  display: grid;
  gap: 0.4rem;
  border-top: 1px solid var(--soft-border);
  padding-top: 1rem;
}

.occasion-grid span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.occasion-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  gap: 1rem;
}

.product-card,
.rules-grid article,
.steps-grid article,
.reviews-grid article,
.contact-card,
.order-form,
.review-form,
.faq-list details {
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 35px rgba(44, 23, 37, 0.08);
}

.product-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 260ms ease,
    background 220ms ease;
  will-change: transform;
}

.product-card:hover {
  border-color: rgba(195, 154, 75, 0.32);
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}

.product-art {
  position: relative;
  min-height: 12rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, var(--art-one), var(--art-two)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px 16px);
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.product-art::before {
  width: 7.5rem;
  height: 7.5rem;
  top: 2rem;
  left: 50%;
  background:
    radial-gradient(circle, rgba(255, 250, 244, 0.95) 0 16%, transparent 17%),
    conic-gradient(from 10deg, var(--art-three), var(--art-one), var(--art-two), var(--art-three));
  transform: translateX(-50%) rotate(-8deg);
  box-shadow: 0 18px 34px rgba(44, 23, 37, 0.18);
}

.product-art::after {
  width: 0.55rem;
  height: 7rem;
  left: calc(50% - 0.25rem);
  bottom: 0;
  border-radius: 999px;
  background: #6c865d;
}

.product-art.has-photo {
  display: grid;
  min-height: 0;
  aspect-ratio: 1;
  isolation: isolate;
  place-items: center;
  background:
    radial-gradient(circle at 42% 24%, rgba(255, 255, 255, 0.95), transparent 24%),
    radial-gradient(circle at 73% 84%, rgba(44, 23, 37, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(195, 154, 75, 0.18)),
    #fff6f0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.62),
    inset 0 -28px 42px rgba(44, 23, 37, 0.12);
}

.product-art.has-photo::before,
.product-art.has-photo::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.product-art.has-photo::before {
  border-radius: 0;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.5), transparent 22%),
    radial-gradient(circle at 78% 82%, rgba(44, 23, 37, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 42%, rgba(195, 154, 75, 0.22));
  mix-blend-mode: multiply;
  opacity: 0.58;
}

.product-art.has-photo::after {
  border-radius: 0;
  background:
    repeating-linear-gradient(0deg, rgba(44, 23, 37, 0.055) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.26) 0 1px, transparent 1px 6px),
    linear-gradient(45deg, transparent, rgba(195, 154, 75, 0.13), transparent);
  mix-blend-mode: multiply;
  opacity: 0.62;
}

.product-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.45rem;
  position: relative;
  z-index: 1;
  filter: saturate(1.08) contrast(1.05) brightness(0.99) drop-shadow(0 20px 24px rgba(44, 23, 37, 0.18));
  transition: transform 520ms ease, filter 520ms ease;
}

.product-card:hover .product-photo {
  filter: saturate(1.12) contrast(1.07) brightness(1.01) drop-shadow(0 24px 32px rgba(44, 23, 37, 0.24));
  transform: scale(1.045);
}

.product-body {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  padding: 1.15rem;
}

.product-body p {
  color: var(--muted);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
}

.price-row a {
  overflow-wrap: anywhere;
  color: var(--mulberry);
  font-weight: 900;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.price-row a:hover {
  color: var(--gold);
  transform: translateX(2px);
}

.price {
  color: var(--mulberry);
  font-weight: 900;
  white-space: nowrap;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(195, 154, 75, 0.28);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  color: #7d5c1e;
  background: rgba(195, 154, 75, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
}

.dark-section {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100% - 1120px) / 2));
  padding-left: max(1rem, calc((100% - 1120px) / 2));
  color: #fffaf4;
  background:
    linear-gradient(135deg, rgba(195, 154, 75, 0.12), transparent 32rem),
    linear-gradient(180deg, var(--charcoal), var(--black-rose));
}

.dark-section .eyebrow,
.dark-section .price {
  color: #f0cd87;
}

.dark-section .section-heading > p:not(.eyebrow),
.dark-section .product-body p {
  color: #dbcbd3;
}

.dark-grid .product-card {
  border-color: rgba(255, 250, 244, 0.13);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.dark-grid .product-card:hover {
  border-color: rgba(240, 205, 135, 0.32);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.dark-grid .product-art.has-photo {
  background:
    radial-gradient(circle at 38% 18%, rgba(255, 250, 244, 0.23), transparent 32%),
    radial-gradient(circle at 76% 76%, rgba(195, 154, 75, 0.3), transparent 36%),
    linear-gradient(145deg, rgba(31, 19, 28, 0.98), rgba(83, 52, 67, 0.8));
  box-shadow:
    inset 0 0 0 1px rgba(240, 205, 135, 0.16),
    inset 0 -32px 48px rgba(0, 0, 0, 0.28);
}

.dark-grid .product-art.has-photo::before {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 246, 218, 0.32), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 38%, rgba(0, 0, 0, 0.38));
  mix-blend-mode: screen;
  opacity: 0.7;
}

.dark-grid .product-art.has-photo::after {
  background:
    repeating-linear-gradient(0deg, rgba(255, 250, 244, 0.07) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(240, 205, 135, 0.12) 0 1px, transparent 1px 7px);
  mix-blend-mode: overlay;
  opacity: 0.58;
}

.dark-grid .product-art::after {
  background: #786246;
}

.dark-grid .tag {
  color: #ffe6ab;
  border-color: rgba(240, 205, 135, 0.3);
  background: rgba(240, 205, 135, 0.1);
}

.reviews-section {
  border-bottom: 1px solid var(--soft-border);
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}

.reviews-grid article {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
  overflow: hidden;
}

.reviews-grid article::before {
  content: "";
  position: absolute;
  inset: auto -2rem -3rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(195, 154, 75, 0.2), transparent 68%);
  pointer-events: none;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold);
  font-size: 0.95rem;
}

.review-stars span {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review-stars strong {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.reviews-grid p {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.7;
}

.review-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1.35;
  overflow: hidden;
  border: 1px solid rgba(44, 23, 37, 0.1);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 250, 244, 0.72);
}

.review-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-grid span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.review-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
  padding: 1rem;
}

.review-form h3 {
  margin: 0.2rem 0;
}

.review-form p {
  margin-bottom: 0;
  color: var(--muted);
}

.review-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.review-form input,
.review-form select,
.review-form textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(44, 23, 37, 0.16);
  border-radius: var(--radius);
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  background: #fffdfa;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.review-form textarea {
  resize: vertical;
}

.review-photo-field span {
  width: fit-content;
  border: 1px solid rgba(195, 154, 75, 0.28);
  border-radius: 999px;
  padding: 0.14rem 0.48rem;
  color: #7d5c1e;
  background: rgba(195, 154, 75, 0.12);
  font-size: 0.72rem;
  font-weight: 900;
}

.review-photo-field input[type="file"] {
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(247, 215, 217, 0.28));
}

.review-photo-field input[type="file"]::file-selector-button {
  margin-right: 0.75rem;
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 0.72rem;
  color: #fffaf4;
  background: var(--mulberry);
  font-weight: 900;
  cursor: pointer;
}

.review-photo-field small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: var(--mulberry);
  box-shadow: 0 0 0 3px rgba(111, 41, 78, 0.12);
}

.star-rating {
  display: grid;
  gap: 0.42rem;
  margin: 0;
  border: 0;
  padding: 0;
}

.star-rating legend {
  margin-bottom: 0.05rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.star-rating-control {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.1rem;
  border: 1px solid rgba(44, 23, 37, 0.16);
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  background: rgba(255, 253, 250, 0.72);
  box-shadow: 0 8px 22px rgba(44, 23, 37, 0.06);
}

.star-button {
  display: grid;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  border: 0;
  padding: 0;
  color: rgba(195, 154, 75, 0.28);
  background: transparent;
  font-size: 1.26rem;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.star-button.is-active {
  color: var(--gold);
}

.star-button:hover,
.star-button:focus-visible {
  color: #b9872e;
  outline: none;
  transform: translateY(-1px);
}

.star-rating small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.order-page-section {
  display: grid;
  gap: 1.5rem;
  align-content: center;
}

.order-page-section > *,
.order-form > *,
.order-detail-grid > *,
.steps-grid > * {
  min-width: 0;
}

.order-page-section h1 {
  max-width: 13ch;
}

.order-page-section .order-copy > p:not(.eyebrow) {
  max-width: 36rem;
  color: var(--muted);
}

.order-details-section,
.order-timeline-section {
  padding-top: 1.5rem;
}

.order-detail-grid {
  display: grid;
  gap: 1rem;
}

.order-detail-grid article {
  display: grid;
  gap: 0.35rem;
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 35px rgba(44, 23, 37, 0.08);
}

.order-detail-grid span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.order-detail-grid h3 {
  margin: 0;
}

.order-detail-grid p {
  margin: 0;
  color: var(--muted);
}

.steps-grid,
.rules-grid {
  display: grid;
  gap: 1rem;
}

.steps-grid article,
.rules-grid article {
  padding: 1.1rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.steps-grid article:hover,
.rules-grid article:hover,
.faq-list details:hover,
.contact-card:hover {
  border-color: rgba(195, 154, 75, 0.28);
  box-shadow: 0 16px 42px rgba(44, 23, 37, 0.11);
  transform: translateY(-3px);
}

.steps-grid span {
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.8rem;
  place-items: center;
  border-radius: 999px;
  color: #fffaf4;
  background: var(--mulberry);
  font-weight: 900;
}

.steps-grid p,
.rules-grid li {
  color: var(--muted);
}

.rules-grid ul {
  margin: 0;
  padding-left: 1.1rem;
}

.contact-card {
  display: grid;
  gap: 0.15rem;
  margin-top: 1.4rem;
  padding: 1rem;
}

.delivery-summary {
  position: relative;
  gap: 0.45rem;
  overflow: hidden;
  border-color: rgba(195, 154, 75, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(247, 215, 217, 0.48)),
    radial-gradient(circle at 92% 12%, rgba(195, 154, 75, 0.2), transparent 34%);
}

.delivery-summary::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2.8rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(195, 154, 75, 0.16), transparent 68%);
  pointer-events: none;
}

.delivery-summary span {
  width: fit-content;
  border: 1px solid rgba(195, 154, 75, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.58rem;
  color: #7d5c1e;
  background: rgba(195, 154, 75, 0.12);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-summary strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.delivery-summary small {
  max-width: 30rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.delivery-summary-grid {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.delivery-summary-grid p {
  margin: 0;
  border: 1px solid rgba(44, 23, 37, 0.08);
  border-radius: calc(var(--radius) - 4px);
  padding: 0.62rem 0.72rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.delivery-summary-grid b {
  color: var(--mulberry);
}

.order-highlights {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.order-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.order-highlights span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.contact-card span,
.contact-card small,
.form-note {
  color: var(--muted);
}

.order-form {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}

.order-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.order-form input,
.order-form select,
.order-form textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(44, 23, 37, 0.16);
  border-radius: var(--radius);
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  background: #fffdfa;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.order-form textarea {
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--mulberry);
  box-shadow: 0 0 0 3px rgba(111, 41, 78, 0.12);
}

.delivery-price-note {
  display: grid;
  gap: 0.2rem;
  border: 1px solid rgba(195, 154, 75, 0.28);
  border-radius: var(--radius);
  padding: 0.78rem 0.9rem;
  background: rgba(255, 250, 244, 0.76);
}

.delivery-price-note span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.delivery-price-note strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.delivery-price-note small {
  color: var(--muted);
  line-height: 1.45;
}

.color-palette {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 1.25rem;
}

.color-palette span {
  width: 1.05rem;
  height: 1.05rem;
  border: 1px solid rgba(44, 23, 37, 0.16);
  border-radius: 50%;
  background: var(--swatch-color);
  box-shadow: 0 4px 10px rgba(44, 23, 37, 0.12);
}

.full-width {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 1.5rem;
  margin: 0;
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  padding: 1rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  gap: 1.2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--soft-border);
}

.site-footer p {
  max-width: 32rem;
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-weight: 800;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloatIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 620px) {
  .site-nav {
    display: flex;
  }

  .trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-section {
    gap: 2rem;
    padding: clamp(4rem, 7vw, 6.2rem) clamp(2rem, 6vw, 4.8rem);
  }

  .hero-collage::before {
    background:
      linear-gradient(90deg, rgba(255, 250, 244, 0.96) 0 40%, rgba(255, 250, 244, 0.58) 62%, rgba(255, 250, 244, 0.18) 100%),
      linear-gradient(180deg, rgba(255, 250, 244, 0.04), rgba(44, 23, 37, 0.1));
  }

  .hero-visual {
    min-height: 19rem;
  }

  .hero-photo-frame {
    width: min(20rem, 74%);
  }

  .hero-photo-caption {
    display: grid;
    right: -0.65rem;
    bottom: -0.65rem;
  }

  .hero-showcase {
    gap: 0.85rem;
    padding: 0.85rem;
  }

  .showcase-feature,
  .showcase-stack {
    min-height: 21rem;
  }

  .product-grid,
  .steps-grid,
  .reviews-grid,
  .order-detail-grid,
  .occasion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.2rem;
  }

  .review-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 1.2rem;
  }
}

@media (min-width: 860px) {
  .hero-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    min-height: 31rem;
  }

  .hero-photo-frame {
    width: min(24rem, 78%);
  }

  .hero-photo-caption {
    right: -0.8rem;
    bottom: -0.75rem;
  }

  .showcase-feature,
  .showcase-stack {
    min-height: 29rem;
  }

  .intro-panel,
  .split-section,
  .site-footer {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .order-page-section {
    grid-template-columns: minmax(18rem, 0.74fr) minmax(24rem, 1fr);
    justify-content: center;
    align-items: center;
  }

  .order-page-section .order-copy,
  .order-page-section .order-form {
    width: min(100%, 34rem);
  }

  .delivery-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .occasion-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    justify-content: flex-end;
  }
}

@media (max-width: 619px) {
  body {
    padding-top: 4.85rem;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.85rem);
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.72rem 0.75rem;
  }

  main[id],
  section[id] {
    scroll-margin-top: 5.8rem;
  }

  .site-nav {
    display: contents;
  }

  .site-nav a {
    display: none;
  }

  .site-nav .nav-order {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-content: center;
    border: 1px solid rgba(44, 23, 37, 0.1);
    border-radius: 999px;
    padding: 0.58rem 0.78rem;
    border-color: rgba(111, 41, 78, 0.18);
    color: var(--mulberry);
    background: rgba(247, 215, 217, 0.5);
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1.1;
    white-space: nowrap;
  }

  .hero-section,
  .section,
  .site-footer {
    width: min(100% - 1rem, 1120px);
  }

  .section {
    padding: 2.45rem 0;
  }

  .section-heading {
    margin-bottom: 1.15rem;
  }

  .hero-section {
    min-height: 43rem;
    align-content: start;
    padding: 2.5rem 0.95rem 12.8rem;
  }

  .hero-copy {
    max-width: 31rem;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-actions {
    gap: 0.55rem;
    margin: 1.25rem 0;
  }

  .hero-actions .button {
    flex: 1 1 12rem;
    padding-inline: 0.9rem;
  }

  .trust-strip {
    gap: 0.42rem;
    font-size: 0.86rem;
  }

  .intro-panel {
    gap: 1.15rem;
  }

  .intro-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .intro-media img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 1.35;
  }

  .intro-media img {
    aspect-ratio: 1;
  }

  .product-grid,
  .reviews-grid,
  .rules-grid,
  .steps-grid,
  .faq-list,
  .order-detail-grid {
    gap: 0.75rem;
  }

  .product-body {
    min-height: auto;
    padding: 1rem;
  }

  .product-art.has-photo {
    aspect-ratio: 1.04;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .price {
    white-space: normal;
  }

  .reviews-grid article,
  .rules-grid article,
  .faq-list details {
    padding: 0.95rem;
  }

  .review-form {
    gap: 0.78rem;
    padding: 0.85rem;
  }

  .review-form input,
  .review-form select,
  .review-form textarea {
    padding: 0.78rem 0.8rem;
    font-size: 1rem;
  }

  .star-rating-control {
    width: 100%;
    justify-content: space-between;
    padding: 0.35rem 0.5rem;
  }

  .star-button {
    width: 2rem;
    height: 2rem;
  }

  .site-footer {
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .footer-links {
    gap: 0.55rem;
  }

  .footer-links a {
    border: 1px solid rgba(44, 23, 37, 0.1);
    border-radius: 999px;
    padding: 0.48rem 0.68rem;
    background: rgba(255, 255, 255, 0.46);
    font-size: 0.9rem;
  }
}

@media (max-width: 520px) {
  .site-header {
    position: fixed;
    align-items: flex-start;
  }

  .brand-mark {
    min-width: 0;
    white-space: normal;
  }

  .order-page-section {
    width: min(100% - 1rem, 1120px);
    gap: 1rem;
    padding-top: 1.6rem;
  }

  .order-page-section h1 {
    max-width: 11ch;
    font-size: clamp(2.25rem, 14vw, 3.55rem);
  }

  .order-page-section .order-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .order-highlights,
  .contact-card,
  .order-form,
  .order-detail-grid article,
  .steps-grid article {
    border-radius: calc(var(--radius) - 2px);
  }

  .order-highlights {
    gap: 0.55rem;
    margin-top: 1rem;
    font-size: 0.88rem;
  }

  .contact-card {
    margin-top: 1rem;
    padding: 0.9rem;
  }

  .delivery-summary {
    gap: 0.55rem;
  }

  .delivery-summary strong {
    font-size: 1.45rem;
    line-height: 1.1;
  }

  .delivery-summary small {
    max-width: none;
    font-size: 0.88rem;
  }

  .delivery-summary-grid {
    gap: 0.45rem;
  }

  .delivery-summary-grid p {
    padding: 0.58rem 0.64rem;
    font-size: 0.84rem;
  }

  .order-form {
    gap: 0.78rem;
    padding: 0.85rem;
  }

  .order-form input,
  .order-form select,
  .order-form textarea {
    border-radius: calc(var(--radius) - 2px);
    padding: 0.78rem 0.8rem;
    font-size: 1rem;
  }

  .delivery-price-note {
    padding: 0.72rem 0.78rem;
  }

  .order-form .button {
    width: 100%;
  }

  .order-details-section,
  .order-timeline-section {
    width: min(100% - 1rem, 1120px);
    padding-top: 1rem;
  }

  .order-detail-grid,
  .steps-grid {
    gap: 0.75rem;
  }

  .hero-section {
    min-height: 42rem;
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.98) 0 48%, rgba(255, 250, 244, 0.82) 68%, rgba(255, 246, 240, 0.62)),
      linear-gradient(135deg, rgba(247, 215, 217, 0.28), rgba(195, 154, 75, 0.14));
  }

  .hero-collage::before {
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.98) 0 46%, rgba(255, 250, 244, 0.74) 68%, rgba(255, 250, 244, 0.24) 100%);
  }

  .tile-sunflower {
    right: -5rem;
    top: auto;
    bottom: 1.1rem;
    width: min(19rem, 82vw);
  }

  .tile-rose {
    right: min(48vw, 10rem);
    bottom: 3.3rem;
    width: min(9.5rem, 38vw);
  }

  .tile-pink {
    right: 0.5rem;
    bottom: -0.95rem;
    width: min(8.6rem, 36vw);
  }

  .tile-mini {
    display: none;
  }
}

@media (max-width: 380px) {
  body {
    padding-top: 4.65rem;
  }

  .site-header {
    padding-inline: 0.55rem;
  }

  .site-nav .nav-order {
    padding-inline: 0.52rem;
    font-size: 0.8rem;
  }

  .hero-section,
  .section,
  .site-footer,
  .order-page-section,
  .order-details-section,
  .order-timeline-section {
    width: min(100% - 0.75rem, 1120px);
  }

  .hero-section {
    min-height: 41rem;
    padding-inline: 0.8rem;
  }

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

  .intro-media img:first-child {
    grid-column: auto;
  }

  .order-page-section h1 {
    font-size: clamp(2rem, 13vw, 2.8rem);
  }

  .delivery-summary span {
    font-size: 0.68rem;
  }

  .delivery-summary-grid p {
    font-size: 0.8rem;
  }

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

  .star-button {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1.12rem;
  }
}

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

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