:root {
  --cream: #fff7f0;
  --cream-2: #ffece2;
  --plum: #3a102b;
  --wine: #5a1838;
  --pink: #ff2f91;
  --orange: #ff4c26;
  --violet: #c847ff;
  --ink-soft: #4d263b;
  --line: rgba(90, 24, 56, 0.18);
  --gradient: linear-gradient(90deg, #c847ff 0%, #ff2f91 48%, #ff5a22 100%);
  --shadow-pink: 0 24px 55px rgba(255, 47, 145, 0.28), 0 18px 38px rgba(255, 90, 34, 0.24);
  --font-display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --font-hand: "Caveat", cursive;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--plum);
  font-family: var(--font-body);
}

body::selection {
  color: #fff;
  background: var(--pink);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 10px clamp(18px, 5vw, 88px);
  background: var(--gradient);
  box-shadow: 0 12px 28px rgba(255, 47, 145, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-cherry {
  width: 56px;
  height: 46px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  color: var(--plum);
}

.brand strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.brand-sweet {
  color: #fff7f0;
  font-family: var(--font-hand);
  font-size: 1.25em;
  font-weight: 700;
  line-height: 0.82;
  -webkit-text-stroke: 0.75px rgba(58, 16, 43, 0.76);
  paint-order: stroke fill;
  text-shadow: 0 2px 0 var(--pink), 0 0 8px rgba(255, 47, 145, 0.95), 0 0 18px rgba(255, 247, 240, 0.82);
  text-transform: none;
}

.brand small {
  margin-top: 3px;
  font-size: 13px;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.main-menu a {
  color: var(--plum);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.main-menu a:hover,
.main-menu a.is-active {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 4px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--plum);
}

.section,
.page-shell {
  padding-inline: clamp(20px, 7vw, 120px);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  min-height: calc(70vh - 72px);
  padding-top: 22px;
  padding-bottom: 30px;
}

.kicker {
  margin: 0 0 20px;
  color: var(--wine);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.shop-copy h2,
.about-card h2,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(78px, 10.8vw, 148px);
  line-height: 0.83;
  overflow: hidden;
}

.hero h1 span {
  display: block;
  transform: translateX(-120%);
  opacity: 0;
  will-change: transform, opacity;
  animation: hero-word-in 520ms cubic-bezier(0.18, 0.82, 0.26, 1) forwards;
}

.hero h1 span:nth-child(1) {
  animation-delay: 120ms;
}

.hero h1 span:nth-child(2) {
  animation-delay: 270ms;
}

.hero h1 span:nth-child(3) {
  animation-delay: 420ms;
}

.pink {
  color: var(--pink);
}

.orange {
  color: var(--orange);
}

.plum {
  color: var(--plum);
}

.lead {
  max-width: 590px;
  margin: 24px 0 26px;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.75vw, 24px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(0) rotate(0);
  transition: transform 180ms ease, box-shadow 220ms ease, color 220ms ease, border-color 220ms ease, background 260ms ease, background-position 520ms ease, filter 220ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -45% -70%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 247, 240, 0.62) 48%, transparent 68%);
  opacity: 0;
  transform: translateX(-55%) rotate(8deg);
  transition: opacity 220ms ease, transform 620ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-4px) rotate(-0.4deg);
}

.btn:hover::after,
.btn:focus-visible::after {
  opacity: 0.72;
  transform: translateX(55%) rotate(8deg);
}

.btn:focus-visible {
  outline: 3px solid rgba(255, 47, 145, 0.38);
  outline-offset: 4px;
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn.primary {
  color: #fff;
  background: var(--gradient);
  background-size: 180% 100%;
  background-position: 0% 50%;
  box-shadow: 0 18px 38px rgba(255, 47, 145, 0.32), 0 10px 24px rgba(255, 90, 34, 0.28);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background-position: 100% 50%;
  box-shadow: 0 24px 52px rgba(255, 47, 145, 0.42), 0 14px 30px rgba(255, 90, 34, 0.34);
  filter: saturate(1.14);
}

.btn.ghost {
  color: var(--pink);
  border: 2px solid var(--pink);
  background: transparent;
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  color: #fff7f0;
  border-color: transparent;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  box-shadow: 0 18px 38px rgba(255, 47, 145, 0.26), 0 10px 24px rgba(255, 90, 34, 0.2);
}

.btn.ghost.light {
  color: #fff7f0;
  border-color: rgba(255, 247, 240, 0.86);
}

.btn.ghost.light:hover,
.btn.ghost.light:focus-visible {
  color: #fff7f0;
  border-color: transparent;
  background: linear-gradient(90deg, var(--violet), var(--pink) 52%, var(--orange));
  box-shadow: 0 18px 42px rgba(255, 47, 145, 0.32), 0 10px 28px rgba(255, 90, 34, 0.28);
}

.neon-frame {
  padding: 18px;
  border-radius: 42px 42px 42px 10px;
  background: linear-gradient(135deg, var(--violet), var(--pink) 45%, var(--orange));
  box-shadow: var(--shadow-pink);
}

.hero-photo {
  min-height: 330px;
  border-radius: 30px 30px 30px 8px;
  background-color: var(--plum);
  background-image: url("hero3.jpg");
  background-position: center 44%;
  background-size: cover;
}

.media-note {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--wine);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-section,
.gallery-section,
.faq-section,
.home-teaser-section,
.testimonials-section {
  padding-top: 86px;
  padding-bottom: 86px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head h2,
.shop-copy h2,
.about-card h2 {
  color: var(--plum);
  font-size: clamp(52px, 7vw, 98px);
  line-height: 0.9;
}

.section-head p,
.shop-copy p,
.about-card p,
.quote-card p,
.page-hero p,
.text-panel p,
.legal-panel p,
.legal-panel li {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.steps-grid,
.gallery-grid,
.faq-grid,
.teaser-grid,
.content-grid,
.product-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

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

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

.home-teaser-section {
  background: var(--plum);
}

.home-teaser-section .kicker {
  color: rgba(255, 247, 240, 0.76);
}

.home-teaser-section .section-head h2 {
  color: #fff;
}

.home-teaser-section .gallery-title-sweet {
  color: var(--pink);
}

.home-teaser-section .gallery-title-rebel {
  color: var(--orange);
}

.home-teaser-section .section-head p {
  color: rgba(255, 247, 240, 0.76);
}

.home-teaser-section .teaser-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 47, 145, 0.32);
  background: rgba(255, 47, 145, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.home-teaser-section .teaser-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 247, 240, 0.2) 42%, rgba(255, 47, 145, 0.2) 55%, transparent 72%);
  opacity: 0;
  transform: translateX(-120%) skewX(-10deg);
}

