:root {
  --bg: #e9e6e3;
  --bg-live: #e9e6e3;
  --bg-soft: #dedad6;
  --ink-live: #3b2415;
  --ink-soft-live: #6f5c50;
  --line-live: rgba(59, 36, 21, 0.12);
  --btn-bg: #3b2415;
  --btn-fg: #f5f3f1;
  --btn-ghost-border: #3b2415;
  --ink: #3b2415;
  --ink-soft: #6f5c50;
  --line: rgba(59, 36, 21, 0.12);
  --accent: #3b2415;
  --accent-muted: #5c4030;
  --white: #f5f3f1;
  --phone: #2a211c;
  --phone-bezel: #4a3d35;
  --shadow: 0 24px 60px rgba(59, 36, 21, 0.1);
  --shadow-lg: 0 32px 70px rgba(59, 36, 21, 0.14);
  --radius: 18px;
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background-color: var(--bg-live); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg-live);
  -webkit-font-smoothing: antialiased;
  transition: color 0.5s ease, background-color 0.5s ease;
}

:where(
  body, p, h1, h2, h3, h4, li, a, span, label, button,
  .btn, .logo, .logo-sub, .nav, .nav-cta, .site-footer,
  .section-label, .highlight-text, .highlight-num,
  .problem-closer, .service-card, .hero-lead, .page-lead,
  .footer-name, .footer-role, .footer-contact a, .footer-copy,
  .benefits-list li, .problem-list li, .eyebrow
) {
  transition: color 0.5s ease, border-color 0.5s ease;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 9999;
}

/* ── Header ── */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1000 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  padding-top: calc(1.25rem + env(safe-area-inset-top, 0px));
  padding-left: calc(clamp(1.25rem, 4vw, 3rem) + env(safe-area-inset-left, 0px));
  padding-right: calc(clamp(1.25rem, 4vw, 3rem) + env(safe-area-inset-right, 0px));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(233, 230, 227, 0.96);
  border-bottom: 1px solid var(--line-live);
  transform: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease,
    backdrop-filter 0.35s ease,
    color 0.25s ease;
}

.site-header.is-scrolled {
  padding-block: 0.85rem;
  padding-top: calc(0.85rem + env(safe-area-inset-top, 0px));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(59, 36, 21, 0.14);
}

.site-header.is-scrolled .logo-mj {
  font-size: 1.45rem;
}

.site-header .logo,
.site-header .nav-toggle {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  color: var(--ink);
  transition: color 0.25s ease;
}

.logo-mj {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.92;
  transition: color 0.25s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.25s ease;
}

.nav a:not(.nav-cta):hover { color: var(--accent-muted); }

.nav a.is-active {
  color: var(--ink);
  position: relative;
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--ink);
}

