:root {
  --cream: #fbf4e4;
  --paper: #fffaf0;
  --ink: #312c2c;
  --muted: #736b62;
  --pink: #e9a9ba;
  --rose: #c95770;
  --blue: #cde5eb;
  --sage: #4d9359;
  --sage-dark: #2f6c42;
  --sun: #efd66f;
  --line: rgba(49, 44, 44, 0.13);
  --shadow: 0 24px 70px rgba(68, 58, 44, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(87, 139, 151, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 139, 151, 0.09) 1px, transparent 1px),
    var(--cream);
  background-size: 34px 34px;
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-shell {
  overflow: clip;
  min-height: 100vh;
}

.topbar {
  position: fixed;
  top: 14px;
  left: max(16px, calc((100vw - 1240px) / 2));
  right: max(16px, calc((100vw - 1240px) / 2));
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 46px;
  padding: 8px 10px;
  color: #315f3b;
  border: 1px solid rgba(49, 95, 59, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(75, 86, 62, 0.1);
}

.brand,
.nav-links,
.nav-telegram {
  display: flex;
  align-items: center;
}

.brand {
  gap: 8px;
  padding: 0 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-flower {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--paper);
  border-radius: 50%;
  background: var(--rose);
}

.nav-links {
  gap: 8px;
  font-size: 13px;
}

.nav-links a,
.nav-telegram {
  min-height: 30px;
  padding: 7px 12px;
  border: 1px solid rgba(49, 95, 59, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.42);
}

.nav-telegram {
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.section-band {
  position: relative;
  padding: 110px max(22px, calc((100vw - 1180px) / 2));
}

.ambient-ornament {
  position: absolute;
  z-index: 1;
  width: 190px;
  pointer-events: none;
  opacity: 0.74;
  filter: drop-shadow(0 16px 24px rgba(55, 64, 49, 0.1));
  transition: translate 140ms linear;
}

.hero {
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.82fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 36px 44px;
  padding-top: 104px;
  padding-bottom: 34px;
  background:
    radial-gradient(circle at 78% 28%, rgba(233, 169, 186, 0.34), transparent 31%),
    radial-gradient(circle at 16% 74%, rgba(205, 229, 235, 0.9), transparent 35%),
    linear-gradient(112deg, #f4bed0 0 47%, transparent 47.2%),
    var(--cream);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.42;
  background:
    linear-gradient(rgba(49, 44, 44, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 44, 44, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 14%, #000 82%, transparent 100%);
}

.paper-rip {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background: var(--paper);
  filter: drop-shadow(0 12px 26px rgba(73, 61, 44, 0.09));
}

.paper-rip-top {
  right: -4vw;
  bottom: -2vw;
  width: 69vw;
  height: 31vw;
  min-height: 260px;
  clip-path: polygon(0 38%, 9% 35%, 17% 28%, 28% 33%, 36% 23%, 47% 28%, 57% 18%, 68% 27%, 79% 20%, 91% 28%, 100% 22%, 100% 100%, 0 100%);
}

.hero-copy,
.hero-art,
.hero-stats {
  position: relative;
  z-index: 2;
}

.hero-copy {
  margin-top: -92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.05;
}

p {
  color: var(--muted);
  line-height: 1.56;
}

.lead {
  max-width: 570px;
  color: #4b4540;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 15px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.button.primary {
  color: #fffdf5;
  background: var(--sage);
  border-color: var(--sage);
  box-shadow: 0 12px 28px rgba(47, 108, 66, 0.22);
}

.button.ghost {
  background: rgba(255, 250, 240, 0.56);
}

.hero-art {
  min-height: 560px;
  display: grid;
  place-items: end center;
}

.portrait-main {
  position: relative;
  z-index: 3;
  width: min(39vw, 485px);
  min-width: 320px;
  transform: rotate(-3deg);
  filter: drop-shadow(0 26px 38px rgba(58, 48, 37, 0.22));
}

.flower {
  position: absolute;
  z-index: 4;
  width: 210px;
  pointer-events: none;
}

.flower-left {
  left: -10px;
  top: 150px;
  transform: rotate(-18deg);
}

.flower-right {
  right: -38px;
  bottom: 80px;
  width: 185px;
  transform: scaleX(-1) rotate(-8deg);
}

.hand-note,
.script {
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  color: #2d302f;
}

.hand-note {
  position: absolute;
  z-index: 5;
  top: 116px;
  right: 34px;
  max-width: 190px;
  font-size: 22px;
  line-height: 1;
  transform: rotate(-9deg);
}

.floating-chip {
  position: absolute;
  z-index: 6;
  min-height: 33px;
  padding: 8px 18px;
  color: rgba(49, 44, 44, 0.64);
  border-radius: 999px 999px 999px 10px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 12px 28px rgba(66, 54, 46, 0.1);
  backdrop-filter: blur(8px);
  animation: float 7s ease-in-out infinite;
}

.chip-anxiety {
  left: 52.5vw;
  top: 55%;
  background: #dfeaa1;
}

.chip-burnout {
  right: 9.8vw;
  top: 26%;
  background: #d7ebf1;
  animation-delay: -2s;
}

.chip-parent {
  right: 2.8vw;
  top: 44%;
  background: #f5d6b6;
  animation-delay: -4s;
}

.chip-panic {
  right: 30vw;
  top: 19%;
  background: #f7dce5;
  animation-delay: -1s;
}

.chip-boundaries {
  right: 31vw;
  top: 48%;
  background: rgba(255, 250, 240, 0.88);
  animation-delay: -5s;
}

.chip-self {
  right: 11vw;
  top: 59%;
  background: #efe4a8;
  animation-delay: -3s;
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: 0;
}

.hero-stats div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(49, 44, 44, 0.1);
  border-radius: 28px;
  background: rgba(255, 250, 240, 0.72);
  backdrop-filter: blur(10px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--rose);
  font-size: 28px;
  line-height: 1;
}

.hero-stats span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  background: var(--blue);
  overflow: clip;
}

.intro-photo,
.intro-copy {
  position: relative;
  z-index: 2;
}

.intro-ornament {
  right: max(18px, calc((100vw - 1180px) / 2 - 42px));
  bottom: 38px;
  width: min(210px, 20vw);
  transform: rotate(14deg);
}

.intro-photo img {
  width: min(430px, 100%);
  margin-inline: auto;
  transform: rotate(3deg);
  filter: drop-shadow(0 24px 34px rgba(58, 48, 37, 0.18));
}

.script {
  margin-bottom: 8px;
  color: var(--rose);
  font-size: 32px;
}

.requests {
  background:
    radial-gradient(circle at 12% 20%, rgba(233, 169, 186, 0.24), transparent 22%),
    var(--cream);
  overflow: clip;
}

.requests-ornament {
  left: max(14px, calc((100vw - 1180px) / 2 - 70px));
  top: 52px;
  width: min(190px, 18vw);
  transform: rotate(-18deg);
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.bubble-cloud {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.request-card {
  min-height: 210px;
  padding: 34px 30px;
  background: var(--paper);
  border-radius: 52% 48% 44% 56% / 36% 42% 58% 64%;
  box-shadow: var(--shadow);
  transform: rotate(var(--tilt, -2deg));
}

.request-card:nth-child(2n) {
  --tilt: 2deg;
}

.request-card:nth-child(3n) {
  --tilt: -1deg;
}

.request-card p {
  margin-bottom: 0;
}

.section-note {
  max-width: 780px;
  margin: 38px auto 0;
  text-align: center;
}

.approach {
  background: #fffdf7;
  overflow: clip;
}

.approach-flower {
  position: absolute;
  top: 64px;
  right: max(10px, calc((100vw - 1180px) / 2 - 60px));
  z-index: 1;
  width: 220px;
  transform: rotate(15deg);
  opacity: 0.9;
  pointer-events: none;
  transition: translate 140ms linear;
}

.values-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.value-item {
  min-height: 245px;
  padding: 28px;
  background: #fffdf7;
}

.value-item span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  place-items: center;
  color: var(--paper);
  border-radius: 50%;
  background: var(--rose);
  font-weight: 900;
}

.format {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.15fr);
  gap: 24px;
  background:
    linear-gradient(118deg, var(--pink) 0 39%, var(--blue) 39.2% 100%);
  overflow: clip;
}

.format-ornament {
  left: max(14px, calc((100vw - 1180px) / 2 - 78px));
  bottom: 68px;
  width: min(230px, 22vw);
  transform: rotate(-8deg);
  opacity: 0.68;
}

.format-card,
.step {
  position: relative;
  z-index: 2;
  background: rgba(255, 250, 240, 0.86);
  border: 1px solid rgba(49, 44, 44, 0.1);
  box-shadow: var(--shadow);
}

.format-card {
  position: sticky;
  top: 88px;
  align-self: start;
  padding: 34px;
  border-radius: 34px;
}

.price {
  margin: 20px 0;
  color: var(--sage-dark);
  font-size: clamp(50px, 7vw, 88px);
  font-weight: 950;
  line-height: 0.9;
}

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

.step {
  min-height: 235px;
  padding: 26px;
  border-radius: 30px;
}

.step span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.education {
  background: var(--cream);
  overflow: clip;
}

.education-ornament {
  right: max(16px, calc((100vw - 1180px) / 2 - 62px));
  top: 84px;
  width: min(205px, 19vw);
  transform: rotate(12deg);
  opacity: 0.72;
}

.timeline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.education-layout {
  grid-template-columns: minmax(245px, 0.82fr) minmax(0, 1.18fr);
}

.education-card {
  margin: 0;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.timeline-main {
  border-radius: 34px;
}

.education-card span {
  color: var(--rose);
  font-weight: 950;
}

.timeline-main span {
  display: block;
  margin-bottom: 30px;
  font-size: 54px;
  line-height: 1;
}

.education-details {
  border-radius: 34px 80px 34px 34px;
}

.education-details h3,
.experience-card h3 {
  margin-top: 0;
}

.education-details p {
  max-width: 560px;
  color: var(--muted);
}

.education-details details {
  margin-top: 18px;
}

.education-details summary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 18px;
  color: var(--sage-dark);
  border: 1px solid rgba(47, 108, 66, 0.18);
  border-radius: 999px;
  background: rgba(205, 229, 235, 0.48);
  cursor: pointer;
  font-weight: 900;
}

.education-details summary::marker {
  content: "";
}

.education-details summary::after {
  content: "+";
  margin-left: 10px;
  font-size: 20px;
  line-height: 1;
}

.education-details details[open] summary::after {
  content: "−";
}

.education-card ul {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.education-card li {
  color: var(--muted);
  line-height: 1.5;
}

.education-card li span {
  display: inline-block;
  min-width: 76px;
}

.experience-card {
  grid-column: 1 / -1;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.95), rgba(205, 229, 235, 0.56));
}

.experience-card ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.experience-card li {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(49, 44, 44, 0.1);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.72);
}

.experience-card li span {
  display: inline-flex;
  min-width: 0;
  margin: 0 0 14px;
  padding: 7px 11px;
  color: var(--rose);
  border-radius: 999px;
  background: rgba(201, 87, 112, 0.1);
  font-size: 14px;
  line-height: 1;
}

.experience-card li strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.personal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: 44px;
  align-items: center;
  background: #f7cad6;
  overflow: clip;
}

.personal-copy,
.personal-photo {
  position: relative;
  z-index: 2;
}

.personal-photo {
  position: relative;
}

.personal-photo > img:first-child {
  width: min(560px, 100%);
  margin-inline: auto;
  transform: rotate(-3deg);
  filter: drop-shadow(0 28px 42px rgba(58, 48, 37, 0.2));
}

.personal-flower {
  position: absolute;
  right: -20px;
  bottom: 26px;
  width: 230px;
  transform: rotate(22deg);
  pointer-events: none;
  transition: translate 140ms linear;
}

.final-cta {
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 11% 63%, rgba(233, 169, 186, 0.25), transparent 20%),
    radial-gradient(circle at 74% 28%, rgba(239, 214, 111, 0.34), transparent 24%),
    radial-gradient(circle at 88% 77%, rgba(77, 147, 89, 0.16), transparent 21%),
    var(--blue);
  overflow: clip;
}

