:root {
  --ink: #2c3442;
  --muted: #4c5360;
  --pink: #f487a8;
  --pink-soft: #FEE5EB;
  --blue-soft: #dff6f6;
  --mint: #9ee6bd;
  --yellow: #f6d85f;
  --peach: #ffb38d;
  --lavender: #d6bdf2;
  --paper: #FEFCF9;
  --paper-alt: #fff6fb;
  --line: #efc8d5;
  --max: 1280px;
  --white: #fff;
  --script-font: "Pacifico", "Segoe Print", "Comic Sans MS", cursive;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  overflow-x: clip;
}

body.lightbox-open {
  overflow: hidden;
}

body.cookies-modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 405px 1fr;
  align-items: center;
  gap: 28px;
  max-width: 1390px;
  min-height: 108px;
  margin: 0 auto;
  padding: 10px 48px 0;
  background: var(--pink-soft);
  border-bottom: 0;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  will-change: transform, opacity;
  transition: opacity 340ms ease, transform 460ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background: var(--pink-soft);
  content: "";
  transform: translateX(-50%);
  z-index: -1;
}

.site-header::after {
  content: none;
}

.header-meta {
  position: absolute;
  top: 8px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #3f4652;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.header-meta__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.header-meta__link::before {
  display: inline-block;
  color: var(--pink);
  font-size: 12px;
  line-height: 1;
}

.header-meta__link--mail::before {
  content: "✉";
}

.header-meta__link--phone::before {
  content: "☎";
}

.header-meta__link:hover {
  color: #2c3442;
}

body.menu-visible .site-header {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.home-hero .site-header {
  opacity: 0;
  transform: translateY(-112%);
  pointer-events: none;
}

body.home-hero.menu-visible .site-header {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  width: 385px;
  height: 90px;
  gap: 12px;
}

.brand-mark {
  flex: 0 0 auto;
  width: 128px;
  height: 82px;
  object-fit: contain;
}

.brand-text-img {
  width: 236px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  color: #343944;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 0 11px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--pink);
  content: "";
  opacity: 0;
}

.main-nav a:hover::after,
.main-nav .active::after {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 31px;
  color: #fff;
  background: var(--pink);
  border-radius: 999px;
  box-shadow: none;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn:hover {
  background: #ef749b;
}

.btn-small {
  min-height: 36px;
  padding: 0 24px;
  font-size: 11px;
}

.btn-light {
  min-height: 39px;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 50% 50%;
  max-width: 1390px;
  min-height: max(690px, 100vh);
  min-height: max(690px, 100dvh);
  margin: 0 auto;
  padding: 88px 52px 105px;
  overflow: visible;
  background:
    radial-gradient(circle at 79% 15%, rgba(119, 205, 232, 0.18) 0 9px, transparent 10px),
    radial-gradient(circle at 37% 75%, rgba(248, 135, 168, 0.16) 0 8px, transparent 9px),
    var(--pink-soft);
  box-shadow: 0 0 0 100vmax var(--pink-soft);
  clip-path: inset(0 -100vmax);
}

.hero::after {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 100vw;
  height: 91px;
  background-color: #fff;
  background-image: url("../assets/img/mraky-separator.png");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 91px;
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-left: 0;
  animation: hero-enter-left 820ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-logo {
  display: block;
  width: 500px;
  height: auto;
  margin: 0 auto 24px;
}

.hero-copy-details {
  max-width: 500px;
  margin: 0 auto;
}

.hero h1,
.section-title h2,
.custom h2,
.offer-card h3 {
  margin: 0;
  font-family: var(--script-font);
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  margin: 10px 0 20px 24px;
  font-size: 31px;
  line-height: 1.1;
  text-align: left;
}

.hero p {
  max-width: 500px;
  margin: 0 auto 30px;
  color: #2f3745;
  font-size: 19px;
  line-height: 1.65;
  text-align: left;
}

.hero .btn {
  margin-left: 165px;
}

.hero-mobile-rest {
  display: none;
}

.hero.hero--promo {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 44%);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  overflow: visible;
}

body.home-hero:not(.menu-visible) .hero.hero--promo {
  padding-top: 128px;
}

.hero.hero--promo .hero-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  display: grid;
  justify-items: start;
  max-width: 560px;
  margin-inline: 0;
  text-align: left;
}

.hero-heading-group {
  display: grid;
  justify-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 20px;
}

.hero-kicker-img {
  width: clamp(150px, 24vw, 240px);
  height: auto;
  margin: 0 0 8px;
  object-fit: contain;
}

.hero-kicker-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 112px;
  margin-bottom: 14px;
  color: var(--pink);
  font-size: 18px;
  line-height: 1;
}

.hero-kicker-divider::before,
.hero-kicker-divider::after {
  flex: 0 0 42px;
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  content: "";
}

.hero.hero--promo h1 {
  margin: 0;
  color: #101d33;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.06;
  text-align: left;
  text-wrap: balance;
}

.hero-headline-row-main {
  white-space: nowrap;
}

.hero.hero--promo h1 .highlight {
  color: var(--pink);
}

.hero.hero--promo p {
  max-width: 470px;
  margin: 0 0 30px;
  color: #2f3745;
  font-size: clamp(1.18rem, 1.25vw, 1.85rem);
  line-height: 1.5;
  text-align: left;
}

.hero.hero--promo .btn {
  margin: 8px 0 0;
  min-height: 50px;
  padding: 0 34px;
  font-size: 14px;
  letter-spacing: 0.07em;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.hero.hero--promo .btn:hover {
  box-shadow: 0 14px 24px rgba(233, 111, 151, 0.34), 0 4px 8px rgba(44, 52, 66, 0.14);
}

.hero.hero--promo .btn:active {
  transform: translateY(1px);
  box-shadow: 0 6px 10px rgba(233, 111, 151, 0.24), 0 1px 3px rgba(44, 52, 66, 0.1);
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px 24px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3b4250;
  font-size: 14px;
  line-height: 1.3;
}

.hero-benefits span {
  color: var(--pink);
  font-size: 18px;
  line-height: 1;
}

.hero.hero--promo .hero-benefits-text {
  max-width: none;
  margin: 46px 0 0;
  color: #5f6877;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.4;
  white-space: nowrap;
  text-align: left;
}

.hero.hero--promo .hero__visual {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  margin-inline: auto;
  animation: hero-enter-right-flat 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 120ms;
}

.hero-main-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: clamp(300px, 48vh, 620px);
  object-fit: contain;  
  opacity: 0.95;
  filter: drop-shadow(0 10px 16px rgba(44, 52, 66, 0.16)) drop-shadow(0 2px 4px rgba(44, 52, 66, 0.12));
}

.hero-static-macarons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-static-macaron {
  position: absolute;
  width: clamp(26px, 3.2vw, 52px);
  height: auto;
  opacity: 0.48;
  filter: saturate(0.66) drop-shadow(0 6px 10px rgba(44, 52, 66, 0.2)) drop-shadow(0 1px 2px rgba(44, 52, 66, 0.12));
}

.hero-static-macaron--1 {
  width: clamp(24px, 2.5vw, 40px);
  left: 5%;
  top: 10%;
}

.hero-static-macaron--2 {
  width: clamp(26px, 2.8vw, 44px);
  left: 31%;
  top: 7%;
}

.hero-static-macaron--3 {
  width: clamp(34px, 3.7vw, 60px);
  left: 10%;
  top: 84%;
}

.hero-static-macaron--4 {
  width: clamp(28px, 3vw, 46px);
  left: 42%;
  top: 88%;
}

.hero-static-macaron--5 {
  width: clamp(32px, 3.5vw, 56px);
  right: 5%;
  top: 12%;
}

.hero-static-macaron--6 {
  width: clamp(24px, 2.6vw, 42px);
  right: 30%;
  top: 8%;
}

.hero-static-macaron--7 {
  width: clamp(36px, 3.9vw, 62px);
  right: 15%;
  top: 84%;
}

.hero-static-macaron--8 {
  width: clamp(27px, 2.9vw, 45px);
  right: 33%;
  top: 88%;
}