.home-teaser-section .teaser-card h3 {
  color: #fff7f0;
}

.home-teaser-section .teaser-card p {
  color: rgba(255, 247, 240, 0.74);
}

.home-teaser-section .teaser-card:hover {
  border-color: rgba(255, 247, 240, 0.42);
  transform: translateY(-3px);
}

.card,
.product-panel,
.about-card,
.quote-card,
details,
.text-panel,
.legal-panel,
.teaser-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 38px rgba(58, 16, 43, 0.06);
}

.step-card,
.teaser-card,
.contact-card {
  padding: 28px;
}

.step-card span,
.teaser-card span {
  color: var(--pink);
  font-weight: 900;
}

.step-card h3,
.product-panel h3,
.about-card h3,
.teaser-card h3,
.contact-card h3,
.legal-panel h2,
.legal-panel h3 {
  margin: 14px 0 10px;
  color: var(--plum);
  font-size: 22px;
}

.step-card p,
.teaser-card p,
.contact-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.teaser-card {
  text-decoration: none;
  transition: opacity 680ms ease, filter 760ms ease, border-color 180ms ease, transform 760ms cubic-bezier(0.18, 0.78, 0.22, 1), box-shadow 260ms ease;
  transition-delay: var(--delay, 0ms);
}

.home-teaser-section .teaser-card.teaser-waiting {
  opacity: 0;
  filter: saturate(0.74) blur(3px);
  transform: translateY(54px) rotate(-1.8deg) scale(0.96);
}

.home-teaser-section .teaser-card.is-visible {
  opacity: 1;
  filter: none;
  transform: translateY(0) rotate(0) scale(1);
}

.home-teaser-section .teaser-card.is-visible::before {
  animation: teaser-sugar-flash 880ms ease var(--delay, 0ms) forwards;
}

.home-teaser-section .teaser-card.is-visible:hover {
  transform: translateY(-5px) rotate(-0.35deg);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24), 0 12px 28px rgba(255, 47, 145, 0.2);
}

.reveal-pending {
  --reveal-x: 0px;
  --reveal-y: 34px;
  --reveal-scale: 0.98;
  --reveal-rotate: 0deg;
  opacity: 0;
  filter: blur(12px) saturate(0.88);
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale)) rotate(var(--reveal-rotate));
  transition:
    opacity 760ms ease,
    filter 840ms ease,
    transform 860ms cubic-bezier(0.18, 0.78, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.reveal-pending[data-reveal="slide-left"] {
  --reveal-x: -46px;
  --reveal-y: 10px;
}

.reveal-pending[data-reveal="slide-right"] {
  --reveal-x: 46px;
  --reveal-y: 10px;
}

.reveal-pending[data-reveal="zoom-in"] {
  --reveal-scale: 0.92;
  --reveal-y: 18px;
}

.reveal-pending[data-reveal="soft-pop"] {
  --reveal-scale: 0.94;
  --reveal-y: 28px;
  --reveal-rotate: -0.7deg;
}

.reveal-pending.is-visible {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

.testimonials-section {
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, #fff7f0 0%, #ffe7ef 54%, #fff7f0 100%);
}

.testimonials-head {
  max-width: 920px;
}

.testimonials-head p {
  max-width: 760px;
}

.testimonials-layout {
  display: grid;
  gap: 24px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  position: relative;
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid rgba(90, 24, 56, 0.14);
  border-radius: 14px;
  background: rgba(255, 250, 245, 0.84);
  box-shadow: 0 18px 40px rgba(58, 16, 43, 0.08);
}

.testimonial-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff7f0;
  background: var(--gradient);
  font-size: 13px;
  font-weight: 900;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--plum);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 900;
  line-height: 1.3;
}

.testimonial-card p {
  margin: 16px 0 0;
  color: rgba(90, 24, 56, 0.68);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-card-strong {
  border-color: rgba(255, 47, 145, 0.4);
  color: #fff7f0;
  background: linear-gradient(135deg, var(--plum), var(--wine) 54%, #7e234f);
  box-shadow: 0 24px 54px rgba(58, 16, 43, 0.22), 0 16px 36px rgba(255, 47, 145, 0.12);
}

.testimonial-card-strong blockquote {
  color: #fff7f0;
}

.testimonial-card-strong p {
  color: rgba(255, 247, 240, 0.72);
}

.testimonial-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.review-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 8px solid #fffaf5;
  border-radius: 16px;
  background: #fffaf5;
  box-shadow: 0 22px 54px rgba(58, 16, 43, 0.14);
}

.review-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.review-shot-a {
  aspect-ratio: 1080 / 2340;
  transform: rotate(-2deg);
}

.review-shot-b {
  aspect-ratio: 1080 / 2340;
  transform: rotate(2.2deg);
}

.review-shot-c {
  aspect-ratio: 1080 / 2340;
  transform: rotate(-1deg);
}

.testimonials-section .section-actions {
  margin-top: 34px;
}

.shop-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding-top: 92px;
  padding-bottom: 92px;
  background: linear-gradient(180deg, var(--cream), #ffece8);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gradient);
}

.product-panel {
  padding: 30px;
}

.panel-top {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.pink-bg {
  background: var(--pink);
}

.orange-bg {
  background: var(--orange);
}

.violet-bg {
  background: var(--violet);
}

.option-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(90, 24, 56, 0.14);
}

.option-row span {
  color: #6b4058;
}

.option-row strong {
  color: var(--plum);
}

.fake-input {
  min-height: 64px;
  margin: 22px 0;
  padding: 20px;
  border: 2px solid rgba(255, 47, 145, 0.28);
  border-radius: 14px;
  color: #6b4058;
}

.gallery-section {
  background: var(--plum);
}

.gallery-section .kicker,
.gallery-section .section-head h2 {
  color: #fff;
}

.gallery-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-section .section-actions {
  justify-content: center;
}

.gallery-title {
  display: grid;
  gap: 4px;
}

.gallery-title-sweet {
  color: var(--pink);
  font-family: var(--font-hand);
  font-size: 0.72em;
  line-height: 0.85;
  text-transform: none;
  text-shadow: 0 1px 0 rgba(255, 247, 240, 0.22);
}

.gallery-title-rebel {
  color: var(--orange);
  font-family: var(--font-display);
  line-height: 0.84;
  text-transform: uppercase;
}

.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 38px);
}