.final-cta h2,
.final-cta p {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.final-cta p {
  font-size: 20px;
}

.cta-hand-note {
  display: inline-block;
  margin: 4px auto 10px;
  color: #b36b51;
  font-family: "Bradley Hand", "Apple Chancery", "Segoe Script", cursive;
  font-size: clamp(18px, 2.4vw, 26px) !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  transform: rotate(-1.5deg);
  opacity: 0.88;
  text-shadow: 0 8px 18px rgba(179, 107, 81, 0.1);
}

.final-cta .eyebrow,
.cta-hand-note,
.contact-actions,
.mail-link {
  position: relative;
  z-index: 2;
}

.final-ornament {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.78;
  transition: translate 140ms linear;
}

.final-ornament img {
  width: 100%;
  filter: drop-shadow(0 18px 24px rgba(47, 82, 59, 0.12));
}

.final-ornament-left {
  left: max(18px, calc((100vw - 1180px) / 2 - 64px));
  bottom: 28px;
  width: min(260px, 24vw);
  transform: rotate(-16deg);
}

.final-ornament-right {
  right: max(12px, calc((100vw - 1180px) / 2 - 86px));
  top: 108px;
  width: min(230px, 22vw);
  transform: scaleX(-1) rotate(-10deg);
}

.petal-field,
.petal {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.petal {
  inset: auto;
  z-index: 1;
  width: 18px;
  height: 34px;
  border-radius: 999px 999px 999px 18px;
  background: rgba(201, 87, 112, 0.38);
  box-shadow: 0 10px 22px rgba(65, 74, 54, 0.08);
  transition: translate 140ms linear;
  animation: petalSway 9s ease-in-out infinite;
}

.petal-one {
  left: 21%;
  top: 28%;
  background: rgba(255, 250, 240, 0.8);
  transform: rotate(31deg);
}

.petal-two {
  left: 13%;
  bottom: 26%;
  background: rgba(233, 169, 186, 0.52);
  transform: rotate(-25deg);
  animation-delay: -2s;
}

.petal-three {
  right: 23%;
  top: 18%;
  background: rgba(239, 214, 111, 0.48);
  transform: rotate(58deg);
  animation-delay: -4s;
}

.petal-four {
  right: 14%;
  bottom: 30%;
  background: rgba(255, 250, 240, 0.72);
  transform: rotate(-41deg);
  animation-delay: -6s;
}

.petal-five {
  left: 46%;
  bottom: 15%;
  background: rgba(77, 147, 89, 0.28);
  transform: rotate(18deg);
  animation-delay: -1s;
}

.paper-rip-bottom {
  left: -6vw;
  top: -5vw;
  width: 68vw;
  height: 23vw;
  min-height: 220px;
  transform: rotate(3deg);
  clip-path: polygon(0 0, 100% 0, 100% 47%, 88% 41%, 78% 55%, 69% 46%, 58% 59%, 48% 48%, 36% 61%, 24% 47%, 13% 58%, 0 48%);
}

.mail-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--sage-dark);
  font-weight: 900;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 28px max(22px, calc((100vw - 1180px) / 2)) 96px;
  color: rgba(49, 44, 44, 0.62);
  background: var(--cream);
}

