@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/prata-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/prata-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #15131c;
  --muted: #625e6b;
  --paper: #f8f3ed;
  --white: #fffdf9;
  --purple: #6557ff;
  --purple-dark: #493adf;
  --yellow: #f3ef72;
  --coral: #ff746e;
  --blue: #8ed5ff;
  --green: #39d98a;
  --line: rgba(21, 19, 28, 0.14);
  --radius: 30px;
  --shadow: 0 24px 70px rgba(29, 21, 69, 0.15);
  --container: 1240px;
  --header-height: 86px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
summary,
select,
input[type="date"] {
  cursor: pointer;
}

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

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

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

.scroll-progress {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--yellow), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-color: rgba(21, 19, 28, 0.08);
  background: rgba(248, 243, 237, 0.88);
  box-shadow: 0 12px 30px rgba(35, 29, 47, 0.05);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(21, 19, 28, 0.08);
  border-radius: 50%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1.12;
}

.brand-copy strong {
  font-family: "Prata", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--purple);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  margin-left: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 45px;
  padding-inline: 20px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
}

.header-cta {
  margin-left: 8px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 0;
  padding: calc(var(--header-height) + 44px) 0 34px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(83, 72, 111, 0.12) 0.75px, transparent 0.75px);
  background-size: 20px 20px;
  content: "";
  opacity: 0.35;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 20%, transparent 88%);
  mask-image: linear-gradient(to bottom, #000 20%, transparent 88%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 0.95fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 25px;
  color: #55505f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  margin-right: 12px;
  background: currentColor;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.66);
}

.hero h1,
.section-heading h2,
.portfolio-heading h2,
.approach-copy h2,
.process-top h2,
.order-intro h2,
.faq-heading h2,
.final-inner h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(58px, 6.2vw, 91px);
}

.hero h1 em,
.portfolio-heading h2 em,
.approach-copy h2 em,
.order-intro h2 em,
.final-inner h2 em {
  display: block;
  color: var(--purple);
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 em {
  margin-top: 10px;
  font-size: 0.82em;
  white-space: nowrap;
}

.hero-lead {
  max-width: 590px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 37px;
}

.button-primary {
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 14px 34px rgba(101, 87, 255, 0.28);
}

.button-primary:hover {
  background: var(--purple-dark);
  box-shadow: 0 18px 44px rgba(101, 87, 255, 0.34);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

.text-link span {
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  color: #514d58;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-notes span::before {
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero-visual {
  --move-x: 0px;
  --move-y: 0px;
  position: relative;
  min-height: 610px;
  transform: translate3d(var(--move-x), var(--move-y), 0);
  transition: transform 0.25s ease-out;
}

.hero-photo-main,
.hero-photo-small {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo-main {
  top: 10px;
  right: 48px;
  width: min(72%, 420px);
  height: 540px;
  padding: 10px;
  border-radius: 210px 210px 28px 28px;
  background: var(--white);
  transform: rotate(2.4deg);
}

.hero-photo-main img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  bottom: 28px;
  left: 26px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: var(--white);
  background: rgba(21, 19, 28, 0.54);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-photo-small {
  width: 180px;
  height: 225px;
  padding: 7px;
  border-radius: 100px 100px 22px 22px;
  background: var(--white);
}

.hero-photo-small img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.hero-photo-pink {
  top: 56px;
  left: -4px;
  transform: rotate(-8deg);
}

.hero-photo-green {
  right: -10px;
  bottom: 20px;
  transform: rotate(9deg);
}

.hero-sticker {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 68px;
  display: grid;
  place-content: center;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(21, 19, 28, 0.12);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 15px 40px rgba(75, 69, 27, 0.14);
  text-align: center;
  transform: rotate(-10deg);
  animation: sticker-float 5s ease-in-out infinite;
}

.hero-sticker span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-sticker strong {
  margin-top: -2px;
  font-family: "Prata", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
}

.hero-sticker svg {
  position: absolute;
  top: 12px;
  right: 17px;
  width: 23px;
  fill: var(--ink);
}

.hero-orb,
.order-orb,
.final-balloon {
  position: absolute;
  border-radius: 52% 48% 48% 52% / 48% 48% 52% 52%;
  pointer-events: none;
}

.hero-orb::after,
.order-orb::after,
.final-balloon::after {
  position: absolute;
  right: 27%;
  bottom: -9px;
  width: 18px;
  height: 15px;
  background: inherit;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  content: "";
}

.hero-orb-one {
  top: 125px;
  right: -62px;
  width: 150px;
  height: 180px;
  background: var(--coral);
  opacity: 0.34;
  transform: rotate(14deg);
  animation: balloon-float 8s ease-in-out infinite;
}

.hero-orb-two {
  bottom: 70px;
  left: -72px;
  width: 138px;
  height: 165px;
  background: var(--blue);
  opacity: 0.42;
  transform: rotate(-12deg);
  animation: balloon-float 7s 0.8s ease-in-out infinite reverse;
}

.hero-orb-three {
  top: 170px;
  left: 44%;
  width: 44px;
  height: 54px;
  background: var(--yellow);
  opacity: 0.75;
  animation: balloon-float 6s 1.4s ease-in-out infinite;
}

@keyframes balloon-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 8px -24px; }
}

@keyframes sticker-float {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 -10px; rotate: 3deg; }
}

.marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 23px 0;
  color: var(--white);
  background: var(--ink);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 27s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 100vw;
}