.polaroid-card {
  --tilt: -1.5deg;
  --rise: 0px;
  --delay: 0ms;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 16px 16px 58px;
  border-radius: 3px;
  background: #fffaf5;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28);
  transform: translateY(var(--rise)) rotate(var(--tilt)) scale(1);
  transition: opacity 700ms ease, filter 900ms ease, transform 900ms cubic-bezier(0.18, 0.78, 0.22, 1);
  transition-delay: var(--delay);
  will-change: opacity, transform, filter;
}

.polaroid-card:nth-child(2) {
  --tilt: 1.2deg;
  --rise: 18px;
  --delay: 140ms;
}

.polaroid-card:nth-child(3) {
  --tilt: -0.6deg;
  --delay: 280ms;
}

.polaroid-card.polaroid-waiting {
  opacity: 0;
  filter: saturate(0.78) contrast(0.9);
  transform: translateY(92px) rotate(calc(var(--tilt) - 5deg)) scale(0.94);
}

.polaroid-card.is-visible {
  opacity: 1;
  filter: none;
  transform: translateY(var(--rise)) rotate(var(--tilt)) scale(1);
}

.polaroid-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 16px 16px 58px;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.12) 62%, transparent 100%);
  transform: translateY(-120%);
}

.polaroid-card.is-visible::before {
  animation: polaroid-develop 1150ms ease var(--delay) forwards;
}

.polaroid-card img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  object-position: center 45%;
  border-radius: 2px;
  transition: filter 1200ms ease, opacity 900ms ease;
  transition-delay: var(--delay);
}

.polaroid-card.polaroid-waiting img {
  opacity: 0.58;
  filter: grayscale(0.78) sepia(0.34) contrast(0.84) brightness(1.18);
}

.polaroid-card.is-visible img {
  opacity: 1;
  filter: none;
}

.polaroid-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: var(--plum);
  font-family: var(--font-hand);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.gallery-note {
  max-width: 960px;
  margin: 56px auto 0;
  color: rgba(255, 247, 240, 0.86);
  font-size: clamp(19px, 1.75vw, 24px);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

@keyframes polaroid-develop {
  0% {
    opacity: 0;
    transform: translateY(-120%);
  }
  20% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    transform: translateY(120%);
  }
}

@keyframes hero-word-in {
  0% {
    opacity: 0;
    transform: translateX(-120%) skewX(-7deg);
  }

  72% {
    opacity: 1;
    transform: translateX(3%) skewX(0deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
  }
}

@keyframes teaser-sugar-flash {
  0% {
    opacity: 0;
    transform: translateX(-120%) skewX(-10deg);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(120%) skewX(-10deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 span,
  .reveal-pending,
  .polaroid-card,
  .polaroid-card::before,
  .polaroid-card img,
  .teaser-card,
  .teaser-card::before,
  .btn,
  .btn::after {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .reveal-pending,
  .reveal-pending.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .btn:hover,
  .btn:focus-visible,
  .btn:active {
    transform: none;
  }

  .home-teaser-section .teaser-card.teaser-waiting,
  .home-teaser-section .teaser-card.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .home-teaser-section .teaser-card.is-visible::before {
    animation: none;
    opacity: 0;
  }

  .btn:hover::after,
  .btn:focus-visible::after {
    opacity: 0;
  }
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  border-radius: 22px;
  background-color: var(--plum);
  background-position: center;
  background-size: cover;
}

.tile-wide {
  grid-row: span 2;
}

.image-one {
  background-image: url("hero-box.jpg");
}

.image-two {
  background-image: url("gallery-set.jpg");
}

.image-three {
  background-image: url("brand-photo.jpg");
}

.image-four {
  background-image: url("sprinkles.jpg");
}

.gallery-tile figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(58, 16, 43, 0.82);
  font-weight: 900;
}

.patterns-page {
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 61, 155, 0.11), transparent 28%),
    radial-gradient(circle at 90% 4%, rgba(255, 110, 46, 0.11), transparent 24%),
    var(--cream);
}

.patterns-hero {
  padding-bottom: 32px;
}

.patterns-hero h1 {
  max-width: 1060px;
}

.patterns-intro {
  padding-bottom: 54px;
}

.patterns-note {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.52fr);
  gap: 18px 34px;
  align-items: end;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(76, 16, 49, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 61, 155, 0.12), rgba(255, 110, 46, 0.12)),
    #fff8f2;
  box-shadow: 0 22px 60px rgba(76, 16, 49, 0.08);
}

.patterns-note .kicker,
.patterns-note h2,
.patterns-note p {
  grid-column: 1;
  margin: 0;
}

.patterns-note h2 {
  color: var(--plum);
  font-size: clamp(32px, 5vw, 70px);
  line-height: 0.92;
  text-transform: uppercase;
}

.patterns-note p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.58;
}

.patterns-note-actions {
  display: grid;
  gap: 12px;
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 100%;
}

.patterns-note-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.patterns-gallery {
  padding-top: 10px;
}

.patterns-gallery-head {
  max-width: 940px;
  margin-bottom: 26px;
}