.nav-cta {
  padding: 0.65rem 1.2rem;
  border: 1px solid var(--btn-ghost-border);
  border-radius: 999px;
  color: var(--ink);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.nav-cta:hover {
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-color: var(--btn-bg);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 7rem clamp(1.25rem, 4vw, 3rem) 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1rem;
}

.eyebrow-shimmer {
  background: linear-gradient(90deg, var(--ink) 0%, #ed4956 45%, var(--ink-soft) 55%, var(--ink) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: eyebrow-shine 6s linear infinite;
}

@keyframes eyebrow-shine {
  0% { background-position: 0% center; }
  100% { background-position: 220% center; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-muted);
}

.hero-lead {
  max-width: 34ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s, background 0.25s, color 0.25s, border-color 0.25s;
}

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

.btn.magnetic:hover { transform: translate3d(var(--mx, 0), var(--my, 0), 0); }

.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.btn-primary:hover { background: color-mix(in srgb, var(--btn-bg) 85%, #ed4956); }

.btn-ghost {
  border: 1px solid color-mix(in srgb, var(--btn-ghost-border) 25%, transparent);
  color: var(--ink);
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}

.btn-ghost:hover {
  border-color: var(--btn-ghost-border);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 0.95rem;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, var(--ink), #ed4956);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stat-text {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--ink);
}

.hero-stats span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  max-width: 12ch;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-accent {
  position: absolute;
  right: 5%;
  bottom: -5%;
  width: 55%;
  height: 70%;
  background: linear-gradient(135deg, var(--bg-soft) 0%, rgba(59, 36, 21, 0.08) 100%);
  opacity: 0.9;
  border-radius: 2px;
  z-index: 0;
}

/* ── Page hero (subpages) ── */
.page-hero {
  padding: 8rem clamp(1.25rem, 4vw, 3rem) 2rem;
  max-width: 820px;
}

.page-hero--inline {
  padding: 0 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
}

.page-lead {
  max-width: 48ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 1.25rem 0 0;
}

.highlight-band {
  max-width: none;
  padding: clamp(3rem, 8vh, 5rem) clamp(1.25rem, 4vw, 3rem);
  background: transparent;
  border: none;
}

.highlight-band-inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
  background: transparent;
  border-top: 1px solid var(--line-live);
  border-bottom: 1px solid var(--line-live);
  overflow: visible;
}

.highlight-text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  margin: 0;
  color: var(--ink);
  transition: color 0.5s ease;
}

.highlight-num {
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.5s ease;
}

.highlight-floats {
  position: absolute;
  inset: -12px -8px;
  pointer-events: none;
  z-index: 0;
}

.highlight-float {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: 0.85rem;
  opacity: 0.28;
  transform: translate(-50%, -50%);
  animation: highlight-drift 6s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  filter: grayscale(0.2);
}

.highlight-float--heart {
  color: #ed4956;
  font-size: 0.75rem;
  opacity: 0.35;
}

.highlight-band-inner .highlight-text {
  position: relative;
  z-index: 1;
}

@keyframes highlight-drift {
  0%, 100% { transform: translate(-50%, -50%) rotate(-3deg); opacity: 0.22; }
  50% { transform: translate(-50%, calc(-50% - 8px)) rotate(3deg); opacity: 0.38; }
}

/* ── Problem section ── */
.problem-section {
  padding-top: 0;
}

.problem-inner {
  padding: 2.5rem;
  background: color-mix(in srgb, var(--bg-live) 75%, white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.problem-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 500;
  margin: 0 0 1.5rem;
  line-height: 1.3;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.75rem;
  max-width: 360px;
  margin-inline: auto;
  text-align: left;
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.problem-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.problem-closer {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-style: italic;
  margin: 0;
  color: var(--ink);
}

/* ── Benefits list ── */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.benefits-list li {
  position: relative;
  padding: 1.1rem 0 1.1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  color: var(--ink);
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-muted);
}

/* ── Footer contact ── */
.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.2rem;
  color: var(--ink);
}

.footer-role {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.footer-contact a {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.footer-contact a:hover { color: var(--ink); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 0;
}

.contact-card--profile p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ── Intro / CTA bands ── */
.intro-band {
  padding: 2.5rem;
  background: color-mix(in srgb, var(--bg-live) 80%, white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.intro-quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.45;
  margin: 0 0 1.25rem;
  color: var(--ink);
}

.text-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.text-link:hover { opacity: 0.7; }

.section-cta {
  margin-top: 2rem;
  text-align: center;
}

.cta-band {
  max-width: none;
  background: var(--ink);
  color: var(--bg);
  margin: 0;
  padding: clamp(4rem, 8vh, 5rem) clamp(1.25rem, 4vw, 3rem);
}

.cta-band-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  margin: 0 0 1rem;
}

.cta-band p {
  color: rgba(233, 230, 227, 0.78);
  margin: 0 0 2rem;
}

.cta-band .btn-primary {
  background: var(--bg);
  color: var(--ink);
}

.cta-band .btn-primary:hover { background: var(--white); }

.services-grid--compact {
  margin-top: 2rem;
}

.portfolio-section {
  padding-top: 0;
}

.portfolio-grid--full {
  margin-top: 0;
}

/* ── Offer detail ── */
.offer-detail {
  padding-top: 0;
}

.offer-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.offer-block:first-child { border-top: none; }

.offer-block-head {
  position: sticky;
  top: 6rem;
  align-self: start;
}

.offer-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent-muted);
  margin-bottom: 0.5rem;
}

.offer-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}

.offer-block-body p {
  color: var(--ink-soft);
  margin: 0 0 1rem;
  font-size: 1.02rem;
}

.offer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.offer-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-muted);
}

.offer-highlight {
  margin-top: 2rem;
  padding: 2rem 2.25rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
  text-align: center;
}

.offer-highlight h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.offer-highlight p {
  max-width: 42ch;
  margin: 0 auto 1.5rem;
  color: rgba(233, 230, 227, 0.78);
}

.offer-highlight .btn-primary {
  background: var(--bg);
  color: var(--ink);
}

.process-section {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}