.marquee span {
  padding-inline: 34px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee i {
  color: var(--yellow);
  font-size: 14px;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.scroll-balloon {
  --scroll-x: 0px;
  --scroll-y: 0px;
  --scroll-scale: 1;
  --balloon-rotate: 0deg;
  position: absolute;
  z-index: 1;
  width: 96px;
  height: 120px;
  border: 1px solid rgba(21, 19, 28, 0.08);
  border-radius: 52% 48% 48% 52% / 48% 48% 52% 52%;
  box-shadow: inset -12px -10px 24px rgba(21, 19, 28, 0.08), inset 10px 8px 17px rgba(255, 255, 255, 0.3);
  opacity: 0.45;
  pointer-events: none;
  transform: translate3d(var(--scroll-x), var(--scroll-y), 0) rotate(var(--balloon-rotate)) scale(var(--scroll-scale));
  transition: transform 0.12s linear;
  will-change: transform;
}

.scroll-balloon::before {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 1px;
  height: 110px;
  background: rgba(21, 19, 28, 0.18);
  content: "";
  transform: rotate(6deg);
  transform-origin: top;
}

.scroll-balloon::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 13px;
  height: 11px;
  background: inherit;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  content: "";
  transform: translateX(-50%);
}

.hero-scroll-balloon-one {
  --balloon-rotate: -7deg;
  bottom: 22px;
  left: 46%;
  width: 96px;
  height: 120px;
  background: var(--coral);
  opacity: 0.3;
}

.hero-scroll-balloon-two {
  --balloon-rotate: 8deg;
  bottom: 70px;
  left: 54%;
  width: 70px;
  height: 88px;
  background: var(--purple);
  opacity: 0.24;
}

.services,
.approach,
.process {
  position: relative;
  overflow: hidden;
}

.section.services {
  padding-top: 58px;
}

.services > .container,
.approach > .container,
.process > .container {
  position: relative;
  z-index: 2;
}

.services-scroll-balloon {
  --balloon-rotate: 9deg;
  top: 25%;
  right: -23px;
  width: 132px;
  height: 164px;
  background: var(--blue);
  opacity: 0.25;
}

.approach-scroll-balloon {
  --balloon-rotate: -10deg;
  bottom: 19%;
  left: -27px;
  width: 116px;
  height: 145px;
  background: var(--coral);
  opacity: 0.2;
}

.process-scroll-balloon {
  --balloon-rotate: 7deg;
  top: 12%;
  right: 3%;
  width: 86px;
  height: 108px;
  background: var(--yellow);
  opacity: 0.5;
}

.section {
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 90px;
}

.section-heading h2,
.approach-copy h2,
.process-top h2,
.faq-heading h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(21, 19, 28, 0.08);
  border-radius: var(--radius);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.service-card::before {
  position: absolute;
  top: -70px;
  right: -80px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(21, 19, 28, 0.11);
  border-radius: 50%;
  content: "";
  transition: transform 0.6s var(--ease);
}

.service-card:hover {
  z-index: 2;
  box-shadow: 0 24px 70px rgba(35, 30, 58, 0.14);
  transform: translateY(-10px) rotate(-0.4deg);
}

.service-card:hover::before {
  transform: scale(1.22);
}

.service-card-yellow {
  background: var(--yellow);
}

.service-card-blue {
  background: var(--blue);
}

.service-card-coral {
  background: var(--coral);
}

.service-number {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 52px 0 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-card h3 {
  max-width: 300px;
  margin: 0 0 14px;
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.service-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(21, 19, 28, 0.15);
  font-size: 12px;
  font-weight: 800;
}

.service-card a span {
  font-size: 19px;
  transition: transform 0.25s ease;
}

.service-card a:hover span {
  transform: translateX(5px);
}

.portfolio {
  position: relative;
  padding-bottom: 90px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.portfolio-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}

.portfolio-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.portfolio-heading h2 {
  font-size: clamp(50px, 6vw, 86px);
}

.portfolio-heading h2 em {
  color: var(--yellow);
}

.button-light {
  margin-bottom: 4px;
  color: var(--ink);
  background: var(--white);
}

.button-light span,
.button-dark span,
.final-actions .button-telegram span {
  margin-left: 8px;
  font-size: 18px;
}

.bento-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 175px;
  gap: 14px;
  margin-top: 70px;
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #2a2730;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 16, 0.75), transparent 55%);
  content: "";
  opacity: 0.76;
  transition: opacity 0.4s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-card:hover img {
  transform: scale(1.055);
}

.gallery-card:hover::after {
  opacity: 0.95;
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  color: var(--white);
  line-height: 1.2;
}

.gallery-card figcaption span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-card figcaption strong {
  font-size: 15px;
}

.gallery-large { grid-column: 1 / 6; grid-row: 1 / 4; }
.gallery-wide:nth-of-type(2) { grid-column: 6 / 10; grid-row: 1 / 3; }
.gallery-small:nth-of-type(3) { grid-column: 10 / 13; grid-row: 1 / 3; }
.gallery-tall { grid-column: 6 / 9; grid-row: 3 / 6; }
.gallery-small:nth-of-type(5) { grid-column: 9 / 13; grid-row: 3 / 5; }
.gallery-wide:nth-of-type(6) { grid-column: 1 / 6; grid-row: 4 / 6; }

.gallery-balloon-card {
  position: relative;
  grid-column: 9 / 13;
  grid-row: 5 / 6;
  min-height: 175px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(rgba(255, 255, 255, 0.16) 0.7px, transparent 0.7px) 0 0 / 16px 16px,
    linear-gradient(135deg, #28233f, #1d1a2b);
}

.gallery-balloon-card p {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  margin: 0;
  line-height: 1.16;
}

.gallery-balloon-card small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-balloon-card strong {
  margin-top: 4px;
  font-family: "Prata", Georgia, serif;
  font-size: 17px;
  font-weight: 400;
}

.gallery-balloon {
  --scatter-x: 0px;
  --scatter-y: 0px;
  --gallery-rotate: 0deg;
  position: absolute;
  width: 68px;
  height: 85px;
  border-radius: 52% 48% 48% 52% / 48% 48% 52% 52%;
  box-shadow: inset -8px -7px 14px rgba(21, 19, 28, 0.12), inset 7px 6px 12px rgba(255, 255, 255, 0.26);
  transform: translate3d(var(--scatter-x), var(--scatter-y), 0) rotate(var(--gallery-rotate));
  animation: gallery-balloon-float 4.8s ease-in-out infinite;
  transition: transform 0.12s linear;
  will-change: transform;
}

.gallery-balloon::before {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  width: 1px;
  height: 66px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
  transform: rotate(4deg);
  transform-origin: top;
}

.gallery-balloon::after {
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 11px;
  height: 9px;
  background: inherit;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  content: "";
  transform: translateX(-50%);
}

.gallery-balloon-blue {
  --gallery-rotate: -5deg;
  top: -20px;
  right: 86px;
  background: var(--blue);
}

.gallery-balloon-yellow {
  top: 2px;
  right: 26px;
  width: 56px;
  height: 70px;
  background: var(--yellow);
  animation-delay: -1.4s;
}

.gallery-balloon-coral {
  top: 31px;
  right: 148px;
  width: 46px;
  height: 58px;
  background: var(--coral);
  animation-delay: -2.7s;
}

@keyframes gallery-balloon-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 2px -9px; }
}

.gallery-large img { object-position: center 70%; }
.gallery-wide:nth-of-type(6) img { object-position: center 40%; }

.approach {
  background: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 0.95fr);
  gap: 110px;
}