.hero-static-macaron--9 {
  display: none;
}

.hero-main-logo--mobile {
  display: none;
}

.hero.hero--sprite .hero__visual {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  margin-inline: auto;
  align-self: center;
  aspect-ratio: 1.1 / 1;
  isolation: isolate;
  transform: translateY(clamp(8px, 1.2vw, 18px));
  animation: hero-enter-right 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 120ms;
}

.hero.hero--sprite .hero__rainbow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
}

.hero.hero--sprite .hero__run,
.hero.hero--sprite .hero__unicorn {
  position: absolute;
  width: 46%;
  max-width: 270px;
  right: 0;
  left: 0;
  margin-inline: auto;
  top: 34%;
  transform-origin: 50% 100%;
}

.hero.hero--sprite .hero__run {
  width: 46%;
  max-width: 270px;
  left: 35%;
  top: 34%;
  height: auto;
  aspect-ratio: 260 / 190;
  background-image: url("../assets/img/hero-unicorn-run-sprite.png");
  background-repeat: no-repeat;
  background-size: 600% 100%;
  background-position: 0 0;
  z-index: 1;
  opacity: 0;
  transform: translate3d(-160%, 26%, 0);
  will-change: transform, opacity, background-position;
}

.hero.hero--sprite .hero__run.is-active {
  opacity: 1;
  filter: none;
}

.hero.hero--sprite .hero__unicorn {
  z-index: 4;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
}

.hero.hero--sprite .hero__unicorn.is-hidden {
  opacity: 0;
}

.hero.hero--sprite .hero__unicorn.is-idle {
  animation: hero-unicorn-idle 2.2s ease-in-out infinite;
}

.hero.hero--sprite .hero__macarons,
.hero.hero--sprite .hero__poof {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero.hero--sprite .hero__macaron {
  position: absolute;
  width: 9%;
  aspect-ratio: 1 / 0.68;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-18%) scale(0.55);
  box-shadow:
    inset 0 0.18em 0 rgba(255, 255, 255, 0.55),
    0 0.16em 0 rgba(0, 0, 0, 0.14),
    0 0.45em 1em rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.hero.hero--sprite .hero__macaron::before,
.hero.hero--sprite .hero__macaron::after {
  position: absolute;
  left: 10%;
  right: 10%;
  border-radius: 999px;
  content: "";
}

.hero.hero--sprite .hero__macaron::before {
  top: 41%;
  height: 17%;
  background: rgba(255, 255, 255, 0.8);
}

.hero.hero--sprite .hero__macaron::after {
  top: 12%;
  height: 34%;
  background: rgba(255, 255, 255, 0.22);
}

.hero.hero--sprite .hero__macaron--pink {
  left: 66%;
  top: 66%;
  background: #f4a2bb;
}

.hero.hero--sprite .hero__macaron--yellow {
  left: 58%;
  top: 76%;
  background: #f1d364;
}

.hero.hero--sprite .hero__macaron--green {
  left: 76%;
  top: 77.5%;
  background: #a8dbbf;
}

.hero.hero--sprite .hero__macaron.is-visible {
  animation: hero-macaron-plop 0.56s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero.hero--sprite .hero__poof {
  z-index: 4;
}

.hero.hero--sprite .hero__poof::before,
.hero.hero--sprite .hero__poof::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  content: "";
}

.hero.hero--sprite .hero__poof::before {
  left: 61.5%;
  top: 66%;
  width: 11%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.82) 34%, rgba(255, 214, 224, 0.52) 56%, rgba(255, 214, 224, 0) 76%);
}

.hero.hero--sprite .hero__poof::after {
  left: 63%;
  top: 69%;
  width: 7%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 214, 224, 0.92) 0%, rgba(255, 214, 224, 0) 74%);
}

.hero.hero--sprite .hero__poof.is-active::before {
  animation: hero-poof 0.52s ease-out forwards;
}

.hero.hero--sprite .hero__poof.is-active::after {
  animation: hero-poof-small 0.52s ease-out forwards;
}

.hero.hero--sprite .hero__sparkle {
  position: absolute;
  left: 64%;
  top: 71%;
  width: 2.2%;
  aspect-ratio: 1;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.4);
  background:
    linear-gradient(transparent 43%, #fff 43% 57%, transparent 57%),
    linear-gradient(90deg, transparent 43%, #fff 43% 57%, transparent 57%);
  filter: drop-shadow(0 0 0.25rem rgba(255, 255, 255, 0.6));
  z-index: 6;
}

.hero.hero--sprite .hero__sparkle::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 44%, #ffd766 44% 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, #ffd766 44% 56%, transparent 56%);
  content: "";
}

.hero.hero--sprite .hero__sparkle.is-active {
  animation: hero-sparkle 0.62s ease-out forwards;
}

.hero.hero--sprite .hero__sparkle:nth-child(1) {
  --tx: -34%;
  --ty: -52%;
  animation-delay: 0ms;
}

.hero.hero--sprite .hero__sparkle:nth-child(2) {
  --tx: 26%;
  --ty: -58%;
  animation-delay: 30ms;
}

.hero.hero--sprite .hero__sparkle:nth-child(3) {
  --tx: 40%;
  --ty: -10%;
  animation-delay: 80ms;
}

.hero.hero--sprite .hero__sparkle:nth-child(4) {
  --tx: -24%;
  --ty: 22%;
  animation-delay: 120ms;
}

.hero.hero--sprite .hero__sparkle:nth-child(5) {
  --tx: 10%;
  --ty: 34%;
  animation-delay: 160ms;
}

@keyframes hero-sprite-frames {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 100% 0;
  }
}

@keyframes hero-macaron-plop {
  0% {
    opacity: 0;
    transform: translateY(-30%) scale(0.5);
  }

  58% {
    opacity: 1;
    transform: translateY(10%) scale(1.1);
  }

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

@keyframes hero-poof {
  0% {
    opacity: 0;
    transform: scale(0.28);
  }

  30% {
    opacity: 0.95;
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes hero-poof-small {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }

  25% {
    opacity: 0.75;
    transform: scale(0.65);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes hero-sparkle {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.4) rotate(0deg);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--tx), var(--ty), 0) scale(1.25) rotate(24deg);
  }
}

@keyframes hero-unicorn-idle {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -1.2%, 0);
  }
}

.hero-art {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 0;
}

.hero-art > img {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 4;
  width: min(650px, 47vw);
  max-height: min(560px, 78vh);
  height: auto;
  transform: translateY(10px);
  object-fit: contain;
}

.decor {
  position: absolute;
  z-index: 3;
  display: block;
  animation: decor-pop 12s ease-in-out infinite;
  opacity: 0;
  transform-origin: center;
  will-change: opacity, transform;
}

.heart {
  --decor-rotate: 45deg;
  width: 20px;
  height: 20px;
  background: #f69bbb;
  transform: rotate(var(--decor-rotate));
}

.heart::before,
.heart::after {
  position: absolute;
  width: 20px;
  height: 20px;
  background: inherit;
  border-radius: 50%;
  content: "";
}

.heart::before {
  left: -10px;
}

.heart::after {
  top: -10px;
}

.heart-one {
  top: 92px;
  left: 75px;
  animation-delay: 0.2s;
}

.heart-two {
  top: 210px;
  left: 690px;
  animation-delay: 1.4s;
}

.heart-three {
  top: 280px;
  right: 345px;
  animation-delay: 2.3s;
}

.star,
.diamond {
  background: var(--yellow);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
}

.star {
  width: 36px;
  height: 36px;
}

.diamond {
  width: 16px;
  height: 16px;
  background: #f4b7cf;
}

.star-one {
  top: 195px;
  left: 45px;
  animation-delay: 1s;
}

.star-two {
  top: 96px;
  left: 690px;
  animation-delay: 2.8s;
}

.star-three {
  top: 230px;
  right: 70px;
  animation-delay: 0.7s;
}

.diamond-one {
  top: 92px;
  left: 365px;
  animation-delay: 3.2s;
}