.patterns-gallery-head h2 {
  margin: 0;
  color: var(--plum);
  font-size: clamp(38px, 6.5vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
}

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

.pattern-card {
  overflow: hidden;
  border: 1px solid rgba(76, 16, 49, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(76, 16, 49, 0.08);
}

.pattern-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5e7dd;
}

.pattern-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.pattern-media:hover img,
.pattern-media:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.pattern-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(58, 16, 43, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pattern-card-body {
  padding: 16px;
}

.pattern-card h3 {
  margin: 0 0 14px;
  color: var(--plum);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.pattern-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pattern-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.pattern-order {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 12px 28px rgba(255, 61, 155, 0.2);
}

.pattern-download {
  color: var(--plum);
  border: 1px solid rgba(76, 16, 49, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.pattern-action:hover,
.pattern-action:focus-visible {
  transform: translateY(-1px);
}

.about-section {
  display: block;
  padding-top: 86px;
  padding-bottom: 86px;
}

.about-section-head {
  max-width: 980px;
  margin-bottom: 14px;
}

.about-section .gallery-title-rebel {
  color: var(--plum);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin-top: -10px;
}

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

.about-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.58;
}

.about-copy .actions {
  margin-top: 30px;
}

.about-video-frame {
  width: min(100%, 780px);
  justify-self: end;
  overflow: hidden;
}

.about-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 30px 30px 30px 8px;
  background: var(--plum);
  object-fit: cover;
  object-position: center;
}

.about-portrait-frame {
  width: min(100%, 520px);
  padding: 18px;
  border-radius: 999px;
  justify-self: end;
  overflow: hidden;
}

.about-portrait {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--plum);
  object-fit: cover;
  object-position: center;
}

.about-quote-hand {
  max-width: 1040px;
  margin: 32px auto 0;
  color: var(--orange);
  font-family: var(--font-hand);
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 700;
  line-height: 0.95;
  text-align: center;
  text-shadow: 0 1px 0 rgba(58, 16, 43, 0.14);
}

.about-card,
.quote-card,
.text-panel,
.legal-panel {
  padding: clamp(28px, 4vw, 46px);
}

.quote-card {
  display: grid;
  place-items: center;
  min-height: 360px;
  background: var(--gradient);
}

.quote-card p {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.95;
  text-transform: uppercase;
}

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

details {
  padding: 22px 24px;
}

summary {
  cursor: pointer;
  color: var(--plum);
  font-size: 21px;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.page-hero {
  padding-top: 90px;
  padding-bottom: 44px;
}

.page-hero h1 {
  max-width: 980px;
  color: var(--plum);
  font-size: clamp(72px, 10vw, 148px);
  line-height: 0.88;
}

.page-hero p {
  max-width: 760px;
  margin: 26px 0 0;
}

.page-shell {
  padding-bottom: 96px;
}

.content-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

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

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

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
}

.contact-form-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(90, 24, 56, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 38px rgba(58, 16, 43, 0.06);
}

.contact-form-panel h2 {
  margin: 0 0 26px;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 0.9;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  border: 2px solid rgba(255, 47, 145, 0.24);
  border-radius: 8px;
  background: #fffaf5;
  color: var(--plum);
  font: 600 16px/1.4 var(--font-body);
}

.contact-form textarea {
  min-height: 168px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 47, 145, 0.14);
  outline: 0;
}

.contact-consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  letter-spacing: 0;
  text-transform: none;
}

.contact-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--pink);
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-card a {
  color: var(--pink);
  font-weight: 900;
  text-decoration: none;
}

.contact-map-frame {
  padding: 12px;
  border-radius: 28px 28px 28px 8px;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 18px 18px 18px 6px;
  background: var(--plum);
}

.legal-panel {
  max-width: 980px;
}

.legal-panel ul,
.legal-panel ol {
  padding-left: 22px;
}

.legal-placeholder {
  display: inline-block;
  padding: 2px 7px;
  border: 1px dashed rgba(255, 47, 142, 0.55);
  border-radius: 6px;
  background: rgba(255, 47, 142, 0.09);
  color: var(--plum);
  font-weight: 800;
}

.about-page-hero,
.about-story-section,
.about-owner-section,
.about-final-cta {
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.about-page-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  padding-top: 76px;
  padding-bottom: 78px;
}

.about-page-hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-display);
  font-size: clamp(70px, 8.3vw, 124px);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
  overflow: hidden;
}

.about-page-hero h1 > span {
  display: block;
}

.about-page-hero .lead {
  max-width: 720px;
}

.about-page-video-frame,
.about-final-video-frame {
  width: min(100%, 590px);
  justify-self: end;
  overflow: hidden;
}

.about-page-video {
  display: block;
  width: 100%;
  border-radius: 30px 30px 30px 8px;
  background: var(--plum);
  object-position: center;
}

.about-hero-video {
  aspect-ratio: 1;
  object-fit: cover;
}

.about-final-video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-story-section {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  padding-top: 84px;
  padding-bottom: 92px;
  align-items: start;
}

.about-story-copy p,
.about-owner-copy p,
.about-final-copy p {
  color: var(--ink-soft);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.72;
}

.about-story-copy p {
  max-width: 760px;
}

.about-story-copy h2,
.about-owner-copy h2,
.about-final-copy h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 98px);
  line-height: 0.9;
  text-transform: uppercase;
}

.about-story-section .gallery-title-rebel,
.about-values-section .gallery-title-rebel,
.about-owner-section .gallery-title-rebel {
  color: var(--plum);
}

.about-duo-grid,
.about-values-grid {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
}

.about-duo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.about-duo-card,
.about-value-card,
.about-owner-card {
  border: 1px solid rgba(90, 24, 56, 0.18);
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 18px 38px rgba(58, 16, 43, 0.08);
}

.about-duo-card {
  margin: 0;
  padding: 14px 14px 24px;
  border-radius: 18px;
  transform: rotate(-1deg);
}

.about-duo-card-spicy {
  margin-top: 34px;
  transform: rotate(1.2deg);
}

.about-duo-card img,
.about-value-card img {
  width: 100%;
  aspect-ratio: 0.72 / 1;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
  background: #fffaf5;
}

.about-emotion-stack {
  display: grid;
  grid-template-columns: minmax(0, 260px);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: 8px;
  width: 100%;
  aspect-ratio: 1.16 / 0.82;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.about-emotion-stack img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 18px rgba(58, 16, 43, 0.08);
}

.about-social-art {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  aspect-ratio: 1.16 / 0.82;
  overflow: hidden;
  border-radius: 12px;
  background: #fffaf5;
}

.about-social-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
}

.about-card-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 8px;
}

.about-card-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff7f0;
  background: var(--gradient);
  box-shadow: 0 9px 20px rgba(255, 47, 145, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.about-card-socials svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.about-card-socials a:hover,
.about-card-socials a:focus-visible {
  color: #fff;
  background: linear-gradient(90deg, var(--violet), var(--pink) 52%, var(--orange));
  transform: translateY(-2px);
}

.about-duo-card h3,
.about-value-card h3 {
  margin: 18px 8px 8px;
  color: var(--plum);
  font-family: var(--font-hand);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.95;
}

.about-duo-card p,
.about-value-card p {
  margin: 0 8px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.58;
}

.about-quote-band {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  padding-bottom: 92px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 47, 145, 0.28), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(255, 90, 34, 0.24), transparent 36%),
    var(--plum);
  text-align: center;
}