.approach-copy h2 em {
  margin-top: 8px;
  color: var(--purple);
  font-size: 0.78em;
}

.approach-copy > p:last-child {
  max-width: 520px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.approach-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.approach-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.approach-list > li > span {
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.approach-list h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.approach-list p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.process {
  overflow: hidden;
}

.process-top {
  max-width: 800px;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin: 78px 0 0;
  padding: 0;
  list-style: none;
}

.process-steps::before {
  position: absolute;
  top: 28px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-steps li {
  position: relative;
  padding-top: 84px;
}

.step-dot {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  font-family: "Prata", Georgia, serif;
  font-size: 19px;
}

.process-steps li:nth-child(1) .step-dot { background: var(--yellow); }
.process-steps li:nth-child(2) .step-dot { background: var(--blue); }
.process-steps li:nth-child(3) .step-dot { background: var(--coral); }
.process-steps li:nth-child(4) .step-dot { color: var(--white); background: var(--purple); }

.process-steps h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.process-steps p {
  max-width: 245px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.order {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--purple);
}

.order::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.34) 0.7px, transparent 0.7px);
  background-size: 19px 19px;
  content: "";
  opacity: 0.3;
}

.order-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(540px, 0.9fr);
  align-items: start;
  gap: 90px;
}

.order-intro {
  position: sticky;
  top: 130px;
}