.diamond-two {
  top: 130px;
  right: 245px;
  background: #a6e1c2;
  animation-delay: 1.8s;
}

@keyframes decor-pop {
  0%,
  22% {
    opacity: 0;
    transform: scale(0.82) rotate(var(--decor-rotate, 0deg));
  }

  34%,
  74% {
    opacity: 0.92;
    transform: scale(1) rotate(var(--decor-rotate, 0deg));
  }

  52% {
    opacity: 1;
    transform: scale(1.04) rotate(var(--decor-rotate, 0deg));
  }

  100% {
    opacity: 0;
    transform: scale(0.88) rotate(var(--decor-rotate, 0deg));
  }
}

@keyframes hero-enter-left {
  0% {
    opacity: 0;
    transform: translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-enter-right {
  0% {
    opacity: 0;
    transform: translate3d(42px, clamp(8px, 1.2vw, 18px), 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, clamp(8px, 1.2vw, 18px), 0);
  }
}

@keyframes hero-enter-right-flat {
  0% {
    opacity: 0;
    transform: translate3d(42px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.offer,
.gallery {
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax);
}

.offer {
  position: relative;
  padding: 72px 40px 64px;
  scroll-margin-top: 96px;
}

.offer > .section-title,
.offer > .offer-grid,
.about > .section-title,
.about > .custom-copy,
.about > .custom-visual {
  position: relative;
  z-index: 2;
}

.section-macarons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.section-macaron {
  position: absolute;
  width: clamp(28px, 2.8vw, 50px);
  height: auto;
  opacity: 0.52;
  filter: saturate(0.88) drop-shadow(0 5px 9px rgba(44, 52, 66, 0.14));
}

.section-macaron--offer-1 {
  left: 2%;
  top: 16%;
}

.section-macaron--offer-2 {
  right: 3%;
  top: 34%;
}

.section-macaron--offer-3 {
  left: 44%;
  bottom: 3%;
}

.section-macaron--about-1 {
  right: 4%;
  top: 12%;
}

.section-macaron--about-2 {
  left: 2.5%;
  bottom: 18%;
}

.section-macaron--about-3 {
  right: 45%;
  bottom: 6%;
}

.about,
.contact-section {
  scroll-margin-top: 96px;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  text-align: center;
}

.section-title h2,
.custom h2 {
  color: var(--ink);
  font-size: 33px;
  line-height: 1;
}

.section-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 112px;
  height: 16px;
  color: var(--pink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 19px;
  line-height: 1;
  pointer-events: none;
}

.section-title span::before,
.section-title span::after {
  display: block;
  flex: 0 0 42px;
  width: 42px;
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  content: "";
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.offer-card {
  display: grid;
  align-items: center;
  min-height: 286px;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.offer-card.macarons {
  grid-template-columns: 43% 57%;
  background: var(--pink-soft);
}

.offer-card.cakes {
  grid-template-columns: 52% 48%;
  background: var(--blue-soft);
}

.offer-card.pottery {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 720px;
  justify-self: center;
  grid-template-columns: 38% 62%;
  background: #f7f4ff;
}

.offer-card img {
  width: 100%;
  height: 286px;
  object-fit: cover;
  transition: transform 340ms ease, filter 220ms ease;
}

.offer-card.macarons img {
  object-position: 45% 52%;
}

.offer-card.cakes img {
  object-position: 45% 50%;
}

.offer-card.pottery img {
  object-position: center;
}

.offer-card div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 32px 30px;
}

.offer-card h3 {
  margin-bottom: 16px;
  font-size: 36px;
  line-height: 1;
}

.offer-card p {
  max-width: 280px;
  margin: 0;
  color: #333b47;
  font-size: 17px;
  line-height: 1.65;
}

.offer-card .btn {
  margin-top: auto;
  min-height: 38px;
  padding: 0 27px;
  color: #fff;
  background: #eb769d;
  border: 1px solid #e1658f;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.offer-card:hover,
.offer-card:focus-within {
  transform: none;
  box-shadow: none;
}

.offer-card:hover img,
.offer-card:focus-within img {
  filter: brightness(0.9);
}

.offer-card:hover .btn,
.offer-card:focus-within .btn {
  background: #e15f8b;
  border-color: #d95784;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(217, 87, 132, 0.3);
}

.offer-card .btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 4px 8px rgba(217, 87, 132, 0.24);
}

.custom {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 47% 53%;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 430px;
  padding: 64px 40px 46px;
  background: var(--paper-alt);
  box-shadow: 0 0 0 100vmax var(--paper-alt);
  clip-path: inset(0 -100vmax);
}

.custom::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
  background-image: url("../assets/img/paper-separator.png");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 18px;
  content: "";
}

.custom .section-title {
  grid-column: 1 / -1;
  margin-bottom: 22px;
}

.about {
  position: relative;
  isolation: isolate;
  padding-top: 64px;
  padding-bottom: 50px;
  background:
    radial-gradient(circle at 16% 26%, rgba(246, 135, 168, 0.1) 0 10px, transparent 11px),
    radial-gradient(circle at 84% 72%, rgba(166, 225, 194, 0.12) 0 12px, transparent 13px),
    var(--paper-alt);
  clip-path: inset(0 -100vmax 0 -100vmax);
}

.about.custom::before {
  position: absolute;
  left: 50%;
  right: auto;
  top: 0;
  bottom: auto;
  width: 100vw;
  height: 18px;
  background-image: url("../assets/img/pink-separator.png");
  background-repeat: repeat-x;
  background-position: left top;
  background-size: auto 18px;
  transform: translateX(-50%);
  transform-origin: center;
  content: "";
  pointer-events: none;
  z-index: 8;
}

.about.custom::after {
  position: absolute;
  left: 50%;
  right: auto;
  top: auto;
  bottom: 0;
  width: 100vw;
  height: 18px;
  background-image: url("../assets/img/pink-separator-bottom.png");
  background-repeat: repeat-x;
  background-position: left top;
  background-size: auto 18px;
  transform: translateX(-50%) rotate(0deg);
  transform-origin: center;
  content: "";
  pointer-events: none;
  z-index: 8;
}

.custom-copy {
  justify-self: center;
  align-self: center;
  width: min(100%, 560px);
  padding-inline: clamp(6px, 1vw, 16px);
}

.about-label {
  margin: 0;
  color: #7d8593;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.about .section-title {
  justify-self: center;
  align-items: flex-start;
  width: min(100%, 560px);
  margin-bottom: 8px;
  text-align: left;
}

.about .section-title span {
  width: 96px;
  justify-content: flex-start;
}

.custom-visual {
  align-self: center;
}

.custom h2 {
  margin-bottom: 25px;
  font-size: 34px;
}

.custom h2 span {
  color: #ffc494;
  font-family: Arial, sans-serif;
  font-size: 28px;
}

.custom-copy p {
  max-width: 470px;
  margin: 0 0 35px;
  color: #333b47;
  font-size: 17px;
}

.about .custom-copy p {
  max-width: 52ch;
  margin-bottom: 16px;
  color: #2e3745;
  font-size: 18px;
  line-height: 1.58;
}

.about .custom-copy p:last-of-type {
  margin-bottom: 0;
}

.about .custom-copy {
  display: grid;
  gap: 0;
  align-content: center;
}

.about .custom-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 3.4vw, 3.75rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 500px;
  gap: 32px;
}

.benefits div {
  display: grid;
  justify-items: center;
  gap: 13px;
  text-align: center;
}

.benefits strong {
  color: #333b47;
  font-size: 15px;
  font-weight: 400;
}

.icon {
  position: relative;
  width: 58px;
  height: 58px;
}

.heart-icon {
  width: 33px;
  height: 33px;
  margin-top: 9px;
  border-right: 4px solid var(--pink);
  border-bottom: 4px solid var(--pink);
  transform: rotate(45deg);
}

.heart-icon::before,
.heart-icon::after {
  position: absolute;
  width: 29px;
  height: 29px;
  border: 4px solid var(--pink);
  border-radius: 50%;
  content: "";
}

.heart-icon::before {
  top: 2px;
  left: -23px;
}

.heart-icon::after {
  top: -23px;
  left: 2px;
}

.palette-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.whisk-icon {
  width: 72px;
  height: 72px;
  margin-top: -8px;
  object-fit: contain;
  filter: drop-shadow(0 2px 0 rgba(244, 135, 168, 0.18));
  transform: rotate(45deg);
  transform-origin: 50% 58%;
}

.custom-visual {
  position: relative;
  justify-self: center;
}

.custom-cake {
  position: absolute;
  top: 12px;
  right: 0px;
  left: auto;
  z-index: 3;
  width: 294px;
  height: 294px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 45%;
}

.about .custom-cake {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: 320px;
  height: 320px;
  margin-inline: auto;
  border-radius: 50%;
  object-position: center;
  border: 6px solid rgba(244, 135, 168, 0.28);
  box-shadow:
    0 16px 40px rgba(41, 50, 65, 0.18),
    0 0 0 12px rgba(255, 255, 255, 0.52);
}

.about .custom-visual::before {
  position: absolute;
  right: 6%;
  top: 8%;
  color: #f6a0be;
  font-size: 22px;
  letter-spacing: 0.35em;
  opacity: 0.22;
  content: "♥ ✦";
  pointer-events: none;
}

.mini-rainbow {
  position: absolute;
  top: 58px;
  right: 0;
  left: auto;
  width: 220px;
  height: auto;
  z-index: 2;
  border-radius: 0;
  object-fit: contain;
}

.about .mini-rainbow {
  top: 70px;
  right: -24px;
  width: 228px;
}

.custom-heart {
  right: 170px;
  bottom: 90px;
  --decor-rotate: 45deg;
  animation-delay: 1.2s;
}

.custom-star {
  right: 255px;
  bottom: 70px;
  width: 18px;
  height: 18px;
  background: #aee6c2;
}

.gallery {
  padding: 48px 40px 64px;
}

.gallery-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.gallery-title h2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.gallery-title h2 span {
  color: var(--pink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  transform: translateY(1px);
}

.gallery-title h2 span::before,
.gallery-title h2 span::after {
  content: none;
}

.gallery-btn {
  min-height: 40px;
  padding: 0 31px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #f6dfe7;
  border-radius: 999px;
  box-shadow: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  transform: translateY(1px);
}

.gallery-carousel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 14px;
}

.detail-carousel {
  margin-top: 18px;
}

.detail-carousel .gallery-track {
  gap: 14px;
  grid-auto-columns: calc((100% - 42px) / 4);
}

.detail-carousel .gallery-slide {
  height: auto;
}

.detail-carousel .gallery-slide img {
  height: auto;
  aspect-ratio: 3 / 4;  
  filter: brightness(1)
}

.detail-carousel .gallery-slide img:hover,
.detail-carousel .gallery-slide img:focus,
.detail-carousel .gallery-slide img:active {
  filter: brightness(0.8);
}

.gallery-viewport {
  min-width: 0;
  overflow: hidden;
}

.gallery-track {
  display: grid;
  grid-auto-columns: calc((100% - 72px) / 5);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: #fff;
  border: 1px solid #f0d7e2;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  text-align: left;
  scroll-snap-align: start;
}

.gallery-slide--placeholder {
  aspect-ratio: 3 / 4;
  background: #fbf6f9;
  border: 1px dashed #eddbe3;
  cursor: default;
  opacity: 0.48;
}

.gallery-slide--placeholder::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.gallery-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px 12px 10px;
  color: #fff;
  background: linear-gradient(to top, rgba(41, 50, 65, 0.72), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-slide:hover .gallery-caption,
.gallery-slide:focus-within .gallery-caption {
  opacity: 1;
}

.gallery-caption h3,
.gallery-caption p {
  margin: 0;
}

.gallery-caption h3 {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-caption p {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.25;
}

.gallery-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid #f6dfe7;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
}

.gallery-control::before {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.gallery-next::before {
  transform: translateX(-1px) rotate(45deg);
}

.gallery-prev::before {
  transform: translateX(1px) rotate(225deg);
}

.gallery-control:hover {
  color: #fff;
  background: var(--pink);
}

.gallery-control.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.gallery-carousel--no-controls {
  grid-template-columns: inherit;
}

.gallery-carousel--no-controls .gallery-control {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 0;
  padding: 16px;
  background: rgba(41, 50, 65, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  width: min(92vw, 1100px);
  max-height: calc(100dvh - 32px);
  min-width: 0;
  margin: 0 auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  background: #fff;
  border: 4px solid #fff;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(41, 50, 65, 0.28);
}

.lightbox-content img {
  width: 100%;
  max-height: calc(100dvh - 150px);
  object-fit: contain;
  background: #fff;
}

.lightbox-content figcaption {
  display: grid;
  gap: 4px;
  padding: 14px 16px 12px;
  color: var(--ink);
}

.lightbox-content strong {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox-content span {
  color: var(--muted);
  font-size: 14px;
}

.lightbox-close,
.lightbox-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(25, 33, 46, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  font-weight: 500;
}

.lightbox-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  font-size: 0;
  transform: translateY(-50%);
}

.lightbox-control::before {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
  content: "";
}

.lightbox-prev {
  left: clamp(8px, 1.8vw, 18px);
}

.lightbox-prev::before {
  transform: translateX(1px) rotate(225deg);
}

.lightbox-next {
  right: clamp(8px, 1.8vw, 18px);
}

.lightbox-next::before {
  transform: translateX(-1px) rotate(45deg);
}

.lightbox-close:hover,
.lightbox-control:hover {
  color: #fff;
  background: rgba(25, 33, 46, 0.78);
  border-color: rgba(255, 255, 255, 0.55);
}

.cta {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 0;
  margin-top: 0;
  padding: clamp(40px, 7vw, 72px) clamp(20px, 4vw, 46px);
  background:
    radial-gradient(circle at 16% 26%, rgba(244, 135, 168, 0.12) 0 12px, transparent 13px),
    radial-gradient(circle at 84% 72%, rgba(166, 225, 194, 0.12) 0 12px, transparent 13px),
    var(--pink-soft);
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.cta::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
  background-image: url("../assets/img/pink-separator.png");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 18px;
  pointer-events: none;
  content: "";
}

.cta::after {
  position: absolute;
  right: 0;
  top: 100%;
  left: 0;
  height: 18px;
  background-image: url("../assets/img/pink-separator.png");
  background-repeat: repeat-x;
  background-position: left top;
  background-size: auto 18px;
  transform: scale(-1);
  transform-origin: center;
  pointer-events: none;
  content: "";
}

.cta p {
  margin: 0;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(100%, 860px);
}

.cta-inner::after {
  position: absolute;
  right: clamp(4px, 1vw, 12px);
  top: clamp(-4px, -0.8vw, -10px);
  color: #f08faf;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.45em;
  opacity: 0.18;
  content: "✦ ♥";
  pointer-events: none;
}

.cta-title {
  margin: 0;
  color: #1f2938;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
}

.cta-text {
  max-width: 680px;
  color: #384150;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.6;
}

.cta .btn {
  min-height: 54px;
  padding: 0 42px;
  font-size: 14px;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.cta .btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 18px 30px rgba(233, 111, 151, 0.36);
}

.cta .btn:focus-visible {
  outline: 2px solid #1f2a39;
  outline-offset: 3px;
}

.about .custom-copy::after {
  position: absolute;
  right: clamp(22px, 3vw, 44px);
  top: clamp(22px, 3vw, 36px);
  color: #f495b5;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.5em;
  opacity: 0.18;
  content: "♥ ✦";
  pointer-events: none;
}

.contact-section {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(62px, 8vw, 92px) clamp(20px, 4vw, 44px);
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(-18px -100vmax -18px -100vmax);
  overflow: hidden;
}

.contact-section::before {
  content: none;
}

.contact-section::after {
  content: none;
}

.contact-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
  width: min(100%, 980px);
  margin: 0 auto;
}

.contact-decor {
  position: absolute;
  z-index: 1;
  width: clamp(34px, 4vw, 54px);
  height: auto;
  opacity: 0.78;
  filter: saturate(0.88) drop-shadow(0 6px 10px rgba(44, 52, 66, 0.16));
  pointer-events: none;
}

.contact-decor--top {
  right: clamp(8px, 2vw, 18px);
  top: clamp(8px, 2vw, 18px);
}

.contact-decor--bottom {
  left: clamp(12px, 2.6vw, 24px);
  bottom: clamp(10px, 2.3vw, 20px);
}

.contact-kicker {
  margin: 0;
  color: var(--pink);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-copy {
  display: grid;
  justify-items: start;
  gap: 16px;
  text-align: left;
}

.contact-copy h2 {
  margin: 0;
  color: #1e2840;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
}

.contact-heart {
  color: var(--pink);
  font-size: 0.74em;
}

.contact-copy-divider {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #f08caf;
  line-height: 1;
}

.contact-copy-divider span {
  width: 74px;
  height: 1px;
  background: #f3b5cb;
}

.contact-copy-divider i {
  font-style: normal;
  font-size: 14px;
}

.contact-text {
  max-width: 468px;
  margin: 0;
  color: #465163;
  font-size: clamp(1rem, 1.15vw, 1.13rem);
  line-height: 1.6;
}

.contact-cta {
  margin-top: 6px;
  min-height: 54px;
  padding: 0 38px;
  font-size: 14px;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 24px rgba(233, 111, 151, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-cta:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 20px 32px rgba(233, 111, 151, 0.36);
}

.contact-cta:focus-visible {
  outline: 2px solid #1f2a39;
  outline-offset: 3px;
}

.contact-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #6d7685;
  font-size: 13px;
  line-height: 1.35;
}

.contact-note-icon {
  color: var(--pink);
  font-size: 14px;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 2.8vw, 28px);
  background: #fff;
  border: 1px solid #efdbe5;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(42, 50, 64, 0.05);
  text-align: left;
}

.contact-card h3 {
  margin: 0;
  color: #2d3748;
  font-family: var(--script-font);
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
}

.contact-card-divider {
  position: relative;
  height: 1px;
  margin: 0;
  background: #f1bfd1;
}

.contact-card-divider::after {
  position: absolute;
  right: 0;
  top: 50%;
  color: #ef8eaf;
  font-size: 17px;
  transform: translateY(-52%);
  content: "♥";
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
}

.contact-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #ec7fa6;
  background: #feeff5;
  border: 1px solid #f6d4e2;
  border-radius: 999px;
}

.contact-item-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-body {
  display: grid;
  gap: 4px;
}

.contact-label {
  margin: 0;
  color: #e977a1;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-value {
  margin: 0;
  color: #384456;
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
}

a.contact-value {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-fb-panel {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: #2f3a4c;
  background: #fff8fb;
  border: 1px dashed #efc7d7;
  border-radius: 10px;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.contact-fb-panel:hover {
  border-color: #e6aac2;
  background: #fff;
  transform: translateY(-1px);
}

.contact-fb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: #eb739b;
  border-radius: 999px;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.contact-fb-body {
  display: grid;
  gap: 4px;
}

.contact-fb-body strong {
  color: #2f3a4c;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.025em;
  white-space: nowrap;
  text-transform: uppercase;
}

.contact-fb-body small {
  color: #6a7484;
  font-size: 12px;
  line-height: 1.35;
}

.contact-fb-arrow {
  color: #eb739b;
  font-size: 24px;
  line-height: 1;
}

.contact-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2px;
  border-top: 1px solid #f2d9e4;
}

.contact-meta-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding-top: 12px;
}

.contact-meta-item + .contact-meta-item {
  border-left: 1px solid #f2d9e4;
  padding-left: 14px;
}

.contact-meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #eb7ea6;
}

.contact-meta-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  max-width: 1390px;
  margin: 0 auto;
  padding: 24px 48px 26px;
  border-top: 2px solid #e7a1bb;
  background: var(--pink-soft);
  box-shadow: 0 0 0 100vmax var(--pink-soft);
  clip-path: inset(0 -100vmax);
}

.footer-meta {
  display: grid;
  gap: 4px;
}

.copyright,
.footer-mini-contact {
  margin: 0;
  color: #2f3745;
  font-size: 12px;
  line-height: 1.35;
}

.footer-mini-contact {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #2f3745;
  font-size: 12px;
}

.cookie-settings-link,
.cookie-policy-link {
  color: #2f3745;
  font-size: 12px;
}

.cookie-settings-link {
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-settings-link:hover,
.cookie-policy-link:hover,
.footer-mini-contact:hover {
  color: #1f2736;
}

.cookie-policy-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dot-divider {
  margin: 0 6px;
  color: #8a909a;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 120;
  display: grid;
  justify-content: center;
}

.cookie-banner__inner {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px 18px;
  color: #2f3745;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #ecd6e1;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(41, 50, 65, 0.2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.cookie-banner__inner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-btn {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-btn-ghost {
  color: #36404f;
  background: #fff;
  border: 1px solid #ead2de;
}

.cookie-btn-primary {
  color: #fff;
  background: var(--pink);
  border: 1px solid var(--pink);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(41, 50, 65, 0.58);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.cookie-modal__panel {
  width: min(100%, 640px);
  max-height: calc(100dvh - 36px);
  overflow: auto;
  padding: 20px 20px 18px;
  background: #fff;
  border: 1px solid #ead7e0;
  border-radius: 12px;
  box-shadow: 0 20px 54px rgba(41, 50, 65, 0.25);
}

.cookie-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-modal__head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
}

.cookie-modal__close {
  width: 38px;
  height: 38px;
  padding: 0;
  color: #2e3745;
  background: #fff;
  border: 1px solid #e9d8e1;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal__intro {
  margin: 12px 0 14px;
  color: #434a56;
  font-size: 15px;
}

.cookie-options {
  display: grid;
  gap: 10px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px 14px;
  padding: 11px 12px;
  background: #fff8fb;
  border: 1px solid #f2dce7;
  border-radius: 10px;
}

.cookie-option__text {
  display: grid;
  gap: 4px;
}

.cookie-option__text strong {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.cookie-option__text span {
  color: #4f5765;
  font-size: 13px;
  line-height: 1.35;
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--pink);
}

.cookie-modal__actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.scroll-top[hidden] {
  display: none;
}

.scroll-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  background: rgba(244, 135, 168, 0.78);
  border: 1px solid rgba(233, 116, 156, 0.92);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

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

.scroll-top:hover {
  background: rgba(235, 117, 157, 0.9);
  border-color: rgba(222, 97, 141, 0.98);
}

body.page-detail {
  background: #fff;
}

body.page-detail .site-header::before {
  background: var(--pink-soft);
}

.detail-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 142px 40px 74px;
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax);
}

.detail-subnav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 28px;
  padding: 5px;
  background: #fff;
  border: 1px solid #f3dbe5;
  border-radius: 999px;
}