.about-quote-band .kicker {
  color: rgba(255, 247, 240, 0.74);
}

.about-quote-band blockquote {
  max-width: 980px;
  margin: 0 auto;
  color: var(--pink);
  font-family: var(--font-hand);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
}

.about-quote-band p:last-child {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 247, 240, 0.82);
  font-size: 20px;
  line-height: 1.62;
}

.about-values-section {
  padding-top: 86px;
  padding-bottom: 92px;
}

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

.about-value-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fffaf5;
}

.about-value-card img {
  aspect-ratio: 1.16 / 0.82;
  border-radius: 0;
  padding: 10px;
}

.about-value-card .about-emotion-stack {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
}

.about-value-card h3,
.about-value-card p {
  margin-right: 24px;
  margin-left: 24px;
}

.about-value-card .about-emotion-stack img {
  height: 100%;
  aspect-ratio: auto;
  border-radius: 8px;
  padding: 0;
  object-fit: cover;
}

.about-value-card .about-emotion-stack .about-emotion-collage {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.16 / 0.82;
  border-radius: 0;
  padding: 10px;
  object-fit: contain;
  object-position: center;
}

.about-value-card > .about-emotion-collage {
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.about-value-card .about-social-art img {
  height: auto;
  aspect-ratio: auto;
  border-radius: 12px;
  padding: 0;
  object-fit: contain;
}

.about-value-card h3 {
  font-family: var(--font-display);
  font-size: clamp(31px, 3.4vw, 45px);
  text-transform: uppercase;
}

.about-value-card p {
  margin-bottom: 26px;
}

.about-owner-section {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  padding-top: 92px;
  padding-bottom: 96px;
}

.about-owner-card {
  margin: 0;
  width: min(100%, 500px);
  padding: 18px;
  border: 0;
  border-radius: 46px 46px 46px 10px;
  background: linear-gradient(135deg, var(--violet), var(--pink) 48%, var(--orange));
  box-shadow: var(--shadow-pink);
}

.about-owner-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 32px 32px 32px 8px;
  object-fit: cover;
  object-position: center;
}

.about-owner-card figcaption {
  display: grid;
  gap: 3px;
  margin-top: 14px;
  padding: 10px 8px 4px;
  color: #fff7f0;
  text-align: center;
}

.about-owner-card strong {
  font-family: var(--font-hand);
  font-size: 38px;
  line-height: 0.95;
  text-shadow: 0 2px 0 rgba(58, 16, 43, 0.26);
}

.about-owner-card span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-owner-copy p {
  max-width: 780px;
}

.about-final-cta {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  padding-top: 86px;
  padding-bottom: 92px;
  background: var(--plum);
}

.about-final-copy h2 {
  max-width: 720px;
  color: #fff7f0;
}

.about-final-copy p {
  max-width: 720px;
  color: rgba(255, 247, 240, 0.78);
}

.about-final-cta .kicker {
  color: rgba(255, 247, 240, 0.72);
}

.about-final-video-frame {
  width: min(100%, 700px);
}

@media (max-width: 980px) {
  .about-page-hero,
  .about-story-section,
  .about-owner-section,
  .about-final-cta {
    grid-template-columns: 1fr;
  }

  .about-page-video-frame,
  .about-final-video-frame {
    justify-self: stretch;
    width: 100%;
  }

  .about-duo-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-duo-card,
  .about-duo-card-spicy {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
  }

  .about-duo-card-spicy {
    margin-top: 0;
  }

  .about-owner-card {
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .about-page-hero {
    padding-top: 58px;
  }

  .about-page-hero h1 {
    font-size: clamp(62px, 18.4vw, 94px);
  }

  .about-page-video-frame,
  .about-final-video-frame,
  .about-owner-card {
    padding: 12px;
    border-radius: 30px 30px 30px 8px;
  }

  .about-page-video,
  .about-owner-card img {
    border-radius: 22px 22px 22px 6px;
  }

  .about-quote-band blockquote {
    font-size: clamp(42px, 13vw, 62px);
  }
}

.guide-hero,
.guide-section,
.guide-text-section,
.guide-pack-section {
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.guide-map,
.guide-section,
.guide-text-section,
.guide-decor-section,
.guide-final-cta,
.guide-faq {
  scroll-margin-top: 92px;
}

.guide-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  padding-top: 76px;
  padding-bottom: 82px;
}

.guide-hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(70px, 8.2vw, 124px);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
  overflow: hidden;
}

.guide-hero h1 > span {
  display: block;
}

.guide-hero .lead {
  max-width: 760px;
}

.guide-hero-frame {
  width: min(100%, 590px);
  justify-self: end;
  overflow: hidden;
}

.guide-hero-video,
.guide-hero-image {
  display: block;
  width: 100%;
  border-radius: 30px 30px 30px 8px;
  background: var(--plum);
  object-fit: cover;
}

.guide-hero-video {
  aspect-ratio: 1;
}

.guide-hero-image {
  aspect-ratio: 4 / 5;
  object-position: center;
}

.guide-map {
  padding-top: 78px;
  padding-bottom: 84px;
  background: var(--plum);
}

.guide-map .section-head h2,
.guide-map .kicker,
.guide-dark .section-head h2,
.guide-dark .kicker,
.guide-final-cta .kicker,
.guide-final-cta h2 {
  color: #fff7f0;
}

.guide-map .section-head p,
.guide-dark .section-head p,
.guide-dark .guide-step-copy p,
.guide-dark .guide-mini-grid p,
.guide-final-cta p {
  color: rgba(255, 247, 240, 0.78);
}

.guide-map .gallery-title-sweet,
.guide-dark .gallery-title-sweet,
.guide-final-cta .gallery-title-sweet {
  color: var(--pink);
}

.guide-map .gallery-title-rebel,
.guide-dark .gallery-title-rebel,
.guide-final-cta .gallery-title-rebel {
  color: var(--orange);
}