.order-intro h2 {
  font-size: clamp(54px, 5.6vw, 80px);
}

.order-intro h2 em {
  margin-top: 8px;
  color: var(--yellow);
  font-size: 0.84em;
}

.order-intro > p {
  max-width: 475px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.8;
}

.order-simple {
  min-height: 720px;
  display: grid;
  align-items: center;
}

.order-simple-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 0.95fr);
  align-items: center;
  gap: 90px;
}

.order-simple .order-intro {
  position: relative;
  top: auto;
}

.contact-card {
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 34px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 35px 90px rgba(38, 23, 108, 0.3);
  backdrop-filter: blur(14px);
}

.contact-card-kicker {
  margin: 0 0 22px;
  color: var(--purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.occasion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.occasion-tags li {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbf9f6;
  font-size: 11px;
  font-weight: 750;
}

.occasion-tags li:nth-child(3n + 1) { background: rgba(244, 232, 86, 0.34); }
.occasion-tags li:nth-child(3n + 2) { background: rgba(130, 201, 255, 0.24); }
.occasion-tags li:nth-child(3n) { background: rgba(255, 113, 109, 0.18); }

.contact-card-copy {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.messenger-actions-simple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.contact-card-phone {
  width: fit-content;
  display: block;
  margin: 24px auto 0;
  border-bottom: 1px solid currentColor;
  font-family: "Prata", Georgia, serif;
  font-size: 20px;
}

.balloon-stream-order {
  opacity: 0.98;
}

.balloon-stream-order .flying-balloon:nth-child(4n + 1) { animation-duration: 8.4s; }
.balloon-stream-order .flying-balloon:nth-child(4n + 2) { animation-duration: 10.2s; }
.balloon-stream-order .flying-balloon:nth-child(4n + 3) { animation-duration: 11.6s; }
.balloon-stream-order .flying-balloon:nth-child(4n) { animation-duration: 9.3s; }

[data-balloon-field] .flying-balloon {
  animation-play-state: paused;
}

[data-balloon-field].is-balloon-active .flying-balloon {
  animation-play-state: running;
}

.order-contact {
  display: grid;
  margin-top: 48px;
  line-height: 1.4;
}

.order-contact span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.order-contact a {
  width: fit-content;
  margin-top: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-family: "Prata", Georgia, serif;
  font-size: 25px;
}

.order-form {
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 34px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 35px 90px rgba(38, 23, 108, 0.3);
}

.order-form fieldset {
  margin: 0;
  padding: 0 0 32px;
  border: 0;
}

.order-form fieldset + fieldset {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.order-form legend {
  width: 100%;
  margin-bottom: 18px;
  padding: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.order-form legend span,
.field > span b {
  margin-right: 9px;
  color: var(--purple);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.choice-grid,
.palette-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.choice-grid label,
.palette-grid label {
  position: relative;
}

.choice-grid input,
.palette-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-grid label > span,
.palette-grid label > span {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbf9f6;
  font-size: 11px;
  font-weight: 750;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.choice-grid label:hover > span,
.palette-grid label:hover > span {
  transform: translateY(-2px);
}

.choice-grid input:focus-visible + span,
.palette-grid input:focus-visible + span {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.choice-grid input:checked + span,
.palette-grid input:checked + span {
  border-color: var(--purple);
  color: var(--white);
  background: var(--purple);
}

.palette-grid label > span {
  padding-left: 9px;
}

.palette {
  width: 27px;
  height: 27px;
  margin-right: 8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(21, 19, 28, 0.12);
}

.palette-soft { background: linear-gradient(135deg, #f0ccdc 0 50%, #f4e7d3 50%); }
.palette-bright { background: linear-gradient(135deg, #ff6e68 0 50%, #f4e856 50%); }
.palette-dark { background: linear-gradient(135deg, #28394a 0 50%, #bd9f56 50%); }
.palette-own { background: conic-gradient(#ff716d, #f3ed72, #72d8a3, #82c9ff, #b794ff, #ff716d); }

.palette-grid input:checked + span .palette {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.field {
  display: grid;
  gap: 10px;
}

.field > span {
  font-size: 11px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  color: var(--ink);
  background: #fbf9f6;
  font-size: 12px;
  font-weight: 650;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  min-height: 50px;
  padding: 0 14px;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 14px) 22px;
  background-repeat: no-repeat;
  background-size: 4px 4px, 4px 4px;
}

.field textarea {
  min-height: 100px;
  padding: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(101, 87, 255, 0.1);
}

.field-full {
  margin-top: 20px;
}

.messenger-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(150px, 0.75fr);
  gap: 10px;
  margin-top: 24px;
}

.messenger-actions .button {
  width: 100%;
  padding-inline: 18px;
  font-size: 12px;
}

.button-telegram {
  color: var(--white);
  background: #229ed9;
  box-shadow: 0 14px 32px rgba(34, 158, 217, 0.2);
}

.button-telegram:hover {
  background: #168dc7;
}

.button-whatsapp {
  color: var(--white);
  background: #168c52;
  box-shadow: 0 14px 32px rgba(22, 140, 82, 0.18);
}

.button-whatsapp:hover {
  background: #107945;
}

.button-telegram svg,
.button-whatsapp svg {
  width: 21px;
  height: 21px;
  margin: 0 10px 0 0;
  fill: currentColor;
  stroke: none;
}

.form-note {
  margin: 12px 0 0;
  color: #77727c;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.order-orb-left {
  bottom: -80px;
  left: -80px;
  width: 220px;
  height: 265px;
  background: var(--yellow);
  opacity: 0.13;
  transform: rotate(-18deg);
}

.order-orb-right {
  top: -110px;
  right: -70px;
  width: 240px;
  height: 285px;
  background: var(--coral);
  opacity: 0.18;
  transform: rotate(14deg);
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1fr);
  align-items: start;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading > p:not(.eyebrow) {
  max-width: 420px;
  margin: 28px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.faq-contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 89px;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.03em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span {
  color: var(--white);
  background: var(--purple);
}

.faq-list details[open] summary span::before,
.faq-list details[open] summary span::after {
  background: var(--white);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 640px;
  margin: -4px 65px 30px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  padding: 120px 0 125px;
  overflow: hidden;
  background: var(--yellow);
}

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

.flying-balloon {
  position: absolute;
  bottom: -180px;
  left: var(--left);
  width: var(--size);
  aspect-ratio: 0.82;
  border: 1px solid rgba(21, 19, 28, 0.07);
  border-radius: 52% 48% 48% 52% / 48% 48% 52% 52%;
  background: var(--stream-color);
  box-shadow:
    inset -10px -9px 20px rgba(21, 19, 28, 0.1),
    inset 9px 8px 16px rgba(255, 255, 255, 0.3);
  opacity: 0;
  translate: var(--mouse-x, 0) var(--mouse-y, 0);
  animation: final-balloon-rise var(--duration) var(--delay) linear infinite;
  transition: translate 1.15s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, translate, opacity;
}

.flying-balloon::before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 13px;
  height: 11px;
  background: inherit;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  content: "";
  transform: translateX(-50%);
}

.flying-balloon::after {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 1px;
  height: 52px;
  background: rgba(21, 19, 28, 0.18);
  content: "";
  transform: rotate(5deg);
  transform-origin: top;
}

@keyframes final-balloon-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 160px, 0) rotate(var(--tilt));
  }
  8% { opacity: var(--stream-opacity); }
  28% { transform: translate3d(var(--drift), -32vh, 0) rotate(calc(var(--tilt) + 5deg)); }
  54% { transform: translate3d(0, -68vh, 0) rotate(calc(var(--tilt) - 4deg)); }
  80% {
    opacity: var(--stream-opacity);
    transform: translate3d(var(--drift), -102vh, 0) rotate(calc(var(--tilt) + 3deg));
  }
  100% {
    opacity: 0;
    transform: translate3d(0, calc(-100vh - 540px), 0) rotate(var(--tilt));
  }
}

.final-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-inner > p {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.final-inner h2 {
  font-size: clamp(68px, 9.5vw, 140px);
}

.final-inner h2 em {
  display: inline;
  color: var(--purple);
}

.final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 42px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.final-phone {
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
}

.final-balloon-one {
  top: -120px;
  left: -50px;
  width: 210px;
  height: 255px;
  background: var(--blue);
  opacity: 0.7;
  transform: rotate(-15deg);
}

.final-balloon-two {
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 310px;
  background: var(--coral);
  opacity: 0.78;
  transform: rotate(18deg);
}

.final-balloon-three {
  top: 50px;
  right: 13%;
  width: 55px;
  height: 68px;
  background: var(--purple);
  opacity: 0.84;
  transform: rotate(8deg);
  animation: balloon-float 6s ease-in-out infinite;
}

.site-footer {
  padding: 75px 0 28px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) repeat(2, minmax(150px, 0.55fr));
  gap: 80px;
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid > div:first-child > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-contact {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 12px 0 19px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: #229ed9;
  box-shadow: 0 14px 40px rgba(21, 105, 146, 0.28);
  font-size: 11px;
  font-weight: 800;
  transition: transform 0.3s var(--ease), background 0.2s ease;
}

.floating-contact:hover {
  background: #168dc7;
  transform: translateY(-4px);
}

.floating-contact svg {
  width: 28px;
  height: 28px;
  margin-left: 10px;
  fill: currentColor;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

.reveal-ready .service-grid [data-reveal]:nth-child(2),
.reveal-ready .process-steps [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.reveal-ready .service-grid [data-reveal]:nth-child(3),
.reveal-ready .process-steps [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.reveal-ready .process-steps [data-reveal]:nth-child(4) { transition-delay: 0.24s; }

@media (max-width: 1100px) {
  :root { --container: 960px; }

  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 11px; }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.88fr);
    gap: 24px;
  }

  .hero h1 { font-size: clamp(56px, 6.5vw, 75px); }
  .hero-photo-main { right: 36px; width: 72%; height: 540px; }
  .hero-photo-small { width: 152px; height: 195px; }
  .hero-sticker { left: 34px; width: 130px; height: 130px; }
  .hero-sticker strong { font-size: 27px; }

  .section-heading { gap: 48px; }
  .service-card { min-height: 490px; padding: 27px; }
  .service-card h3 { font-size: 22px; }

  .approach-grid,
  .order-grid,
  .order-simple-grid,
  .faq-grid { gap: 60px; }

  .order-grid { grid-template-columns: 0.72fr minmax(500px, 0.95fr); }
  .order-form { padding: 36px; }
}

@media (max-width: 900px) {
  :root { --header-height: 76px; }

  .container { width: min(calc(100% - 36px), var(--container)); }
  .desktop-nav,
  .header-cta { display: none; }

  .menu-toggle {
    display: grid;
    place-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 2.5px 0;
    background: var(--ink);
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    z-index: -1;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 4px;
    padding: 30px max(18px, calc((100vw - var(--container)) / 2));
    border-bottom: 1px solid var(--line);
    background: rgba(248, 243, 237, 0.98);
    box-shadow: 0 20px 30px rgba(35, 29, 47, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.25s ease, transform 0.25s var(--ease);
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 9px 0;
    font-size: 16px;
    font-weight: 750;
  }

  .mobile-nav a:last-child {
    margin-top: 10px;
    color: var(--purple);
    font-family: "Prata", Georgia, serif;
    font-size: 19px;
    font-weight: 400;
  }

  .hero {
    padding-top: calc(var(--header-height) + 48px);
  }

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

  .hero-copy { max-width: 720px; }
  .hero h1 { font-size: clamp(57px, 10vw, 82px); }
  .hero-lead { max-width: 640px; }
  .hero-visual { width: min(100%, 640px); min-height: 610px; margin-inline: auto; }
  .hero-photo-main { right: 13%; width: 68%; }
  .hero-photo-pink { left: 3%; }
  .hero-photo-green { right: 0; }

  .section { padding: 100px 0; }
  .section.services { padding-top: 58px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .section-heading > p { max-width: 570px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; }
  .service-icon { margin: 35px 0 25px; }

  .portfolio { padding-bottom: 70px; }
  .portfolio-heading { grid-template-columns: 1fr; }
  .portfolio-heading .button { width: fit-content; }
  .bento-gallery { grid-auto-rows: 155px; }

  .approach-grid,
  .order-grid,
  .order-simple-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid { gap: 60px; }
  .approach-copy { max-width: 700px; }

  .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 55px; }
  .process-steps::before { display: none; }

  .order-grid,
  .order-simple-grid,
  .faq-grid { gap: 65px; }
  .order-intro,
  .faq-heading { position: static; }
  .order-intro > p { max-width: 580px; }
  .contact-card { width: min(100%, 690px); }
  .faq-heading { max-width: 660px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand img { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 14px; }

  .hero {
    min-height: 0;
    padding-bottom: 48px;
  }

  .hero h1 { font-size: clamp(48px, 15vw, 68px); line-height: 1; }
  .hero h1 em { margin-top: 8px; white-space: normal; }
  .hero-lead { margin-top: 24px; font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 30px; }
  .hero-actions .button { width: 100%; }
  .hero-notes { margin-top: 28px; }
  .hero-notes span { font-size: 8px; }
  .hero-visual { min-height: 525px; }
  .hero-photo-main { top: 0; right: 10%; width: 76%; height: 445px; padding: 7px; }
  .hero-photo-small { width: 118px; height: 155px; padding: 5px; }
  .hero-photo-pink { top: 28px; left: 0; }
  .hero-photo-green { right: -3px; bottom: 8px; }
  .hero-sticker { bottom: 7px; left: 8%; width: 110px; height: 110px; }
  .hero-sticker strong { font-size: 23px; }
  .hero-sticker svg { top: 9px; right: 13px; width: 18px; }
  .photo-label { bottom: 19px; left: 18px; padding: 8px 12px; font-size: 8px; }
  .hero-orb-three { display: none; }

  .section { padding: 82px 0; }
  .section.services { padding-top: 48px; }
  .eyebrow { margin-bottom: 20px; font-size: 9px; }
  .section-heading h2,
  .approach-copy h2,
  .process-top h2,
  .faq-heading h2 { font-size: clamp(40px, 12vw, 56px); }

  .service-grid { margin-top: 42px; }
  .service-card { min-height: 400px; padding: 26px; }
  .service-icon { width: 64px; height: 64px; }
  .service-icon svg { width: 34px; height: 34px; }

  .portfolio { padding-bottom: 64px; }
  .portfolio-heading h2 { font-size: clamp(45px, 13vw, 64px); }
  .bento-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 10px;
    margin-top: 46px;
  }

  .gallery-card,
  .gallery-large,
  .gallery-wide:nth-of-type(2),
  .gallery-small:nth-of-type(3),
  .gallery-tall,
  .gallery-small:nth-of-type(5),
  .gallery-wide:nth-of-type(6) {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .gallery-large,
  .gallery-wide:nth-of-type(2),
  .gallery-wide:nth-of-type(6) {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .gallery-small:nth-of-type(3),
  .gallery-tall,
  .gallery-small:nth-of-type(5) { min-height: 300px; }
  .gallery-balloon-card { grid-column: 1 / -1; grid-row: auto; min-height: 210px; }
  .gallery-card figcaption { right: 14px; bottom: 14px; left: 14px; }
  .gallery-card figcaption strong { font-size: 12px; }

  .approach-grid { gap: 48px; }
  .approach-list li { grid-template-columns: 42px 1fr; gap: 12px; padding: 26px 0; }
  .approach-list h3 { font-size: 19px; }

  .process-steps { grid-template-columns: 1fr; gap: 0; margin-top: 50px; }
  .process-steps li { display: grid; grid-template-columns: 56px 1fr; column-gap: 16px; padding: 0 0 34px; }
  .process-steps li::after { position: absolute; top: 48px; bottom: 0; left: 24px; width: 1px; background: var(--line); content: ""; }
  .process-steps li:last-child::after { display: none; }
  .step-dot { position: static; grid-row: 1 / 3; width: 50px; height: 50px; }
  .process-steps h3 { align-self: end; margin: 1px 0 4px; }
  .process-steps p { grid-column: 2; }

  .order-simple { min-height: 0; }
  .order-simple-grid { gap: 48px; }
  .order-intro h2 { font-size: clamp(49px, 14vw, 65px); }
  .order-contact { margin-top: 32px; }
  .contact-card { padding: 28px 20px; border-radius: 25px; }
  .occasion-tags { gap: 8px; }
  .occasion-tags li { min-height: 41px; padding-inline: 13px; font-size: 10px; }
  .messenger-actions-simple { grid-template-columns: 1fr; }
  .order-form { padding: 27px 20px; border-radius: 25px; }
  .order-form fieldset { padding-bottom: 25px; }
  .order-form fieldset + fieldset { padding-top: 24px; }
  .choice-grid label > span,
  .palette-grid label > span { min-height: 41px; padding-right: 13px; padding-left: 13px; font-size: 10px; }
  .palette-grid label > span { padding-left: 8px; }
  .form-row { grid-template-columns: 1fr; padding-top: 24px; }
  .messenger-actions { grid-template-columns: 1fr; }

  .faq-grid { gap: 48px; }
  .faq-list summary { min-height: 82px; font-size: 15px; }
  .faq-list summary span { width: 31px; height: 31px; }
  .faq-list details p { margin-right: 12px; font-size: 13px; }

  .final-cta { padding: 90px 0 100px; }
  .final-inner > p { font-size: 9px; }
  .final-inner h2 { font-size: clamp(56px, 18vw, 90px); line-height: 1.05; }
  .final-inner h2 em { display: block; margin-top: 5px; }
  .final-actions { flex-direction: column; gap: 20px; margin-top: 32px; }
  .final-actions .button { width: min(100%, 330px); }
  .final-balloon-one { width: 130px; height: 160px; }
  .final-balloon-two { width: 150px; height: 190px; }

  .site-footer { padding-top: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px 28px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    min-height: 49px;
    padding: 0 10px;
  }

  .floating-contact span { display: none; }
  .floating-contact svg { width: 28px; height: 28px; margin: 0; }
  .services-scroll-balloon { right: -52px; width: 108px; height: 135px; opacity: 0.18; }
  .approach-scroll-balloon { left: -48px; width: 96px; height: 120px; opacity: 0.14; }
  .process-scroll-balloon { right: -20px; width: 74px; height: 93px; opacity: 0.32; }
  .hero-scroll-balloon-one { left: 62%; bottom: 18px; width: 78px; height: 98px; }
  .hero-scroll-balloon-two { left: 78%; bottom: 62px; width: 58px; height: 73px; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 48px; }
  .hero-visual { min-height: 480px; }
  .hero-photo-main { right: 7%; width: 80%; height: 410px; }
  .hero-photo-small { width: 104px; height: 140px; }
  .hero-sticker { width: 98px; height: 98px; }
  .hero-sticker strong { font-size: 20px; }
  .hero-sticker span { font-size: 7px; }

  .gallery-card,
  .gallery-large,
  .gallery-wide:nth-of-type(2),
  .gallery-small:nth-of-type(3),
  .gallery-tall,
  .gallery-small:nth-of-type(5),
  .gallery-wide:nth-of-type(6) {
    grid-column: 1 / -1;
    min-height: 390px;
  }

  .palette-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .palette-grid label > span { width: 100%; }
  .button-whatsapp { padding-inline: 16px; font-size: 12px; }
}

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

  .marquee-track { animation: none; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
}