/* ── Bio page ── */
.bio-page {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
  padding: 7rem clamp(1.25rem, 4vw, 3rem) 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.bio-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.bio-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bio-lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
}

.bio-text p {
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.bio-values {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
}

.bio-values li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.bio-values strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.bio-values span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.bio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── Contact page ── */
.contact-page {
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 2rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form label span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.contact-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.contact-card a:hover { color: var(--ink); }

.contact-card .offer-list { margin-top: 0.25rem; }

/* ── Sections ── */
.section {
  padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 4vw, 3rem);
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.section-label-line {
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #ed4956, var(--ink));
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible .section-label-line,
.section-head.visible .section-label-line {
  width: 48px;
}

.section-head h2,
.about h2,
.contact-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
}

.section-sub {
  max-width: 42ch;
  color: var(--ink-soft);
  margin: 1rem 0 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.about-text p:last-child { margin-bottom: 0; }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.service-card {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-card--accent {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.service-card--accent p { color: rgba(233, 230, 227, 0.78); }

.service-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.service-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ── Phone mockup ── */
.phone {
  position: relative;
  background: var(--phone);
  border-radius: 28px;
  padding: 8px;
  box-shadow:
    0 0 0 1px var(--phone-bezel),
    0 16px 40px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 4px;
  background: #333;
  border-radius: 999px;
  z-index: 2;
}

.phone-screen {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
}

.phone-screen img,
.phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone--large {
  width: min(320px, 78vw);
  padding: 10px;
  border-radius: 36px;
}

.phone--large::before {
  top: 14px;
  height: 5px;
}

.phone--large .phone-screen {
  border-radius: 28px;
}

/* ── Portfolio grid (Instagram-style) ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.25s;
}

.portfolio-item:hover { transform: none; }

.portfolio-item .phone {
  width: 100%;
  transition: box-shadow 0.25s;
}

.portfolio-item:hover .phone {
  box-shadow:
    0 0 0 1px var(--phone-bezel),
    0 22px 50px rgba(0, 0, 0, 0.28);
}

.portfolio-item .play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 0.25s;
}

.portfolio-item:hover .play-badge { opacity: 1; }

.play-badge svg {
  width: 44px;
  height: 44px;
  fill: white;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.portfolio-loading,
.portfolio-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-soft);
  padding: 3rem;
}

/* ── Process ── */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-steps li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.process-steps li > span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}

.process-steps h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}

.process-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* ── Contact ── */
.contact {
  max-width: none;
  background: var(--ink);
  color: var(--bg);
  margin-top: 2rem;
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(4rem, 10vh, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.contact-inner .section-label { color: rgba(233, 230, 227, 0.65); }

.contact-inner p {
  color: rgba(233, 230, 227, 0.78);
  max-width: 40ch;
  margin: 1rem auto 2rem;
}

.contact-note {
  margin-top: 1.5rem !important;
  font-size: 0.82rem;
  opacity: 0.6;
}

.contact .btn-primary {
  background: var(--bg);
  color: var(--ink);
}

.contact .btn-primary:hover { background: var(--white); }

/* ── Footer ── */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  background: var(--bg-live);
}

.footer-logo {
  width: 72px;
  height: auto;
  border-radius: 12px;
  opacity: 0.95;
}

/* ── Player modal ── */
.player-modal[hidden] { display: none; }

.player-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(59, 36, 21, 0.9);
  backdrop-filter: blur(6px);
}

.player-shell {
  position: relative;
  z-index: 1;
}

.player-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: white;
  font-size: 2rem;
  line-height: 1;
  opacity: 0.8;
}

.portfolio-item--image .play-badge { display: none; }

#player-video[hidden],
#player-image[hidden] { display: none; }

.player-close:hover { opacity: 1; }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 6rem; }
  .hero-visual { order: -1; }
  .hero-frame { width: min(100%, 320px); margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .bio-page { grid-template-columns: 1fr; padding-top: 6rem; }
  .bio-visual { max-width: 360px; margin: 0 auto; }
  .offer-block { grid-template-columns: 1fr; gap: 1rem; }
  .offer-block-head { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

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

  .hero-stats { gap: 1.25rem; }

  .process-steps li {
    grid-template-columns: 56px 1fr;
  }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .has-heart-cursor,
  .has-heart-cursor * { cursor: auto !important; }
  .cursor-heart,
  .heart-burst-layer,
  .bg-orbs { display: none !important; }
  .tile-3d.is-tilting { transform: none !important; }
}

/* ── FX: scroll bg, 3D tiles, heart cursor ── */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orb-float 18s ease-in-out infinite;
}

.bg-orb--1 {
  width: 420px;
  height: 420px;
  background: rgba(237, 73, 86, 0.12);
  top: 8%;
  right: -8%;
}

.bg-orb--2 {
  width: 360px;
  height: 360px;
  background: rgba(92, 64, 48, 0.14);
  bottom: 12%;
  left: -6%;
  animation-delay: -6s;
}

.bg-orb--3 {
  width: 280px;
  height: 280px;
  background: rgba(233, 230, 227, 0.9);
  top: 45%;
  left: 35%;
  animation-delay: -11s;
  opacity: 0.5;
}

@keyframes orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, -18px, 0) scale(1.06); }
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.tile-3d {
  transition: transform 0.18s ease-out, box-shadow 0.28s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.tile-3d.is-tilting {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(14px) scale(1.015);
  box-shadow: var(--shadow-lg);
}

.service-card.tile-3d,
.contact-card.tile-3d {
  background: color-mix(in srgb, var(--bg-live) 78%, white);
  backdrop-filter: blur(8px);
}

.problem-inner.tile-3d,
.highlight-band-inner.tile-3d,
.intro-band.tile-3d {
  backdrop-filter: blur(6px);
}

.hero-frame.tile-3d.is-tilting {
  box-shadow: 0 40px 80px rgba(59, 36, 21, 0.18);
}

.has-heart-cursor,
.has-heart-cursor a,
.has-heart-cursor button,
.has-heart-cursor .portfolio-item {
  cursor: none;
}

.has-heart-cursor input,
.has-heart-cursor textarea,
.has-heart-cursor select,
.has-heart-cursor label {
  cursor: text;
}

.cursor-heart {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.25s ease, scale 0.25s ease;
  filter: drop-shadow(0 2px 6px rgba(237, 73, 86, 0.35));
}

.cursor-heart.is-visible { opacity: 1; }

.cursor-heart.is-pulse {
  animation: cursor-pulse 0.35s ease-out;
}

@keyframes cursor-pulse {
  0% { scale: 1; }
  40% { scale: 1.45; }
  100% { scale: 1; }
}

.heart-burst-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}