.guide-map-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.guide-map-grid a {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(255, 47, 145, 0.32);
  border-radius: 8px;
  color: #fff7f0;
  background: rgba(255, 47, 145, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.guide-map-grid a:hover,
.guide-map-grid a:focus-visible {
  border-color: rgba(255, 247, 240, 0.46);
  background: rgba(255, 47, 145, 0.18);
  transform: translateY(-3px);
}

.guide-section {
  padding-top: 88px;
  padding-bottom: 96px;
}

.guide-light {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.guide-dark {
  background: var(--plum);
}

.guide-light .gallery-title-rebel,
.guide-faq .gallery-title-rebel,
.guide-decor-section .gallery-title-rebel {
  color: var(--plum);
}

.guide-step-copy p,
.guide-text-card p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.72;
}

.guide-step-copy h2,
.guide-text-card h2,
.guide-final-cta h2,
.guide-faq h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 98px);
  line-height: 0.9;
  text-transform: uppercase;
}

.guide-base-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.guide-base-card,
.guide-mini-grid article,
.guide-package-grid article,
.guide-decor-grid article {
  border: 1px solid rgba(90, 24, 56, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 18px 38px rgba(58, 16, 43, 0.07);
}

.guide-base-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 12px 12px 18px;
}

.guide-base-media {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 16px;
  padding: 5px;
  border-radius: 16px;
  box-shadow: 0 16px 28px rgba(58, 16, 43, 0.16);
}

