﻿: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 {
  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);
}

.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,
  .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;
  }

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

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

.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-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 h3,
.about-value-card p {
  margin-right: 24px;
  margin-left: 24px;
}

.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);
  }
}

.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 {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--plum);
  background: transparent;
  font-size: 14px;
  font-weight: 900;
  text-align: right;
  text-decoration: none;
}

.footer-menu a:hover {
  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;
}

.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,
  .teaser-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .gallery-grid,
  .polaroid-grid,
  .gallery-page-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 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;
  }

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

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