.footer a {
  color: var(--rose);
  font-weight: 800;
}

.footer > a:last-child {
  justify-self: end;
}

.footer > a:not(.aivora-link) {
  justify-self: center;
}

.aivora-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(142px, 20vw);
  min-height: 42px;
  padding: 6px 11px;
  border: 1px solid rgba(43, 78, 114, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.7);
  box-shadow: 0 10px 24px rgba(43, 78, 114, 0.08);
  opacity: 0.86;
}

.aivora-link img {
  width: 100%;
  height: auto;
}

.sticky-cta {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  color: #fffdf5;
  border-radius: 999px;
  background: var(--sage);
  box-shadow: 0 18px 42px rgba(47, 108, 66, 0.28);
  font-weight: 950;
  text-transform: uppercase;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 31;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fffdf5;
  border: 1px solid rgba(255, 250, 240, 0.72);
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 18px 40px rgba(91, 50, 60, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  scale: 0.78;
  transition: opacity 260ms ease, scale 260ms ease, translate 260ms ease;
  translate: 0 12px;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  scale: 1;
  translate: 0 0;
}

.back-top-flower {
  grid-area: 1 / 1;
  font-size: 42px;
  line-height: 1;
}

.back-top-arrow {
  grid-area: 1 / 1;
  margin-top: -2px;
  color: var(--rose);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.scroll-companion {
  position: fixed;
  right: 22px;
  top: 28vh;
  z-index: 19;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  pointer-events: none;
  opacity: 0.82;
  transform: translate3d(var(--companion-x, 0), var(--companion-y, 0), 0) rotate(var(--companion-rotate, -8deg));
  transition: opacity 240ms ease;
}

.companion-heart {
  grid-area: 1 / 1;
}

.companion-heart {
  position: relative;
  width: 34px;
  height: 34px;
  background:
    radial-gradient(circle at 68% 68%, rgba(255, 250, 240, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 34% 34%, rgba(255, 250, 240, 0.42) 0 3px, transparent 4px),
    var(--heart-color, var(--rose));
  box-shadow: 0 16px 28px rgba(91, 50, 60, 0.18);
  transform: rotate(-45deg) scale(var(--heart-scale, 0.94));
  transition: background 260ms ease, transform 260ms ease;
}

.companion-heart::before,
.companion-heart::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 64% 58%, rgba(255, 250, 240, 0.58) 0 2px, transparent 3px),
    var(--heart-color, var(--rose));
}

.companion-heart::before {
  top: -17px;
  left: 0;
}

.companion-heart::after {
  top: 0;
  left: 17px;
}

.companion-heart span {
  position: absolute;
  left: 8px;
  top: 11px;
  z-index: 2;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.58);
  transform: rotate(45deg);
}