.detail-subnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  color: #424958;
  border-radius: 999px;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.detail-subnav a:hover {
  background: #fff3f7;
}

.detail-subnav a.active {
  color: #fff;
  background: var(--pink);
}

.detail-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 36px;
  padding: 22px 0 18px;
}

.detail-kicker {
  margin: 0 0 8px;
  color: var(--pink);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.detail-copy h1 {
  margin: 0 0 16px;
  font-family: var(--script-font);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.02;
}

.detail-copy p {
  max-width: 620px;
  margin: 0 0 28px;
  color: #38404d;
  font-size: 19px;
  line-height: 1.6;
}

.detail-visual img {
  width: 100%;
  max-height: 440px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 16px 38px rgba(41, 50, 65, 0.13);
}

.detail-section {
  margin-top: 60px;
}

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

.price-card {
  padding: 24px 22px 22px;
  background: #fff8fb;
  border: 1px solid #f7dfeb;
  border-radius: 10px;
}

.price-card h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.price-card p {
  margin: 0 0 14px;
  color: #4e5663;
  font-size: 15px;
  line-height: 1.5;
}

.price-card strong {
  color: var(--ink);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 19px;
  font-weight: 900;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 1.18;
  border-radius: 10px;
  object-fit: cover;
}

.order-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 142px 40px 74px;
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax);
}