.guide-base-media-milk {
  background: linear-gradient(135deg, #5a1838, #ff7433 58%, #ffd7a8);
}

.guide-base-media-white {
  background: linear-gradient(135deg, #ff2f91, #fff7f0 48%, #ffb5d7);
}

.guide-base-media-dark {
  background: linear-gradient(135deg, #2b061f, #5a1838 56%, #c73a72);
}

.guide-base-media-ruby {
  background: linear-gradient(135deg, #ff2f91, #f28aaa 54%, #fff7f0);
}

.guide-base-media-gold {
  background: linear-gradient(135deg, #6a2145, #d59a43 52%, #ffe1a8);
}

.guide-base-media-no-sugar {
  background: linear-gradient(135deg, #3a102b, #ff2f91 46%, #ff7433);
}

.guide-base-image,
.guide-base-no-sugar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 11px;
}

.guide-base-image {
  display: block;
  background: #f4f1eb;
  object-fit: cover;
}

.guide-base-no-sugar {
  display: grid;
  place-content: center;
  color: #fff7f0;
  text-align: center;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 47, 145, 0.55), transparent 34%),
    linear-gradient(135deg, #3a102b 0%, #6a2145 48%, #ff7433 100%);
}

.guide-base-no-sugar span {
  font-family: var(--font-display);
  font-size: clamp(58px, 5vw, 78px);
  font-weight: 900;
  line-height: 0.78;
}

.guide-base-no-sugar small {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.base-chip {
  display: block;
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  border: 5px solid rgba(255, 247, 240, 0.7);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(58, 16, 43, 0.16);
}

.base-chip.milk {
  background: #8a4b2f;
}

.base-chip.white {
  background: #fff3d9;
}

.base-chip.dark {
  background: #2d120d;
}

.base-chip.ruby {
  background: #e45880;
}

.base-chip.gold {
  background: #c98b3c;
}

.guide-base-card h3,
.guide-mini-grid h3,
.guide-package-grid h3,
.guide-decor-grid h3 {
  margin: 0 0 10px;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.9;
  text-transform: uppercase;
}

.guide-base-card h3 {
  min-height: 1.8em;
  font-size: clamp(24px, 1.9vw, 32px);
  overflow-wrap: anywhere;
}

.guide-base-card p {
  max-width: 18ch;
}

.guide-ingredients {
  width: 100%;
  margin-top: auto;
  padding: 14px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.guide-ingredients summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 9px 11px;
  border: 1px solid rgba(255, 47, 145, 0.24);
  border-radius: 999px;
  color: var(--plum);
  background: linear-gradient(135deg, rgba(255, 47, 145, 0.1), rgba(255, 116, 51, 0.12));
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  list-style: none;
  text-transform: uppercase;
}

.guide-ingredients summary::-webkit-details-marker {
  display: none;
}

.guide-ingredients summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff7f0;
  background: var(--plum);
  font-size: 15px;
  line-height: 1;
}

.guide-ingredients[open] summary::after {
  content: "-";
}

.guide-ingredients p {
  max-width: none;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.48;
}

.guide-ingredients p + p {
  margin-top: 8px;
}

.guide-base-card p,
.guide-mini-grid p,
.guide-package-grid p,
.guide-decor-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.guide-base-card .guide-ingredients p {
  max-width: none;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.48;
}

.guide-base-card .guide-ingredients p + p {
  margin-top: 8px;
}

.guide-tip {
  max-width: 720px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 2px solid rgba(255, 47, 145, 0.28);
  border-radius: 8px;
  color: var(--plum);
  background: rgba(255, 47, 145, 0.08);
  font-weight: 900;
  line-height: 1.5;
}

.guide-tip-dark {
  margin-top: 28px;
  color: #fff7f0;
  background: rgba(255, 47, 145, 0.12);
}

.guide-text-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  padding-top: 88px;
  padding-bottom: 96px;
}

.guide-warning {
  padding: clamp(26px, 4vw, 44px);
  border-radius: 18px;
  background: var(--gradient);
  box-shadow: var(--shadow-pink);
}

.guide-warning h3 {
  margin: 0 0 16px;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.9;
  text-transform: uppercase;
}

.guide-warning p,
.guide-warning li {
  color: rgba(58, 16, 43, 0.86);
  font-weight: 800;
  line-height: 1.55;
}

.guide-warning ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.guide-font-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.guide-font-card,
.guide-reference-card {
  overflow: hidden;
  border: 1px solid rgba(255, 47, 145, 0.28);
  border-radius: 18px;
  background: rgba(255, 247, 240, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.guide-font-card {
  padding: 14px 14px 24px;
}

.guide-font-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  background: #f4f1eb;
  object-fit: cover;
}

.guide-font-card h3 {
  margin: 18px 8px 8px;
  color: var(--pink);
  font-family: var(--font-hand);
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 0.95;
}

.guide-font-card p {
  margin: 0 8px;
  color: rgba(255, 247, 240, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.guide-media-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: start;
}

.guide-reference-card {
  display: grid;
  padding: 18px;
  color: #fff7f0;
  text-decoration: none;
  cursor: zoom-in;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.guide-reference-card:hover,
.guide-reference-card:focus-visible {
  border-color: rgba(255, 116, 51, 0.72);
  box-shadow: 0 24px 54px rgba(255, 47, 145, 0.2);
  transform: translateY(-2px);
}

.guide-reference-card img {
  width: 100%;
  max-height: 820px;
  border-radius: 12px;
  background: #f4f1eb;
  object-fit: contain;
}

.guide-reference-card span {
  margin-top: 12px;
  color: rgba(255, 247, 240, 0.76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.guide-light .guide-reference-card {
  background: var(--plum);
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 47, 145, 0.26), transparent 32%),
    rgba(26, 6, 19, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-dialog {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(1120px, 96vw);
  max-height: 92vh;
  padding: clamp(12px, 2vw, 20px);
  border: 1px solid rgba(255, 47, 145, 0.36);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(58, 16, 43, 0.98), rgba(90, 24, 56, 0.95));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-dialog img {
  display: block;
  width: 100%;
  max-height: 78vh;
  border: 7px solid #fff7f0;
  border-radius: 14px;
  background: #f4f1eb;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 247, 240, 0.9);
  border-radius: 50%;
  color: #fff7f0;
  background: linear-gradient(135deg, #ff2f91, #ff7433);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  color: #2b061f;
  background: #fff7f0;
}

.lightbox-caption {
  margin: 0;
  color: rgba(255, 247, 240, 0.8);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.guide-mini-grid,
.guide-package-grid,
.guide-decor-grid {
  display: grid;
  gap: 14px;
}

.guide-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.guide-mini-grid article,
.guide-package-grid article,
.guide-decor-grid article {
  padding: 20px;
}

.guide-dark .guide-mini-grid article {
  border-color: rgba(255, 47, 145, 0.24);
  background: rgba(255, 247, 240, 0.08);
}

.guide-dark .guide-mini-grid h3 {
  color: #fff7f0;
}

.guide-dark .guide-mini-grid p {
  color: rgba(255, 247, 240, 0.76);
}

.guide-decor-section,
.guide-faq {
  padding-top: 86px;
  padding-bottom: 94px;
}

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

.guide-decor-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 76, 38, 0.1);
  font-weight: 900;
}

.guide-pack-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
}

.guide-package-grid {
  grid-template-columns: 1fr;
  margin-top: 28px;
}

.guide-package-grid article {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.guide-package-grid h3 {
  margin: 0;
  font-size: clamp(26px, 2vw, 34px);
}

.guide-pack-frame,
.guide-pack-gallery {
  width: min(100%, 720px);
  justify-self: end;
  overflow: hidden;
}

.guide-pack-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 12px;
}

.guide-pack-photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 28px 28px 28px 8px;
  background: #fff7f0;
  box-shadow: 0 18px 34px rgba(43, 6, 31, 0.22);
}

.guide-pack-photo-main {
  grid-row: span 2;
  min-height: 540px;
}

.guide-pack-photo-gift,
.guide-pack-photo-foil {
  min-height: 264px;
}

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

.guide-pack-photo-main img {
  object-position: center 42%;
}

.guide-pack-photo-gift img {
  object-position: center 54%;
}

.guide-pack-photo-foil img {
  object-position: center;
}

.guide-pack-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff7f0;
  background: rgba(43, 6, 31, 0.84);
  box-shadow: 0 10px 22px rgba(43, 6, 31, 0.22);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.guide-final-cta {
  padding-top: 86px;
  padding-bottom: 94px;
  background: var(--plum);
}

.guide-final-cta > div {
  max-width: 980px;
}

.guide-final-cta p {
  max-width: 760px;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.72;
}

.guide-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.guide-faq details {
  background: rgba(255, 255, 255, 0.44);
}

@media (max-width: 1180px) {
  .guide-base-grid,
  .guide-font-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .guide-hero,
  .guide-section,
  .guide-text-section,
  .guide-light,
  .guide-media-section,
  .guide-pack-section {
    grid-template-columns: 1fr;
  }

  .guide-hero-frame,
  .guide-pack-frame,
  .guide-pack-gallery {
    justify-self: stretch;
    width: 100%;
  }

  .guide-pack-gallery {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .guide-pack-photo-main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .guide-pack-photo-gift,
  .guide-pack-photo-foil {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .guide-base-grid,
  .guide-font-grid,
  .guide-decor-grid,
  .guide-package-grid,
  .guide-faq-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .guide-hero {
    padding-top: 58px;
  }

  .guide-hero h1 {
    font-size: clamp(62px, 18vw, 94px);
  }

  .guide-map-grid,
  .guide-mini-grid {
    grid-template-columns: 1fr;
  }

  .guide-hero-frame,
  .guide-pack-frame,
  .guide-pack-gallery {
    padding: 12px;
    border-radius: 30px 30px 30px 8px;
  }

  .guide-hero-video,
  .guide-hero-image,
  .guide-pack-photo {
    border-radius: 22px 22px 22px 6px;
  }

  .guide-pack-gallery {
    grid-template-columns: 1fr;
  }

  .guide-pack-photo-main,
  .guide-pack-photo-gift {
    aspect-ratio: 4 / 5;
  }

  .guide-pack-photo-foil {
    aspect-ratio: 16 / 10;
  }

  .guide-package-grid article {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
  }
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(220px, 0.6fr) minmax(260px, 1.05fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  padding: 44px clamp(20px, 7vw, 120px) 34px;
  background: var(--gradient);
  color: var(--plum);
}

.footer-brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 0.95;
  white-space: nowrap;
}

.footer-brand p,
.footer-credit span {
  margin: 9px 0 0;
  color: rgba(58, 16, 43, 0.82);
  font-weight: 700;
  line-height: 1.45;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
}

.footer-socials a,
.footer-credit a {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  min-height: 0;
  border: 0;
  border-radius: 0;
  color: var(--plum);
  background: transparent;
  box-shadow: none;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-socials a {
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: 48px;
  border: 2px solid rgba(58, 16, 43, 0.28);
  border-radius: 999px;
  background: rgba(255, 247, 240, 0.22);
  box-shadow: 0 14px 28px rgba(58, 16, 43, 0.12);
}

.footer-socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-credit a {
  margin-top: 0;
  padding: 0;
  color: #fff7f0;
  font-family: var(--font-hand);
  font-size: 23px;
  line-height: 1;
  text-transform: none;
  text-shadow: 0 2px 0 rgba(58, 16, 43, 0.25);
}

.footer-socials a:hover,
.footer-credit a:hover {
  color: #fff;
}

.footer-socials a:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: var(--plum);
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  max-width: 640px;
  justify-self: end;
}

.footer-menu a,
.footer-menu button {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--plum);
  background: transparent;
  font-size: 14px;
  font-weight: 900;
  font-family: inherit;
  text-align: right;
  text-decoration: none;
  cursor: pointer;
}

.footer-menu a:hover,
.footer-menu button:hover,
.footer-menu button:focus-visible {
  color: #fff;
  background: transparent;
}

.footer-credit {
  flex-basis: 100%;
  display: block;
  margin-top: 4px;
  color: rgba(58, 16, 43, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.back-to-top {
  position: fixed;
  z-index: 55;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(92px, 11vh, 132px);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 2px solid rgba(255, 247, 240, 0.78);
  border-radius: 50%;
  color: #fff7f0;
  background: linear-gradient(135deg, var(--plum), var(--pink) 54%, var(--orange));
  box-shadow: 0 18px 42px rgba(58, 16, 43, 0.24), 0 0 0 5px rgba(255, 247, 240, 0.58);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

body.has-cookie-banner .back-to-top {
  bottom: clamp(190px, 28vh, 248px);
}

.back-to-top svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow: 0 20px 48px rgba(255, 47, 145, 0.34), 0 0 0 6px rgba(255, 247, 240, 0.76);
  transform: translateY(-3px) scale(1.04);
}

.back-to-top:focus-visible {
  outline: 3px solid #fff7f0;
  outline-offset: 4px;
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  left: clamp(14px, 3vw, 34px);
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 30px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 2px solid rgba(255, 47, 145, 0.44);
  border-radius: 8px;
  background: rgba(58, 16, 43, 0.97);
  box-shadow: 0 24px 60px rgba(58, 16, 43, 0.32), 0 0 0 6px rgba(255, 247, 240, 0.72);
  color: #fff;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 240ms ease, transform 240ms ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(18px);
}

.cookie-icon {
  display: grid;
  place-items: center;
  min-width: 96px;
  min-height: 96px;
  border-radius: 6px;
  background: var(--gradient);
  box-shadow: 0 18px 36px rgba(255, 47, 145, 0.26);
}

.cookie-icon span {
  font-size: 28px;
  line-height: 1;
}

.cookie-icon em {
  color: var(--plum);
  font-family: var(--font-hand);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.9;
}

.cookie-copy h2 {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.9;
  text-transform: uppercase;
}

.cookie-copy p {
  max-width: 860px;
  margin: 0;
  color: rgba(255, 247, 240, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.cookie-copy a {
  color: var(--pink);
  font-weight: 900;
  text-decoration: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  color: var(--plum);
  cursor: pointer;
  font: 900 14px/1 var(--font-body);
}

.cookie-accept {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 16px 32px rgba(255, 47, 145, 0.28);
}

.cookie-necessary {
  background: #fff7f0;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-menu {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    background: rgba(58, 16, 43, 0.98);
    box-shadow: 0 28px 50px rgba(58, 16, 43, 0.32);
  }

  .main-menu.is-open {
    display: flex;
  }

  .main-menu a {
    color: var(--pink);
    font-family: var(--font-hand);
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
    text-shadow: 0 1px 0 rgba(255, 247, 240, 0.18);
  }

  .main-menu a:hover {
    color: #fff7f0;
  }

  .main-menu a.is-active {
    color: var(--pink);
  }

  .hero,
  .shop-section,
  .about-layout,
  .steps-grid,
  .faq-grid,
  .content-grid,
  .product-grid,
  .contact-grid,
  .contact-page-grid,
  .testimonials-layout,
  .teaser-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .about-portrait-frame {
    justify-self: center;
  }

  .gallery-grid,
  .polaroid-grid,
  .gallery-page-grid,
  .patterns-grid,
  .patterns-note {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .patterns-note-actions {
    grid-column: 1;
    grid-row: auto;
  }

  .tile-wide {
    grid-row: span 1;
  }

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

  .footer-menu {
    justify-content: center;
    justify-self: center;
  }

  .footer-credit {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .testimonial-proof {
    display: flex;
    min-height: 0;
    gap: 16px;
    padding: 4px 4px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .testimonial-cards {
    display: flex;
    gap: 16px;
    padding: 4px 4px 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .testimonial-card {
    flex: 0 0 min(76vw, 380px);
    scroll-snap-align: start;
  }

  .testimonial-card blockquote {
    font-size: 19px;
  }

  .review-shot {
    position: relative;
    inset: auto;
    flex: 0 0 min(78vw, 420px);
    max-height: none;
    transform: none;
    scroll-snap-align: start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-icon {
    min-width: 100%;
    min-height: 66px;
    grid-template-columns: auto auto auto;
    gap: 8px;
  }

  .cookie-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 23px;
  }

  .brand small {
    font-size: 13px;
  }

  .brand-cherry {
    width: 52px;
    height: 42px;
  }

  .brand {
    gap: 10px;
  }

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

  .lead {
    font-size: 22px;
  }

  .testimonial-card {
    flex-basis: 82vw;
    padding: 22px;
  }

  .review-shot {
    flex-basis: 82vw;
    max-height: none;
    border-width: 6px;
  }

  .actions .btn {
    width: 100%;
  }

  .hero-photo {
    min-height: 300px;
  }

  .polaroid-card {
    max-width: 430px;
    margin-right: auto;
    margin-left: auto;
    padding: 14px 14px 92px;
  }

  .polaroid-card::before {
    inset: 14px 14px 92px;
  }

  .polaroid-card figcaption {
    right: 16px;
    bottom: 22px;
    left: 16px;
    font-size: clamp(24px, 7.2vw, 30px);
    line-height: 1.05;
  }

  .footer-menu {
    justify-content: center;
  }

  .cookie-actions,
  .cookie-btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