.companion-heart span::before,
.companion-heart span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.42);
}

.companion-heart span::before {
  top: 7px;
}

.companion-heart span::after {
  top: 14px;
}

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

.reveal {
  transition: opacity 700ms ease, transform 700ms ease;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@keyframes petalSway {
  0%,
  100% {
    margin-left: 0;
  }
  50% {
    margin-left: 12px;
  }
}

@media (max-width: 980px) {
  .topbar {
    top: 10px;
    left: 12px;
    right: 12px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .intro,
  .format,
  .timeline,
  .education-layout,
  .experience-card,
  .personal {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  .hero-art {
    min-height: 520px;
    order: -1;
  }

  .portrait-main {
    width: min(80vw, 470px);
  }

  .hero-stats,
  .bubble-cloud,
  .values-grid,
  .format-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .format-card {
    position: relative;
    top: auto;
  }

  .experience-card ul {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 760px) and (min-width: 900px) {
  .hero .hero-actions {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand {
    max-width: 58vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-telegram {
    padding-inline: 10px;
  }

  .section-band {
    padding: 82px 16px;
  }

  .hero {
    padding-top: 82px;
    padding-bottom: 24px;
    gap: 18px;
  }

  h1 {
    font-size: clamp(32px, 9.9vw, 39px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(30px, 9.8vw, 38px);
    line-height: 1.04;
  }

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

  .portrait-main {
    min-width: 0;
    width: min(64vw, 250px);
  }

  .hero-copy {
    margin-top: -8px;
  }

  .lead {
    font-size: 17px;
  }

  .hero .hero-actions {
    display: none;
  }

  .flower {
    width: 145px;
  }

  .flower-left {
    left: 0;
    top: 72px;
  }

  .flower-right {
    right: -6px;
    bottom: 58px;
  }

  .hand-note {
    top: 68px;
    right: 20px;
    max-width: 140px;
    font-size: 18px;
  }

  .floating-chip {
    display: none;
  }

  .hero-stats,
  .bubble-cloud,
  .values-grid,
  .format-steps {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 78px;
  }

  .request-card {
    min-height: 180px;
    padding: 28px 24px;
  }

  .value-item {
    min-height: 210px;
  }

  .intro,
  .format,
  .personal {
    gap: 28px;
  }

  .intro-photo img {
    width: min(78vw, 300px);
  }

  .ambient-ornament,
  .approach-flower,
  .personal-flower,
  .final-ornament {
    opacity: 0.35;
  }

  .intro-ornament {
    right: -72px;
    bottom: 22px;
    width: 170px;
  }

  .requests-ornament {
    left: -76px;
    top: 34px;
    width: 170px;
  }

  .format-ornament {
    left: -86px;
    bottom: 44px;
    width: 190px;
  }

  .education-ornament {
    right: -78px;
    top: 54px;
    width: 176px;
  }

  .final-ornament-left {
    left: -78px;
    bottom: 22px;
    width: 190px;
  }

  .final-ornament-right {
    right: -84px;
    top: 90px;
    width: 178px;
  }

  .petal {
    opacity: 0.58;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    flex-direction: column;
    padding-bottom: 94px;
  }

  .footer > a:last-child {
    justify-self: center;
  }

  .aivora-link {
    width: min(152px, 48vw);
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 44px;
  }

  .back-top {
    right: 16px;
    bottom: 78px;
    width: 50px;
    height: 50px;
  }

  .back-top-flower {
    font-size: 37px;
  }

  .back-top-arrow {
    font-size: 21px;
  }

  .scroll-companion {
    right: 10px;
    top: 20vh;
    width: 54px;
    height: 54px;
    opacity: 0.58;
  }

  .companion-heart,
  .companion-heart::before,
  .companion-heart::after {
    width: 22px;
    height: 22px;
  }

  .companion-heart::before {
    top: -11px;
  }

  .companion-heart::after {
    left: 11px;
  }

  .companion-heart span {
    left: 5px;
    top: 8px;
    width: 16px;
  }

  .companion-heart span::before,
  .companion-heart span::after {
    width: 16px;
  }

  .companion-heart span::before {
    top: 5px;
  }

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

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