.order-hero {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.order-hero .detail-kicker {
  margin-bottom: 10px;
}

.order-hero .section-title {
  margin-bottom: 16px;
}

.order-hero p:last-of-type {
  max-width: 680px;
  margin: 0 auto;
  color: #3f4652;
  font-size: 19px;
  line-height: 1.6;
}

.order-card {
  margin-top: 28px;
  padding: 26px;
  background: #fff8fb;
  border: 1px solid #f3dbe5;
  border-radius: 12px;
}

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

.order-required-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #5b6270;
  font-size: 13px;
  line-height: 1.35;
}

.order-required-star {
  color: #e45f90;
  font-weight: 800;
}

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

.order-field {
  display: grid;
  gap: 7px;
}

.order-field span {
  color: #3c4350;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-field input,
.order-field select,
.order-field textarea {
  width: 100%;
  padding: 11px 12px;
  color: #2f3745;
  background: #fff;
  border: 1px solid #e6d6df;
  border-radius: 10px;
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

.order-field textarea {
  resize: vertical;
  min-height: 136px;
}

.order-field input:focus,
.order-field select:focus,
.order-field textarea:focus {
  border-color: #eaa4bf;
  outline: 2px solid rgba(244, 135, 168, 0.24);
  outline-offset: 0;
}

.order-field-full {
  grid-column: 1 / -1;
}

.order-captcha {
  gap: 10px;
}

.order-captcha-row {
  display: grid;
  grid-template-columns: minmax(180px, auto) minmax(110px, 180px);
  gap: 10px;
  align-items: center;
}

.order-captcha-question {
  margin: 0;
  color: #3f4652;
  font-size: 15px;
  line-height: 1.4;
}

.order-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.order-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4b5360;
  font-size: 14px;
}

.order-consent input {
  margin-top: 2px;
}

.order-actions {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.order-note {
  margin: 0;
  color: #596272;
  font-size: 13px;
}

.order-note.is-success {
  color: #0f6a37;
}

.order-note.is-error {
  color: #b32946;
}

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

  .site-header {
    grid-template-columns: minmax(300px, 365px) 1fr;
    row-gap: 12px;
    min-height: auto;
    padding: 12px clamp(24px, 4vw, 44px) 8px;
  }

  .site-header .btn-small {
    display: none;
  }

  .brand {
    width: min(365px, 100%);
    height: 82px;
  }

  .brand-mark {
    width: 112px;
    height: 74px;
  }

  .brand-text-img {
    width: 224px;
  }

  .main-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 13px 22px;
  }

  .hero {
    min-height: max(620px, 100vh);
    min-height: max(620px, 100dvh);
    padding: 62px clamp(24px, 4vw, 44px) 100px;
    overflow: hidden;
  }

  .hero-logo {
    width: min(445px, 43vw);
    margin-left: auto;
    margin-right: auto;
  }

  .hero p {
    max-width: 460px;
    margin: 0 auto 26px;
    font-size: 18px;
  }

  .hero .btn {
    margin-left: 105px;
  }

  .hero-art > img {
    right: auto;
    bottom: auto;
    width: min(590px, 46vw);
    max-height: min(520px, 72vh);
    transform: translateY(8px);
  }

  .hero.hero--sprite .hero__visual {
    width: min(100%, 560px);
  }

  .hero.hero--promo {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 46%);
    gap: clamp(20px, 3vw, 42px);
  }

  .hero.hero--promo h1 {
    font-size: clamp(1.85rem, 3.4vw, 3rem);
  }

  .hero.hero--promo p {
    font-size: clamp(1.05rem, 1.4vw, 1.4rem);
  }

  .heart-two,
  .star-two {
    left: 52%;
  }

  .offer,
  .custom,
  .gallery {
    padding-inline: clamp(24px, 4vw, 40px);
  }

  .custom {
    margin-top: 0;
  }

  .contact-section {
    padding-inline: clamp(24px, 4vw, 40px);
  }

  .site-footer {
    padding-inline: clamp(24px, 4vw, 40px);
  }

  .detail-main,
  .order-main {
    padding-top: 132px;
  }

  .detail-copy p {
    font-size: 18px;
  }
}