.heart-burst {
  position: fixed;
  margin: -20px 0 0 -20px;
  pointer-events: none;
  animation: ig-heart-burst 0.85s cubic-bezier(0.17, 0.67, 0.32, 1.2) forwards;
  filter: drop-shadow(0 4px 12px rgba(237, 73, 86, 0.4));
}

@keyframes ig-heart-burst {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-12deg);
  }
  15% {
    opacity: 1;
    transform: scale(calc(0.35 * var(--burst-scale, 1))) rotate(-6deg);
  }
  35% {
    opacity: 1;
    transform: scale(calc(1.15 * var(--burst-scale, 1))) rotate(4deg);
  }
  55% {
    opacity: 0.95;
    transform: scale(calc(1 * var(--burst-scale, 1))) rotate(0deg) translateY(-8px);
  }
  100% {
    opacity: 0;
    transform: scale(calc(0.85 * var(--burst-scale, 1))) rotate(6deg) translateY(-28px);
  }
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.hero h1 em {
  background: linear-gradient(135deg, var(--accent-muted), #ed4956);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-band {
  background: linear-gradient(145deg, #3b2415 0%, #4a2e1c 50%, #3b2415 100%);
}

@media (pointer: coarse) {
  .cursor-heart,
  .heart-burst-layer,
  .cursor-ring,
  .heart-field { display: none; }
}

/* ── PREMIUM ── */
body.is-loading { overflow: hidden; }

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.7s ease, visibility 0.7s;
}

.site-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.loader-mj {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--ink);
  animation: loader-pulse 1.2s ease-in-out infinite;
}

.loader-sub {
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.loader-track {
  width: 120px;
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  margin-top: 1rem;
  overflow: hidden;
}

.loader-fill {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--accent-muted), #ed4956);
  border-radius: inherit;
  animation: loader-slide 1s ease-in-out infinite;
}

@keyframes loader-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

@keyframes loader-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1001;
  background: transparent;
  pointer-events: none;
}

.scroll-progress-fill {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent-muted), #ed4956, var(--accent-muted));
  background-size: 200% 100%;
  animation: progress-shimmer 3s linear infinite;
}