@media (max-width: 980px) {
  body.home-hero .offer.offer--deferred {
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition:
      opacity 320ms ease,
      transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1),
      visibility 0s linear 420ms;
  }

  body.home-hero .offer.offer--deferred.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 10px;
  }

  .brand {
    justify-content: center;
  }

  .main-nav {
    justify-content: center;
    max-width: 760px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
    min-height: 100dvh;
    padding: 42px clamp(22px, 5vw, 44px) 96px;
    text-align: center;
    overflow: hidden;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-logo {
    width: min(520px, 82vw);
    margin: 0 auto 10px;
  }

  .hero p {
    max-width: 600px;
    margin: 0 auto 26px;
    font-size: 18px;
  }

  .hero .btn {
    margin-left: 0;
  }

  .hero-copy-details {
    display: none;
  }

  .hero.hero--sprite .hero__visual {
    margin-top: -18px;
  }

  .hero.hero--promo {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding-top: 152px;
    padding-bottom: 92px;
  }

  .hero.hero--promo .hero-copy {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    width: min(100%, 760px);
    max-width: min(100%, 760px);
    margin-top: 0;
    justify-self: center;
    align-self: start;
    justify-items: center;
    text-align: center;
  }

  .hero.hero--promo h1 {
    max-width: 740px;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.08;
    text-align: center;
  }

  .hero-headline-row-main {
    white-space: normal;
  }

  .hero.hero--promo p {
    max-width: 680px;
    font-size: clamp(1rem, 2.4vw, 1.25rem);
    text-align: center;
    margin-inline: auto;
  }

  .hero.hero--promo .btn {
    display: inline-flex;
    width: min(100%, 480px);
    margin-inline: auto;
    justify-content: center;
  }

  .hero.hero--promo .hero-benefits {
    justify-content: center;
    margin-top: 14px;
  }

  .hero.hero--promo .hero-benefits-text {
    margin-top: 34px;
    font-size: 12px;
    text-align: center;
  }

  .hero.hero--promo .hero__visual {
    grid-column: auto;
    grid-row: auto;
    order: 1;
    display: block;
    width: min(100%, 62%);
    max-width: 420px;
    min-width: 300px;
    justify-self: center;
    align-self: start;
    margin-top: -14px;
    margin-bottom: -8px;
  }

  .hero-main-logo--desktop {
    display: none;
  }

  .hero-main-logo--mobile {
    display: block;
    max-height: none;
  }

  .hero-static-macaron {
    width: clamp(22px, 4vw, 42px);
  }

  .hero-static-macaron--1 {
    left: 6%;
    top: 8%;
  }

  .hero-static-macaron--2 {
    right: 7%;
    left: auto;
    top: 10%;
  }

  .hero-static-macaron--3 {
    left: 8%;
    top: 36%;
  }

  .hero-static-macaron--4 {
    right: 9%;
    left: auto;
    top: 38%;
  }

  .hero-static-macaron--5 {
    left: 10%;
    right: auto;
    top: 72%;
  }

  .hero-static-macaron--6 {
    right: 10%;
    top: 72%;
  }

  .hero-static-macaron--7 {
    left: 30%;
    right: auto;
    top: 88%;
  }

  .hero-static-macaron--8 {
    right: 30%;
    top: 88%;
  }

  body.home-hero .hero.hero--promo {
    min-height: auto;
    padding-top: 152px;
    padding-bottom: 92px;
  }

  body.home-hero:not(.menu-visible) .hero.hero--promo {
    padding-top: 152px;
  }

  .hero-art {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 0;
    margin-top: 10px;
  }

  .hero-art > img {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(640px, 100%);
    height: auto;
    max-height: 42vh;
  }

  .hero.hero--sprite .hero__visual {
    width: min(80vw, 520px);
    margin-inline: auto;
  }

  .decor {
    transform: scale(0.78);
  }

  .heart-one {
    top: 120px;
    left: 8%;
  }

  .heart-two,
  .star-two {
    display: none;
  }

  .heart-three {
    top: 310px;
    right: 10%;
  }

  .star-one {
    top: 245px;
    left: 10%;
  }

  .star-three {
    top: 280px;
    right: 8%;
  }

  .diamond-one,
  .diamond-two {
    display: none;
  }

  .offer {
    padding-top: 58px;
    padding-bottom: 42px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .offer-card,
  .offer-card.macarons,
  .offer-card.cakes {
    grid-template-columns: minmax(220px, 40%) 1fr;
    min-height: 235px;
  }

  .offer-card.cakes {
    grid-template-columns: 1fr minmax(220px, 42%);
  }

  .offer-card.pottery {
    grid-template-columns: minmax(220px, 40%) 1fr;
    max-width: none;
  }

  .offer-card img {
    height: 235px;
  }

  .custom {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 48px;
    padding-bottom: 42px;
    text-align: center;
  }

  .about .section-title {
    align-items: center;
    text-align: center;
  }

  .about .section-title span {
    justify-content: center;
  }

  .custom-copy p,
  .benefits {
    margin-inline: auto;
  }

  .custom-copy {
    width: 100%;
    padding-inline: 0;
  }

  .custom-visual {
    min-height: 330px;
    margin-top: 10px;
  }

  .custom-cake {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .about .custom-cake {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin-inline: auto;
  }

  .mini-rainbow {
    right: calc(50% - 330px);
  }

  .about .mini-rainbow {
    right: calc(50% - 300px);
  }

  .custom-heart {
    right: calc(50% - 255px);
  }

  .custom-star {
    right: calc(50% - 175px);
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(100%, 760px);
  }

  .contact-copy {
    justify-items: center;
    text-align: center;
  }

  .contact-card {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .section-macaron {
    width: clamp(24px, 3.8vw, 40px);
    opacity: 0.46;
  }

  .section-macaron--offer-1 {
    left: 1.2%;
    top: 12%;
  }

  .section-macaron--offer-2 {
    right: 1.2%;
    top: 24%;
  }

  .section-macaron--offer-3 {
    left: 50%;
    bottom: 2%;
  }

  .section-macaron--about-1 {
    right: 2%;
    top: 11%;
  }

  .section-macaron--about-2 {
    left: 1.2%;
    bottom: 18%;
  }

  .section-macaron--about-3 {
    right: 36%;
    bottom: 4%;
  }

  .contact-item {
    grid-template-columns: 44px 1fr;
  }

  .contact-item-icon {
    width: 44px;
    height: 44px;
  }

  .contact-item-icon svg {
    width: 21px;
    height: 21px;
  }

  .contact-fb-panel {
    grid-template-columns: 38px 1fr auto;
    gap: 10px;
    padding: 10px 12px;
  }

  .contact-fb-icon {
    width: 38px;
    height: 38px;
    font-size: 27px;
  }

  .contact-fb-body strong {
    font-size: 12px;
    white-space: normal;
  }

  .contact-fb-body small {
    font-size: 11px;
  }

  .gallery-track {
    grid-auto-columns: calc((100% - 36px) / 3);
  }

  .gallery {
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .site-footer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    padding-inline: clamp(24px, 5vw, 44px);
  }

  .detail-main,
  .order-main {
    padding: 124px 24px 58px;
  }

  .detail-subnav {
    margin: 0 auto 24px;
  }

  .detail-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail-copy {
    text-align: center;
  }

  .detail-copy p {
    margin-inline: auto;
  }

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

  .order-grid {
    grid-template-columns: 1fr;
  }

  .order-field-full {
    grid-column: auto;
  }

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

  .order-actions {
    justify-items: center;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 16px 6px;
  }

  .brand {
    width: min(320px, 100%);
    height: 74px;
    gap: 8px;
  }

  .brand-mark {
    width: 86px;
    height: 66px;
  }

  .brand-text-img {
    width: min(210px, 64vw);
  }

  .main-nav {
    gap: 8px 13px;
    font-size: 11px;
    line-height: 1.2;
  }

  .main-nav a {
    padding: 8px 0;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: 30px 16px 82px;
  }

  .hero::after {
    height: 64px;
    background-size: auto 64px;
  }

  .hero-logo {
    width: min(420px, 96vw);
    margin-bottom: 8px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .btn {
    min-height: 42px;
    padding-inline: 24px;
    font-size: 11px;
    letter-spacing: 0.07em;
  }

  .hero-art > img {
    width: min(430px, 100%);
    height: auto;
    max-height: 40vh;
  }

  .hero.hero--sprite .hero__visual {
    width: min(100%, 420px);
    margin-top: -24px;
  }

  .hero.hero--promo {
    min-height: auto;
    padding-top: 146px;
    padding-bottom: 74px;
    gap: 12px;
  }

  body.home-hero:not(.menu-visible) .hero.hero--promo {
    padding-top: 146px;
  }

  .hero.hero--promo .hero-copy {
    width: 100%;
    max-width: 100%;
    order: 2;
  }

  .offer,
  .about,
  .contact-section {
    scroll-margin-top: 112px;
  }

  .hero-kicker-img {
    width: clamp(140px, 44vw, 210px);
  }

  .hero.hero--promo h1 {
    font-size: clamp(1.72rem, 8.4vw, 2.25rem);
    line-height: 1.1;
    max-width: 95%;
  }

  .hero.hero--promo p {
    max-width: 95%;
    margin-bottom: 32px;
    font-size: clamp(1rem, 4.6vw, 1.18rem);
    line-height: 1.45;
  }

  .hero.hero--promo .btn {
    min-height: 44px;
    padding-inline: 26px;
    font-size: 12px;
  }

  .hero.hero--promo .hero-benefits {
    gap: 8px 14px;
    margin-top: 18px;
    justify-content: center;
    max-width: 330px;
    margin-inline: auto;
  }

  .hero.hero--promo .hero-benefits-text {
    margin-top: 32px;
    font-size: 12px;
    line-height: 1.45;
    white-space: normal;
    text-align: center;
  }

  .hero.hero--promo .hero-benefits li {
    font-size: 13px;
  }

  .hero.hero--promo .hero__visual {
    order: 1;
    width: min(100%, 62vw);
    max-width: 300px;
    min-width: 210px;
    margin-top: -26px;
    margin-bottom: -12px;
  }

  .hero-static-macaron {
    width: clamp(18px, 4.8vw, 34px);
    opacity: 0.8;
  }

  .hero-static-macaron--1,
  .hero-static-macaron--2 {
    top: 7%;
  }

  .hero-static-macaron--1 {
    left: 6%;
  }

  .hero-static-macaron--2 {
    right: 6%;
    left: auto;
  }

  .hero-static-macaron--5,
  .hero-static-macaron--6 {
    top: 60%;
  }

  .hero-static-macaron--5 {
    left: 8%;
    right: auto;
  }

  .hero-static-macaron--6 {
    right: 8%;
    left: auto;
  }

  .hero-static-macaron--3,
  .hero-static-macaron--7 {
    top: 88%;
  }

  .hero-static-macaron--4,
  .hero-static-macaron--8 {
    display: none;
  }

  .hero-static-macaron--9 {
    display: block;
    width: clamp(19px, 4.8vw, 34px);
    right: 4%;
    left: auto;
    top: 88%;
  }

  .hero-main-logo--desktop {
    display: none;
  }

  .hero-main-logo--mobile {
    display: block;
    max-height: none;
  }

  .hero.hero--sprite .hero__run,
  .hero.hero--sprite .hero__unicorn {
    width: 51%;
    right: 0;
    left: 0;
    margin-inline: auto;
    top: 37%;
  }

  .hero.hero--sprite .hero__macaron--pink {
    left: 66%;
    top: 69%;
  }

  .hero.hero--sprite .hero__macaron--yellow {
    left: 58%;
    top: 79%;
  }

  .hero.hero--sprite .hero__macaron--green {
    left: 77%;
    top: 80%;
  }

  .decor {
    display: none;
  }

  .offer,
  .custom,
  .gallery {
    padding-inline: 16px;
  }

  .custom {
    margin-top: 0;
    padding-top: 52px;
  }

  .section-title {
    margin-bottom: 20px;
  }

  .section-title h2,
  .custom h2 {
    font-size: 27px;
    line-height: 1.2;
  }

  .offer-card,
  .offer-card.macarons,
  .offer-card.cakes,
  .offer-card.pottery {
    grid-template-columns: 1fr;
  }

  .offer-card.cakes img {
    order: -1;
  }

  .offer-card img {
    height: 205px;
  }

  .offer-card div {
    align-items: center;
    padding: 22px;
    text-align: center;
  }

  .offer-card p {
    margin-inline: auto;
    font-size: 16px;
  }

  .offer-card .btn {
    margin-top: 18px;
  }

  .custom {
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .custom-copy p {
    font-size: 16px;
  }

  .benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .custom-visual {
    min-height: 305px;
  }

  .custom-cake {
    top: 18px;
    left: 50%;
    right: auto;
    width: 235px;
    height: 235px;
    transform: translateX(-50%);
  }

  .about .custom-cake {
    width: 252px;
    height: 252px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin-inline: auto;
  }

  .mini-rainbow {
    top: 58px;
    right: 50%;
    width: 150px;
    transform: translateX(112%);
  }

  .about .mini-rainbow {
    top: 72px;
    width: 156px;
    transform: translateX(122%);
  }

  .custom-heart,
  .custom-star {
    display: none;
  }

  .gallery-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .offer {
    padding-top: 48px;
    padding-bottom: 34px;
  }

  .gallery {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .gallery-title h2 {
    white-space: normal;
  }

  .gallery-carousel {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .gallery-control {
    width: 36px;
    height: 36px;
    font-size: 0;
  }

  .gallery-control::before {
    width: 9px;
    height: 9px;
  }

  .gallery-track {
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
  }

  .gallery-slide img {
    height: auto;
  }

  .cta {
    padding: 30px 16px;
  }

  .cta-inner {
    gap: 12px;
  }

  .cta-title {
    font-size: 1.55rem;
  }

  .cta-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .cta .btn {
    min-height: 46px;
    padding-inline: 28px;
    font-size: 12px;
  }

  .contact-section {
    padding: 42px 16px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-shell::before,
  .contact-shell::after {
    display: none;
  }

  .contact-copy {
    justify-items: center;
    text-align: center;
  }

  .contact-card {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .contact-cta {
    min-height: 48px;
    padding-inline: 30px;
    font-size: 12px;
  }

  .contact-copy-divider span {
    width: 58px;
  }

  .contact-item {
    grid-template-columns: 42px 1fr;
    gap: 10px;
  }

  .contact-item-icon {
    width: 42px;
    height: 42px;
  }

  .contact-item-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-value {
    font-size: 14px;
  }

  .section-macaron {
    width: clamp(20px, 4.8vw, 32px);
    opacity: 0.4;
  }

  .section-macaron--offer-3,
  .section-macaron--about-3 {
    display: none;
  }

  .contact-fb-panel {
    grid-template-columns: 36px 1fr auto;
    gap: 8px;
    padding: 10px;
  }

  .contact-fb-icon {
    width: 36px;
    height: 36px;
    font-size: 25px;
  }

  .contact-fb-body strong {
    font-size: 11px;
  }

  .contact-fb-body small {
    font-size: 10px;
  }

  .contact-fb-arrow {
    font-size: 20px;
  }

  .contact-meta-grid {
    grid-template-columns: 1fr;
  }

  .contact-meta-item + .contact-meta-item {
    border-left: 0;
    border-top: 1px solid #f2d9e4;
    padding-left: 0;
    padding-top: 12px;
  }

  .site-footer {
    flex-direction: column;
    gap: 12px;
    padding: 18px 18px 82px;
    text-align: center;
  }

  .footer-meta,
  .footer-links {
    justify-content: center;
    justify-items: center;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .scroll-top {
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .cookie-banner__actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .cookie-modal {
    padding: 10px;
  }

  .cookie-modal__panel {
    padding: 16px 14px;
  }

  .cookie-modal__head h2 {
    font-size: 22px;
  }

  .cookie-modal__actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .detail-main,
  .order-main {
    padding: 148px 16px 46px;
  }

  .detail-subnav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(360px, 100%);
    gap: 6px;
    margin-bottom: 22px;
  }

  .detail-subnav a {
    min-height: 38px;
    font-size: 10px;
  }

  .detail-kicker {
    font-size: 11px;
  }

  .detail-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .detail-copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .detail-section {
    margin-top: 44px;
  }

  .order-card {
    margin-top: 22px;
    padding: 18px;
  }

  .order-hero p:last-of-type,
  .order-field input,
  .order-field select,
  .order-field textarea {
    font-size: 16px;
  }

  .pricing-grid,
  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 20px 18px;
  }
}

@media (max-width: 420px) {
  .brand {
    width: 292px;
  }

  .brand-mark {
    width: 78px;
  }

  .brand-text-img {
    width: 198px;
  }

  .main-nav {
    gap: 8px 10px;
    font-size: 10px;
  }

  .hero-logo {
    width: 100%;
  }

  .hero-art > img {
    width: 100%;
    max-width: 390px;
    height: auto;
    max-height: 38vh;
  }

  .hero.hero--sprite .hero__visual {
    width: min(100%, 390px);
  }

  .gallery-carousel {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
  }

  .gallery-control {
    width: 32px;
    height: 32px;
    font-size: 0;
  }

  .gallery-control::before {
    width: 8px;
    height: 8px;
  }

  .gallery-track {
    grid-auto-columns: 100%;
  }

  .detail-main,
  .order-main {
    padding-top: 162px;
  }

  .gallery-slide img {
    height: auto;
  }

  .lightbox {
    align-items: center;
    justify-items: center;
    padding: 12px;
  }

  .lightbox-control {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    font-size: 0;
    transform: translateY(-50%);
  }

  .lightbox-control::before {
    width: 9px;
    height: 9px;
    border-top-width: 2.2px;
    border-right-width: 2.2px;
  }

  .lightbox-prev {
    left: max(8px, env(safe-area-inset-left));
  }

  .lightbox-next {
    right: max(8px, env(safe-area-inset-right));
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .lightbox-content {
    width: min(100%, 96vw);
    max-height: calc(100dvh - 24px);
    border-width: 2px;
    border-radius: 10px;
  }

  .lightbox-content img {
    width: 100%;
    max-height: calc(100dvh - 28px);
    object-fit: contain;
  }

  .lightbox-content figcaption {
    display: grid;
    gap: 3px;
    padding: 10px 12px 9px;
  }

  .lightbox-content strong {
    font-size: 12px;
    line-height: 1.2;
  }

  .lightbox-content span {
    font-size: 12px;
    line-height: 1.35;
  }

  .custom-cake {
    transform: translateX(-50%);
  }

  .mini-rainbow {
    width: 130px;
    transform: translateX(105%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero.hero--sprite .hero__visual {
    animation: none !important;
  }

  .decor {
    animation: none;
    opacity: 1;
  }

  .site-header {
    transition: none;
  }

  .hero.hero--sprite .hero__run,
  .hero.hero--sprite .hero__unicorn,
  .hero.hero--sprite .hero__macaron,
  .hero.hero--sprite .hero__poof::before,
  .hero.hero--sprite .hero__poof::after,
  .hero.hero--sprite .hero__sparkle {
    animation: none !important;
    transition: none !important;
  }

  .hero.hero--sprite .hero__run {
    display: none !important;
  }

  .hero.hero--sprite .hero__unicorn {
    opacity: 1 !important;
  }

  .hero.hero--sprite .hero__macaron {
    opacity: 1 !important;
    transform: none !important;
  }
}