@keyframes progress-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--sx, 50%) var(--sy, 40%),
    rgba(237, 73, 86, 0.08),
    transparent 55%
  );
  z-index: 0;
  transition: background 0.15s ease;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
  will-change: transform;
}

.hero-frame {
  position: relative;
  will-change: transform;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 2px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(237, 73, 86, 0.5), rgba(59, 36, 21, 0.2), rgba(237, 73, 86, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.split-line {
  display: inline-block;
  clip-path: inset(0 0 100% 0);
  transform: translateY(1.1em);
  opacity: 0;
  transition: clip-path 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease;
}

.split-ready .split-line,
.hero h1.split-ready .split-line {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
  opacity: 1;
}

.line-wrap { display: inline; }

.marquee-section {
  overflow: hidden;
  padding: 1.25rem 0;
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-live) 70%, white);
  backdrop-filter: blur(6px);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track {
  flex-shrink: 0;
  padding-right: 3rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  font-style: italic;
  color: rgba(59, 36, 21, 0.45);
  white-space: nowrap;
}

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

.heart-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border: 1px solid rgba(237, 73, 86, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, width 0.25s, height 0.25s, margin 0.25s, border-color 0.25s;
}

.cursor-ring.is-visible { opacity: 1; }

.cursor-ring.is-hover {
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-color: rgba(237, 73, 86, 0.55);
}

.magnetic {
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.section-lit {
  animation: section-glow-in 0.8s ease forwards;
}

@keyframes section-glow-in {
  from { filter: brightness(0.98); }
  to { filter: brightness(1); }
}

.service-card {
  border: 1px solid rgba(59, 36, 21, 0.08);
  box-shadow: 0 4px 24px rgba(59, 36, 21, 0.04);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(237, 73, 86, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.service-card:hover::before { opacity: 1; }

.service-card { position: relative; overflow: hidden; }

.phone-screen {
  position: relative;
}

.phone-screen .preview-loop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.phone-screen.is-playing .preview-loop { opacity: 1; }

.phone-screen.is-playing img { opacity: 0; }

.portfolio-item .phone {
  transition: box-shadow 0.4s ease, transform 0.3s ease;
}

.portfolio-item:hover .phone {
  box-shadow:
    0 0 0 1px var(--phone-bezel),
    0 0 40px rgba(237, 73, 86, 0.25),
    0 24px 50px rgba(0, 0, 0, 0.28);
}

.problem-inner {
  box-shadow: 0 20px 60px rgba(59, 36, 21, 0.06);
}

.cta-band {
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(237, 73, 86, 0.2), transparent);
  pointer-events: none;
}

.cta-band-inner { position: relative; z-index: 1; }

.site-header {
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.35s ease;
}

body:not(.is-loading) .site-header:not(.is-scrolled) {
  box-shadow: 0 1px 0 var(--line);
}

.benefits-list li {
  transition: transform 0.35s ease, padding-left 0.35s ease;
}

.benefits-list li:hover {
  transform: translateX(6px);
  padding-left: 1.5rem;
}

.player-modal-backdrop {
  backdrop-filter: blur(12px);
}

.player-shell {
  animation: modal-in 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader,
  .marquee,
  .heart-field,
  .scroll-progress,
  .cursor-ring { display: none !important; }
  .split-line {
    clip-path: none;
    transform: none;
    opacity: 1;
  }
  .eyebrow-shimmer {
    animation: none;
    background: none;
    color: var(--ink);
    -webkit-background-clip: unset;
    background-clip: unset;
  }
}

/* ── Header compact + page enter ── */
body.is-ready main {
  animation: page-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes page-enter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.site-footer.reveal {
  transform: translateY(32px);
}

.site-footer.visible {
  transform: none;
}

.nav a:not(.nav-cta) {
  position: relative;
}

.nav a:not(.nav-cta)::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #ed4956;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav a:not(.nav-cta):hover::before,
.nav a:not(.nav-cta).is-active::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav a.is-active::after {
  display: none;
}

.problem-list li {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.problem-list li:hover {
  transform: translateX(8px);
}

.problem-icon {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.problem-list li:hover .problem-icon {
  transform: scale(1.2) rotate(-8deg);
}

.hero-lead,
.page-lead,
.hero-stats span,
.footer-role,
.footer-contact a,
.footer-copy,
.section-head p,
.contact-card p {
  color: var(--ink-soft);
  transition: color 0.3s ease;
}

.benefits-list li,
.service-card p,
.problem-list li,
.problem-closer,
.service-card h3,
.section-head h2,
.page-hero h1,
.hero h1,
.about h2,
.contact-inner h2,
.problem-inner h2,
.footer-name,
.eyebrow,
.section-label,
.section-label-text,
.nav,
.logo,
.logo-sub,
.offer-block h2,
.offer-block-body p,
.offer-list li,
.process-steps h3,
.process-steps p,
.bio-page p,
.contact-form label span {
  color: var(--ink);
  transition: color 0.3s ease;
}

.nav-toggle span {
  background: var(--ink);
  transition: background 0.25s ease;
}

.benefits-list li::before {
  background: color-mix(in srgb, var(--ink) 70%, #ed4956);
}

.problem-inner,
.intro-band,
.service-card.tile-3d {
  border-color: var(--line-live);
}

html.scroll-dark .service-card.tile-3d,
html.scroll-dark .problem-inner,
html.scroll-dark .hero-stats {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

html.scroll-deep .bg-orb {
  opacity: 0.55;
  filter: blur(70px);
}

html.scroll-deep .bg-orb--1 {
  background: rgba(237, 73, 86, 0.22);
}

/* ── Hero IG stickers ── */
.hero-frame-wrap {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
}

.hero-frame-wrap .hero-frame {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-ig-ring {
  position: absolute;
  inset: -14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  opacity: 0.75;
  z-index: 0;
  animation: ig-ring-pulse 3s ease-in-out infinite;
  filter: blur(0.5px);
}

.hero-ig-ring::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--bg-live);
  border-radius: 6px;
  transition: background 0.3s ease;
}

@keyframes ig-ring-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.02); }
}

.hero-stickers {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-sticker {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  transform: translate(-50%, -50%) scale(var(--s, 1));
  animation: sticker-float 4.5s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.2));
}

.hero-sticker--emoji {
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1;
}

.hero-sticker--badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.65rem;
  background: rgba(255, 255, 255, 0.92);
  color: #3b2415;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(237, 73, 86, 0.25);
  white-space: nowrap;
}

.hero-sticker--heart svg {
  animation: sticker-heart 1.4s ease-in-out infinite;
}

@keyframes sticker-float {
  0%, 100% { transform: translate(-50%, -50%) scale(var(--s, 1)) rotate(-4deg); }
  33% { transform: translate(-50%, calc(-50% - 10px)) scale(var(--s, 1)) rotate(3deg); }
  66% { transform: translate(calc(-50% + 6px), calc(-50% - 4px)) scale(var(--s, 1)) rotate(-2deg); }
}

@keyframes sticker-heart {
  0%, 100% { scale: 1; }
  50% { scale: 1.18; }
}

.hero-orbit {
  position: absolute;
  inset: -28%;
  z-index: 1;
  pointer-events: none;
  animation: orbit-spin 22s linear infinite;
  transition: transform 0.35s ease;
}

.hero-orbit-item {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 1.1rem;
  transform: rotate(var(--a)) translateX(115%) rotate(calc(-1 * var(--a)));
  opacity: 0.75;
  animation: orbit-item-bob 3s ease-in-out infinite;
  animation-delay: calc(var(--a) / 360deg * -2s);
}

@keyframes orbit-spin {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

@keyframes orbit-item-bob {
  0%, 100% { scale: 1; opacity: 0.65; }
  50% { scale: 1.25; opacity: 1; }
}

.hero-frame-wrap .hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 40%, rgba(237, 73, 86, 0.08));
  pointer-events: none;
  z-index: 3;
}

html.scroll-dark .hero-sticker--badge {
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 1024px) {
  .hero-frame-wrap {
    width: min(100%, 280px);
  }

  .hero-orbit {
    inset: -22%;
  }

  /* Obniż serce i ogień — nagłówek ich nie przecina */
  .hero-sticker:nth-child(1) { --y: 30%; }
  .hero-sticker:nth-child(2) { --y: 34%; }
  .hero-sticker:nth-child(7) { --y: 4%; }
  .hero-sticker:nth-child(8) { --y: 6%; }

  .hero-sticker--emoji {
    font-size: 1.25rem;
  }

  .hero-sticker--badge {
    font-size: 0.58rem;
    padding: 0.3rem 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sticker,
  .hero-orbit,
  .hero-ig-ring,
  .hero-sticker--heart svg {
    animation: none !important;
  }

  .hero-orbit {
    display: none;
  }
}
