:root {
  --cream: #F5F0EA;
  --charcoal: #1C1C1C;
  --champagne: #C9A46A;
  --coral: #E87D90;
  --nude: #F1D6DA;
  --sand: #DCC7B0;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(28, 28, 28, .12);
  --font-title: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--charcoal);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { transform: translateY(0); }
.section-cream, .section-nude, .section-charcoal, .final-cta, .contact { padding: clamp(62px, 7vw, 106px) clamp(18px, 5vw, 72px); }
.section-cream { background: var(--cream); }
.section-nude { background: var(--nude); }
.section-charcoal { background: var(--charcoal); color: var(--cream); }
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 800;
  color: var(--coral);
}
h1, h2, h3 { font-family: var(--font-title); line-height: .98; letter-spacing: 0; margin: 0; }
h1 { font-size: clamp(2.7rem, 5.25vw, 5.1rem); max-width: 820px; }
h2 { font-size: clamp(2.1rem, 4.2vw, 4.35rem); }
h3 { font-size: clamp(1.55rem, 2vw, 2.25rem); }
h1, h2, h3, p, a, button, span, strong, small, label {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
p { font-size: clamp(1rem, 1.4vw, 1.18rem); }
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding: 24px clamp(18px, 3vw, 44px);
  transition: transform .45s ease, background .45s ease, box-shadow .45s ease, backdrop-filter .45s ease;
  pointer-events: none;
}
.site-header.is-scrolled {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.site-header.is-hidden { transform: translateY(-105%); }
.brand {
  position: fixed;
  left: clamp(18px, 3.2vw, 42px);
  top: 18px;
  z-index: 105;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  padding: 18px;
  border: 1px solid rgba(28,28,28,.1);
  border-radius: 50%;
  background:
    radial-gradient(circle at 54% 46%, rgba(201,164,106,.18), transparent 42%),
    rgba(255,250,244,.74);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 54px rgba(28,28,28,.1);
  pointer-events: auto;
  animation: navDrop .85s cubic-bezier(.2,.8,.2,1) both;
}
.brand img { width: 90px; height: 90px; object-fit: contain; }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.4vw, 20px);
  padding: 8px 9px 8px 24px;
  border: 1px solid rgba(28,28,28,.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,250,244,.9), rgba(245,240,234,.72));
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 58px rgba(28,28,28,.09);
  font-size: .88rem;
  font-weight: 800;
  pointer-events: auto;
  animation: navDrop .85s cubic-bezier(.2,.8,.2,1) .08s both;
}
.site-nav a { text-decoration: none; position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(28,28,28,.1);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,250,244,.9), rgba(245,240,234,.72));
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 44px rgba(28,28,28,.08);
  pointer-events: auto;
  animation: navDrop .85s cubic-bezier(.2,.8,.2,1) .14s both;
}
.language-switch button {
  min-width: 42px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 900;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.language-switch button:hover { transform: translateY(-1px); }
.language-switch button.is-active {
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(245,240,234,.12);
}
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  padding: 13px 20px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, color .25s ease, border .25s ease, box-shadow .25s ease;
}
.nav-cta {
  min-height: 50px;
  padding-inline: 26px;
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(245,240,234,.12);
}
.button:hover, .nav-cta:hover, .button:focus-visible, .nav-cta:focus-visible { transform: translateY(-2px); }
.button-dark { background: var(--charcoal); color: var(--cream); }
.button-coral {
  position: relative;
  overflow: hidden;
  background: var(--coral);
  color: var(--charcoal);
  box-shadow: 0 18px 38px rgba(232,125,144,.24);
}
.button-coral::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255,255,255,.42) 48%, transparent 62% 100%);
  translate: -120% 0;
  animation: buttonSheen 4.6s ease-in-out infinite;
}
.button-ghost {
  background: rgba(255,250,244,.58);
  color: var(--charcoal);
  border-color: rgba(28,28,28,.18);
}
.button-light { background: var(--cream); color: var(--charcoal); }
.menu-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; padding: 9px; }
.menu-toggle span { display: block; height: 2px; background: var(--charcoal); margin: 6px 0; transition: transform .3s ease, opacity .3s ease; }
.hero {
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  padding-top: 178px;
}
.hero-copy {
  transform: translateY(20px);
  animation: heroCopyIn .9s cubic-bezier(.2,.8,.2,1) .12s both;
}
.hero-text { max-width: 620px; font-size: clamp(1.05rem, 1.5vw, 1.28rem); }
.hero-actions, .final-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: clamp(40px, 5vw, 74px); }
.hero-stage {
  position: relative;
  min-height: clamp(420px, 48vw, 620px);
  perspective: 1000px;
}
.hero-image-stage {
  min-height: clamp(430px, 44vw, 590px);
  margin-top: 34px;
}
.hero-main-image {
  position: absolute;
  inset: 2% 0 6% 0;
  width: 100%;
  height: 92%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 1px solid rgba(28,28,28,.11);
  box-shadow: 0 30px 80px rgba(28,28,28,.16);
  scale: 1.01;
  animation: heroImageBreath 8s ease-in-out infinite, heroReveal .95s cubic-bezier(.2,.8,.2,1) .22s both;
}
.hero-logo-system {
  position: absolute;
  left: 7%;
  top: 8%;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 8px;
  animation: heroLogoFloat 5.4s ease-in-out infinite;
}
.hero-logo-disc {
  width: clamp(68px, 6.8vw, 104px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 11px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 42%, rgba(201,164,106,.26), transparent 36%),
    rgba(255,250,244,.9);
  border: 1px solid rgba(28,28,28,.1);
  box-shadow: 0 18px 44px rgba(28,28,28,.12);
}
.hero-logo-disc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-logo-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--cream);
  font-size: .48rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-image-stage::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 12%;
  width: 54%;
  height: 74%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(241,214,218,.52);
  filter: blur(4px);
}
.hero-brand-chip {
  position: absolute;
  left: 5%;
  bottom: 8%;
  width: min(48%, 260px);
  padding: 18px;
  border-radius: 8px;
  background: rgba(28,28,28,.88);
  color: var(--cream);
  box-shadow: 0 24px 60px rgba(28,28,28,.22);
  translate: 0 0;
  animation: heroFloat 5.8s ease-in-out infinite .3s;
}
.hero-brand-chip span {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-brand-chip strong {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: .95;
}
.hero-mini-palette {
  position: absolute;
  right: 24px;
  bottom: 8%;
  display: flex;
  gap: 9px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,250,244,.86);
  border: 1px solid rgba(28,28,28,.12);
  box-shadow: 0 16px 34px rgba(28,28,28,.12);
  animation: paletteFloat 5.4s ease-in-out infinite .6s;
}
.hero-mini-palette span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(28,28,28,.12);
}
.float-card {
  position: absolute;
  border-radius: var(--radius);
  border: 1px solid rgba(28, 28, 28, .13);
  background: rgba(245, 240, 234, .82);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .35s ease;
}
.web-preview { width: 68%; min-height: 230px; top: 10%; left: 0; padding: 28px; background: var(--charcoal); color: var(--cream); }
.web-preview strong { font-family: var(--font-title); font-size: 2.4rem; display: block; margin-top: 46px; }
.mini-toolbar { display: block; width: 100%; height: 14px; border-radius: 999px; background: linear-gradient(90deg, var(--coral) 0 22%, var(--champagne) 22% 38%, var(--nude) 38% 100%); }
.mock-lines span { display: block; height: 12px; background: var(--cream); opacity: .7; margin-top: 18px; border-radius: 99px; }
.mock-lines span:nth-child(2) { width: 72%; }
.mock-lines span:nth-child(3) { width: 48%; }
.ebook-preview { width: 40%; min-height: 220px; right: 5%; top: 0; padding: 28px; background: var(--nude); }
.ebook-preview strong { font-family: var(--font-title); font-size: 2.2rem; display: block; }
.gold-star { position: absolute; right: 28px; bottom: 22px; color: var(--champagne); font-size: 3rem; }
.palette-preview { width: 44%; right: 0; bottom: 15%; display: grid; grid-template-columns: repeat(4, 1fr); padding: 12px; gap: 10px; background: var(--cream); }
.palette-preview span { aspect-ratio: 1; border-radius: 50%; }
.phone-preview { width: 30%; min-height: 250px; left: 13%; bottom: 3%; padding: 14px; background: var(--sand); }
.phone-preview div { height: 176px; border-radius: 6px; background: linear-gradient(160deg, var(--cream), var(--nude) 55%, var(--coral)); }
.phone-preview p { font-size: .85rem; font-weight: 800; }
.deck-preview { width: 42%; min-height: 160px; right: 14%; bottom: 0; padding: 22px; background: var(--cream); }
.deck-preview strong { font-family: var(--font-title); font-size: clamp(1.15rem, 1.7vw, 1.8rem); }
.deck-preview span { display: block; height: 10px; margin-top: 18px; background: var(--coral); border-radius: 99px; }
.deck-preview span:last-child { width: 65%; background: var(--champagne); }
@keyframes navDrop {
  from { opacity: 0; translate: 0 -16px; }
  to { opacity: 1; translate: 0 0; }
}
@keyframes heroCopyIn {
  from { opacity: 0; translate: 0 18px; }
  to { opacity: 1; translate: 0 0; }
}
@keyframes heroReveal {
  from { opacity: 0; clip-path: inset(10% 0 10% 0 round 8px); }
  to { opacity: 1; clip-path: inset(0 0 0 0 round 8px); }
}
@keyframes heroImageBreath {
  50% { scale: 1.035; filter: saturate(1.05) contrast(1.02); }
}
@keyframes heroFloat {
  50% { translate: 0 -12px; }
}
@keyframes heroLogoFloat {
  50% { transform: translate3d(-8px, 12px, 0) rotate(2deg); }
}
@keyframes paletteFloat {
  50% { translate: -10px 8px; }
}
@keyframes buttonSheen {
  0%, 58% { translate: -120% 0; }
  78%, 100% { translate: 120% 0; }
}
.intro-grid, .therapists, .about, .contact {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}
.about {
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
}
.intro-text { font-size: clamp(1.1rem, 2vw, 1.45rem); }
.word-ribbon {
  display: flex;
  overflow: hidden;
  margin-top: 70px;
  border-block: 1px solid rgba(28, 28, 28, .18);
  color: var(--charcoal);
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 6.5vw, 6.5rem);
  white-space: nowrap;
}
.word-ribbon div { animation: ribbon 28s linear infinite; padding-right: 32px; }
@keyframes ribbon { to { transform: translateX(-100%); } }
.origin {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(232,125,144,.2), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(201,164,106,.22), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, #fff9f3 52%, var(--cream) 100%);
}
.origin::before {
  content: "crear";
  position: absolute;
  left: -3vw;
  top: 18px;
  color: rgba(28,28,28,.035);
  font-family: var(--font-title);
  font-size: clamp(7rem, 18vw, 18rem);
  line-height: 1;
  pointer-events: none;
}
.origin-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}
.origin-story h2 {
  max-width: 640px;
  font-size: clamp(2.25rem, 3.85vw, 4.05rem);
  line-height: .94;
}
.origin-story p {
  max-width: 650px;
  color: rgba(28,28,28,.78);
  font-size: clamp(1rem, 1.18vw, 1.08rem);
  font-weight: 550;
}
.origin-story a:not(.button) {
  color: var(--coral);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  white-space: nowrap;
}
.origin-story a:not(.button):focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}
.origin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.origin-visual {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}
.origin-orbit {
  position: absolute;
  inset: 9% 10% 8% 8%;
  z-index: -1;
  border: 1px solid rgba(201,164,106,.42);
  border-radius: 50%;
  animation: slowTurn 18s linear infinite;
}
.origin-orbit::before,
.origin-orbit::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 9px rgba(232,125,144,.12);
}
.origin-orbit::before { left: 14%; top: 4%; }
.origin-orbit::after { right: 10%; bottom: 8%; background: var(--champagne); box-shadow: 0 0 0 9px rgba(201,164,106,.14); }
.origin-thread {
  position: absolute;
  left: 9%;
  right: 11%;
  top: 49%;
  height: 2px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, var(--coral), var(--champagne), transparent);
  transform: rotate(-13deg);
  animation: threadGlow 4.8s ease-in-out infinite;
}
.origin-card {
  position: absolute;
  width: min(54%, 360px);
  min-height: 180px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(28,28,28,.12);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(28,28,28,.14);
  transform: translateZ(0);
}
.origin-card span {
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 900;
}
.origin-card strong {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  line-height: .96;
}
.origin-card small {
  display: block;
  max-width: 260px;
  margin-top: 18px;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.45;
}
.origin-design {
  left: 4%;
  top: 5%;
  background: var(--charcoal);
  color: var(--cream);
  animation: originFloatA 7s ease-in-out infinite;
}
.origin-design span { color: var(--coral); }
.origin-cake {
  right: 0;
  top: 27%;
  background:
    radial-gradient(circle at 82% 22%, rgba(255,255,255,.7) 0 12%, transparent 13%),
    linear-gradient(145deg, #F7D6DD 0%, #FFF4EF 48%, #DDBF9C 100%);
  animation: originFloatB 7.8s ease-in-out infinite .4s;
}
.origin-cake span { color: #A46A55; }
.origin-process {
  left: 18%;
  bottom: 4%;
  width: min(64%, 430px);
  background: rgba(255,250,244,.86);
  backdrop-filter: blur(18px);
  animation: originFloatC 8.2s ease-in-out infinite .2s;
}
.origin-process span { color: var(--coral); }
@keyframes originFloatA { 50% { transform: translate3d(12px, -14px, 0) rotate(-1.5deg); } }
@keyframes originFloatB { 50% { transform: translate3d(-10px, 12px, 0) rotate(1.8deg); } }
@keyframes originFloatC { 50% { transform: translate3d(8px, -10px, 0) rotate(.8deg); } }
@keyframes threadGlow { 50% { opacity: .46; filter: blur(.4px); } }
.section-heading { max-width: 980px; margin-bottom: 38px; }
.section-lead {
  max-width: 620px;
  margin: 18px 0 0;
  font-weight: 700;
  color: rgba(28,28,28,.72);
}
.portfolio {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(232, 125, 144, .28), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(201, 164, 106, .2), transparent 24%),
    linear-gradient(90deg, rgba(201, 164, 106, .13) 1px, transparent 1px),
    linear-gradient(180deg, var(--cream) 0%, #fff8f8 38%, var(--nude) 100%);
  background-size: auto, auto, 72px 72px, auto;
  padding-top: clamp(46px, 5vw, 76px);
}
.portfolio::before {
  content: "portfolio";
  position: absolute;
  right: -2vw;
  top: 18px;
  color: rgba(232, 125, 144, .08);
  font-family: var(--font-title);
  font-size: clamp(5rem, 14vw, 13.5rem);
  line-height: 1;
  pointer-events: none;
}
.portfolio .section-heading {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 720px;
  margin-bottom: 22px;
}
.portfolio .section-heading h2 {
  font-size: clamp(1.95rem, 3.35vw, 3.45rem);
  max-width: 700px;
  line-height: .94;
}
.portfolio .section-heading::after {
  content: attr(data-portfolio-lead);
  display: block;
  max-width: 650px;
  margin-top: 14px;
  padding: 11px 0 0;
  border-top: 1px solid var(--champagne);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.35;
}
.filters {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  max-width: 920px;
}
.filter {
  border: 1px solid rgba(28, 28, 28, .16);
  background: rgba(245, 240, 234, .68);
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(28, 28, 28, .05);
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.filter:hover, .filter:focus-visible { transform: translateY(-2px); border-color: var(--coral); }
.filter.is-active { background: var(--charcoal); color: var(--cream); }
.work-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 82px;
  gap: clamp(12px, 1.6vw, 18px);
  max-width: 1180px;
  margin-inline: auto;
}
.work-card {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  min-height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 20px 55px rgba(28, 28, 28, .1);
  transform: translateY(0) rotate(var(--tilt, 0deg));
  transition: transform .45s ease, box-shadow .45s ease;
}
.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(245, 240, 234, .28), transparent 34%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.work-card:hover {
  transform: translateY(-8px) rotate(var(--tilt, 0deg));
  box-shadow: 0 30px 80px rgba(28, 28, 28, .18);
}
.work-card:hover::before { opacity: 1; }
.work-card:nth-child(1) { --tilt: -1.2deg; }
.work-card:nth-child(2) { --tilt: .8deg; }
.work-card:nth-child(3) { --tilt: 1.1deg; }
.work-card:nth-child(4) { --tilt: -.7deg; }
.work-card:nth-child(5) { --tilt: .5deg; }
.work-card:nth-child(6) { --tilt: -1deg; }
.work-card.featured-work {
  grid-column: span 7;
  grid-row: span 4;
}
.work-card.tall {
  grid-column: span 5;
  grid-row: span 4;
}
.work-card.wide {
  grid-column: span 7;
  grid-row: span 3;
}
.work-art { position: absolute; inset: 0; transition: transform .75s cubic-bezier(.2,.8,.2,1); }
.work-card:hover .work-art { transform: scale(1.035); }
.brand-scene,
.web-scene,
.wellness-scene,
.lucia-scene,
.concept-scene,
.editorial-scene {
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 28px);
}
.brand-scene::before,
.wellness-scene::before,
.lucia-scene::before,
.concept-scene::before,
.editorial-scene::before,
.web-scene::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(245, 240, 234, .34);
  border-radius: 6px;
  pointer-events: none;
}
.cb-scene {
  background:
    linear-gradient(90deg, rgba(28,28,28,.08) 1px, transparent 1px),
    radial-gradient(circle at 52% 42%, rgba(201,164,106,.5), transparent 18%),
    linear-gradient(135deg, var(--sand), var(--cream) 58%, var(--nude));
  background-size: 32px 32px, auto, auto;
}
.scene-logo {
  position: absolute;
  width: min(44%, 178px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(28,28,28,.14));
  animation: sceneFloat 5.5s ease-in-out infinite;
}
.cb-logo { left: 51%; top: 41%; transform: translate(-50%, -50%); }
.scene-palette {
  position: absolute;
  right: 22px;
  top: 22px;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(245, 240, 234, .88);
  border: 1px solid rgba(28,28,28,.1);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(28,28,28,.11);
  animation: paletteDrift 5.8s ease-in-out infinite;
}
.scene-palette span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(28,28,28,.12);
}
.type-strip {
  position: absolute;
  left: 24px;
  bottom: 92px;
  display: grid;
  gap: 2px;
  padding: 13px 15px;
  background: rgba(28,28,28,.84);
  color: var(--cream);
  border-radius: var(--radius);
}
.type-strip b { font-family: var(--font-title); font-size: 1.2rem; }
.type-strip small { font-weight: 800; opacity: .78; }
.browser-frame {
  position: absolute;
  inset: 24px 34px 76px 34px;
  padding: 12px;
  border-radius: 10px;
  background: var(--charcoal);
  box-shadow: 0 28px 60px rgba(28,28,28,.22);
  transform: rotate(-1.4deg);
}
.browser-frame::before {
  content: "";
  display: block;
  height: 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral) 0 16%, var(--champagne) 16% 30%, var(--cream) 30% 100%);
}
.browser-frame img {
  width: 100%;
  height: calc(100% - 20px);
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  opacity: .95;
}
.phone-frame {
  position: absolute;
  right: 22px;
  bottom: 70px;
  width: 28%;
  min-width: 96px;
  aspect-ratio: .56;
  padding: 9px;
  border-radius: 16px;
  background: var(--cream);
  box-shadow: 0 20px 36px rgba(28,28,28,.22);
  transform: rotate(4deg);
  animation: sceneFloat 6.2s ease-in-out infinite .4s;
}
.phone-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 10px; }
.scene-tag,
.floating-chip {
  position: absolute;
  left: 26px;
  top: 24px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--charcoal);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.wellness-scene {
  background:
    linear-gradient(90deg, rgba(247,198,111,.17) 1px, transparent 1px),
    radial-gradient(circle at 22% 30%, rgba(247,198,111,.34), transparent 28%),
    linear-gradient(135deg, #fffdf6, #fff4df 48%, #d9e2c4);
  background-size: 28px 28px, auto, auto;
}
.nutri-logo {
  width: min(21%, 78px);
  left: 18%;
  top: 25%;
}
.soft-card {
  position: absolute;
  right: 20px;
  top: 32px;
  width: 46%;
  min-height: 118px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(201,164,106,.45);
  color: var(--charcoal);
  font-family: var(--font-title);
  font-size: clamp(.95rem, 1.25vw, 1.12rem);
  line-height: 1.05;
  overflow-wrap: normal;
}
.wellness-scene .scene-palette { top: auto; bottom: 92px; right: 22px; }
.lucia-scene {
  background:
    linear-gradient(90deg, rgba(49,73,93,.08) 1px, transparent 1px),
    linear-gradient(135deg, #F7F2ED 0 28%, #D7A6B4 28% 68%, #7893AA 68% 100%);
  background-size: 32px 32px, auto;
  color: #31495D;
}
.lucia-asset {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-height: 62%;
  object-fit: contain;
  opacity: .94;
  border-radius: 7px;
  box-shadow: 0 18px 40px rgba(49,73,93,.16);
}
.paper-note {
  position: absolute;
  left: 22px;
  top: 22px;
  padding: 14px 16px;
  background: rgba(247,242,237,.9);
  border-radius: var(--radius);
  color: #31495D;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .7rem;
  box-shadow: 0 14px 28px rgba(49,73,93,.13);
  animation: noteDrift 6.4s ease-in-out infinite;
}
.brand-words {
  position: absolute;
  left: 22px;
  bottom: 74px;
  max-width: 62%;
  color: #31495D;
  font-family: var(--font-title);
  font-size: clamp(1rem, 1.7vw, 1.55rem);
  line-height: .95;
}
.lucia-scene .scene-palette { bottom: 72px; top: auto; right: 20px; }
.lucia-feature-scene {
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 28px);
  background:
    linear-gradient(90deg, rgba(49,73,93,.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(247,242,237,.92), rgba(247,242,237,.7)),
    radial-gradient(circle at 78% 26%, rgba(215,166,180,.42), transparent 25%),
    radial-gradient(circle at 18% 78%, rgba(120,147,170,.28), transparent 24%),
    #fffaf4;
  background-size: 34px 34px, auto, auto, auto, auto;
}
.lucia-feature-scene::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(49,73,93,.12);
  border-radius: 7px;
  pointer-events: none;
}
.feature-browser {
  position: absolute;
  left: 30px;
  top: 34px;
  width: 66%;
  height: 58%;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(49,73,93,.14);
  box-shadow: 0 24px 54px rgba(49,73,93,.18);
  transform: rotate(-1.4deg);
}
.feature-browser::before {
  content: "";
  display: block;
  height: 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #D7A6B4 0 16%, #7893AA 16% 30%, #F7F2ED 30% 100%);
}
.feature-browser img {
  width: 100%;
  height: calc(100% - 20px);
  object-fit: cover;
  object-position: top left;
  border-radius: 7px;
}
.ebook-peek {
  position: absolute;
  right: 30px;
  top: 78px;
  width: 34%;
  height: 54%;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(215,166,180,.35);
  box-shadow: 0 24px 46px rgba(49,73,93,.18);
  transform: rotate(3deg);
  animation: noteDrift 6.2s ease-in-out infinite .15s;
}
.ebook-peek img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  border-radius: 7px;
}
.logo-badge {
  position: absolute;
  left: 38px;
  bottom: 92px;
  width: 116px;
  height: 92px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(49,73,93,.1);
  box-shadow: 0 18px 34px rgba(49,73,93,.13);
  animation: paletteDrift 5.5s ease-in-out infinite;
}
.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 9px;
}
.project-tags {
  position: absolute;
  right: 30px;
  bottom: 98px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 48%;
}
.project-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(49,73,93,.9);
  color: #fffaf4;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lucia-rings {
  position: absolute;
  right: -32px;
  bottom: -46px;
  width: 220px;
  aspect-ratio: 1;
  border: 28px solid rgba(215,166,180,.34);
  border-radius: 50%;
  box-shadow: -44px -22px 0 rgba(120,147,170,.18);
  animation: slowTurn 18s linear infinite;
}
.concept-scene,
.editorial-scene {
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(245,240,234,.08) 1px, transparent 1px),
    radial-gradient(circle at 84% 18%, rgba(245,240,234,.22), transparent 18%),
    linear-gradient(112deg, var(--charcoal) 0 40%, var(--coral) 40% 68%, var(--champagne) 68% 100%);
  background-size: 30px 30px, auto, auto;
}
.monogram {
  position: absolute;
  left: 24px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-title);
  font-size: 2rem;
  background: rgba(28,28,28,.12);
}
.poster-big {
  position: absolute;
  left: 120px;
  top: 44px;
  font-family: var(--font-title);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: .8;
  opacity: .22;
}
.mini-posts {
  position: absolute;
  right: 34px;
  bottom: 86px;
  display: grid;
  grid-template-columns: repeat(3, 54px);
  gap: 10px;
}
.mini-posts span {
  aspect-ratio: .72;
  border-radius: 6px;
  background: rgba(245,240,234,.78);
  box-shadow: 0 12px 24px rgba(28,28,28,.2);
}
.mini-posts span:nth-child(1) { background: linear-gradient(160deg, var(--cream), var(--coral)); }
.mini-posts span:nth-child(2) { background: linear-gradient(160deg, var(--charcoal), var(--champagne)); }
.mini-posts span:nth-child(3) { background: linear-gradient(160deg, var(--cream), var(--sand)); }
.concept-scene i {
  position: absolute;
  left: 26px;
  bottom: 92px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
}
.type-sample {
  position: absolute;
  right: 34px;
  top: 34px;
  color: inherit;
  text-align: right;
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 2.4vw, 2.4rem);
  line-height: .9;
  opacity: .88;
}
.type-sample small {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.alma-scene .scene-palette { left: 26px; right: auto; top: auto; bottom: 128px; }
.editorial-scene {
  background:
    linear-gradient(90deg, rgba(28,28,28,.06) 1px, transparent 1px),
    radial-gradient(circle at 20% 22%, rgba(232,125,144,.28), transparent 25%),
    linear-gradient(135deg, #f7dfe4, var(--cream) 48%, #d9c5aa 76%, #b9c3ae);
  background-size: 28px 28px, auto, auto;
  color: var(--charcoal);
}
.ebook-mock {
  position: absolute;
  right: 22px;
  top: 26px;
  width: 42%;
  min-height: 150px;
  padding: 20px 16px;
  border-radius: 6px;
  background: var(--cream);
  box-shadow: 0 18px 35px rgba(28,28,28,.14);
  font-family: var(--font-title);
  font-size: 1.2rem;
  transform: rotate(2deg);
  animation: noteDrift 6s ease-in-out infinite .3s;
}
.ebook-mock b { display: block; margin-top: 22px; font-size: 1.55rem; }
.slides-mock {
  position: absolute;
  left: 22px;
  bottom: 92px;
  width: 46%;
  display: grid;
  gap: 9px;
}
.slides-mock span {
  height: 18px;
  border-radius: 999px;
  background: var(--coral);
}
.slides-mock span:nth-child(2) { width: 78%; background: var(--champagne); }
.slides-mock span:nth-child(3) { width: 58%; background: var(--charcoal); }
@keyframes sceneFloat {
  50% { translate: 0 -8px; }
}
@keyframes paletteDrift {
  50% { translate: 0 5px; }
}
@keyframes noteDrift {
  50% { translate: 0 -6px; rotate: -1deg; }
}
@keyframes slowTurn {
  to { rotate: 360deg; }
}
.brand-art { background: radial-gradient(circle at 52% 46%, var(--champagne) 0 6%, transparent 7%), var(--cream); display: grid; place-items: center; }
.brand-art span { font-family: var(--font-title); font-size: 9rem; }
.brand-art i { position: absolute; width: 58%; height: 58%; border: 18px solid var(--charcoal); border-radius: 50%; opacity: .12; }
.web-art { background: var(--charcoal); padding: 36px; display: grid; gap: 18px; align-content: center; }
.web-art span { height: 28px; border-radius: 99px; background: var(--cream); }
.web-art span:nth-child(2) { width: 72%; background: var(--coral); }
.web-art span:nth-child(3) { width: 48%; background: var(--champagne); }
.ebook-art, .wellness-art { background: var(--sand); padding: 40px; display: grid; place-items: center; color: var(--charcoal); }
.ebook-art strong { font-family: var(--font-title); font-size: 4.2rem; }
.ebook-art span { width: 70%; height: 14px; border-radius: 99px; background: var(--cream); }
.wellness-art { background: var(--nude); }
.wellness-art strong { font-family: var(--font-title); font-size: clamp(2.2rem, 4vw, 4rem); }
.wellness-art span { width: 68%; height: 14px; border-radius: 99px; background: var(--champagne); }
.deck-art, .social-art { display: grid; gap: 12px; padding: 34px; background: var(--nude); }
.deck-art span, .social-art span { border-radius: var(--radius); background: var(--cream); border: 1px solid rgba(28,28,28,.12); }
.social-art { grid-template-columns: repeat(3, 1fr); background: var(--cream); }
.social-art span:nth-child(2) { background: var(--coral); }
.social-art span:nth-child(3) { background: var(--sand); }
.work-meta {
  position: absolute;
  left: 18px;
  right: auto;
  bottom: 18px;
  z-index: 3;
  width: min(78%, 310px);
  padding: 14px 16px 13px;
  background: rgba(255, 250, 244, .88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(28, 28, 28, .1);
  border-radius: 7px;
  box-shadow: 0 16px 34px rgba(28, 28, 28, .12);
  color: var(--charcoal);
}
.work-meta p { margin: 0 0 8px; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.work-meta h3 { font-size: clamp(1.35rem, 1.9vw, 2rem); }
.text-button { border: 0; background: transparent; color: var(--charcoal); padding: 7px 0 0; cursor: pointer; font-weight: 800; text-decoration: underline; }

/* Portfolio reset: cleaner case-study cards */
.work-grid {
  grid-auto-rows: auto;
  gap: clamp(12px, 1.6vw, 19px);
  align-items: stretch;
}
.work-card.case-card,
.work-card.case-card.tall,
.work-card.case-card.wide,
.work-card.case-card.featured-work {
  display: grid;
  grid-column: span 6;
  grid-row: auto;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, .85fr);
  gap: 12px;
  min-height: 312px;
  padding: 12px;
  border: 1px solid rgba(28, 28, 28, .1);
  border-radius: 8px;
  background: rgba(255, 250, 244, .82);
  box-shadow: 0 18px 44px rgba(28, 28, 28, .08);
  transform: translateY(0);
}
.work-card.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(28, 28, 28, .13);
}
.work-card.case-small {
  grid-column: span 4;
  grid-template-columns: 1fr;
  min-height: 0;
}
.work-card.case-feature { grid-template-columns: minmax(0, 1fr) minmax(210px, .96fr); }
.work-card.case-small .work-art { min-height: 205px; }
.work-card.case-small .case-visual {
  height: 205px;
  min-height: 205px;
  grid-template-rows: minmax(0, 1fr) 54px;
}
.work-card.case-small .case-main { height: 139px; }
.work-card.case-small .work-meta { min-height: 152px; }
.work-card.cb-feature {
  grid-column: span 8;
  grid-template-columns: minmax(0, 1.1fr) minmax(230px, .62fr);
  min-height: 344px;
}
.case-card .work-art {
  position: relative;
  inset: auto;
  min-height: 100%;
  border-radius: 7px;
  overflow: hidden;
  transition: transform .65s ease;
}
.case-card:hover .work-art { transform: translateY(-3px); }
.case-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 70px;
  gap: 8px;
  padding: 8px;
  background:
    linear-gradient(90deg, rgba(201,164,106,.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(245,240,234,.76));
  background-size: 34px 34px, auto;
}
.case-main,
.case-strip img,
.brand-board > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-main {
  border-radius: 6px;
  border: 1px solid rgba(28,28,28,.08);
  box-shadow: 0 14px 28px rgba(28,28,28,.08);
  object-position: top center;
}
.case-feature .case-main {
  object-fit: contain;
  background: rgba(255,250,244,.88);
}
.case-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  min-height: 0;
}
.case-strip img {
  border-radius: 6px;
  border: 1px solid rgba(28,28,28,.08);
  object-position: top center;
}
.case-palette {
  position: absolute;
  right: 14px;
  top: 14px;
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,250,244,.86);
  border: 1px solid rgba(28,28,28,.1);
  box-shadow: 0 12px 24px rgba(28,28,28,.1);
}
.case-palette span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(28,28,28,.12);
}
.case-card .work-meta,
.case-copy {
  position: relative;
  inset: auto;
  z-index: 1;
  display: flex;
  width: auto;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(15px, 1.8vw, 22px);
  border: 0;
  border-radius: 7px;
  background:
    radial-gradient(circle at 82% 18%, rgba(232,125,144,.18), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(245,240,234,.92));
  box-shadow: none;
  color: var(--charcoal);
}
.case-copy p {
  margin: 0 0 8px;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.case-copy h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.05vw, 2.18rem);
  line-height: .9;
  overflow-wrap: normal;
}
.nutri-case .case-copy h3 { font-size: clamp(1.48rem, 1.9vw, 1.98rem); }
.case-copy span {
  display: block;
  margin-top: 12px;
  max-width: 28ch;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(28,28,28,.72);
}
.case-copy .text-button {
  align-self: flex-start;
  margin-top: 16px;
}
.nutri-case .case-visual {
  background:
    linear-gradient(90deg, rgba(142,106,189,.08) 1px, transparent 1px),
    linear-gradient(135deg, #f8f0e8, #ffffff 46%, #eef5f2);
  background-size: 34px 34px, auto;
}
.lucia-visual {
  background:
    linear-gradient(90deg, rgba(49,73,93,.07) 1px, transparent 1px),
    linear-gradient(135deg, #f8f4ef, #fff 52%, #f5e3e9);
  background-size: 34px 34px, auto;
}
.claudio-visual {
  background:
    linear-gradient(90deg, rgba(32,58,50,.08) 1px, transparent 1px),
    linear-gradient(135deg, #f4efe2, #ffffff 44%, #d9c194);
  background-size: 34px 34px, auto;
}
.claudio-visual .case-main {
  object-position: center top;
  filter: saturate(.96) contrast(1.04);
}
.brand-board {
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(245,240,234,.08) 1px, transparent 1px),
    radial-gradient(circle at 43% 40%, rgba(201,164,106,.38), transparent 18%),
    radial-gradient(circle at 76% 18%, rgba(232,125,144,.22), transparent 20%),
    linear-gradient(135deg, #191817, #2c2926 52%, #746347);
  background-size: 34px 34px, auto, auto, auto;
  color: var(--cream);
}
.cb-logo-lab {
  position: absolute;
  left: clamp(18px, 3vw, 30px);
  top: clamp(18px, 3vw, 28px);
  width: min(52%, 340px);
  display: grid;
  grid-template-columns: 1.05fr .82fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  transform: rotate(-2deg);
}
.cb-logo-tile {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(245,240,234,.2);
  box-shadow: 0 22px 46px rgba(0,0,0,.22);
  overflow: hidden;
  animation: cbTileFloat 6s ease-in-out infinite;
}
.cb-logo-tile img {
  width: min(84%, 148px);
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(28,28,28,.18));
}
.cb-logo-cream {
  grid-row: span 2;
  min-height: 228px;
  background:
    radial-gradient(circle at 50% 45%, rgba(201,164,106,.25), transparent 35%),
    #F5F0EA;
}
.cb-logo-dark {
  background: #141414;
  animation-delay: .35s;
}
.cb-logo-dark img {
  filter: invert(1) brightness(1.4) sepia(.12) drop-shadow(0 14px 22px rgba(0,0,0,.2));
}
.cb-logo-coral {
  background:
    linear-gradient(135deg, #E87D90, #F1D6DA 58%, #C9A46A);
  animation-delay: .7s;
}
.cb-stationery {
  position: absolute;
  right: 22px;
  top: 32px;
  width: min(38%, 210px);
  min-height: 148px;
  padding: 18px;
  border-radius: 7px;
  background: linear-gradient(160deg, rgba(255,250,244,.96), rgba(241,214,218,.9));
  color: var(--charcoal);
  box-shadow: -18px 22px 0 rgba(201,164,106,.35), 0 22px 42px rgba(0,0,0,.22);
  transform: rotate(3deg);
  animation: noteDrift 6.4s ease-in-out infinite .2s;
}
.cb-stationery span,
.cb-stationery small {
  display: block;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cb-stationery strong {
  display: block;
  margin: 36px 0 8px;
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: .88;
}
.cb-spark {
  position: absolute;
  left: 49%;
  top: 48%;
  width: 58px;
  aspect-ratio: 1;
  background: var(--champagne);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  filter: drop-shadow(0 0 18px rgba(201,164,106,.65));
  animation: sceneFloat 4.8s ease-in-out infinite;
}
.cb-brand-ribbon {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 78px;
  padding: 10px 12px;
  border-block: 1px solid rgba(245,240,234,.2);
  color: rgba(245,240,234,.84);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}
.cb-brand-ribbon::before {
  content: "Logo · Paleta · Web · Ebook · Presentación · Logo · Paleta · Web · Ebook · Presentación ·";
  display: block;
  animation: miniRibbon 13s linear infinite;
}
.cb-brand-ribbon { font-size: 0; }
.cb-brand-ribbon::before { font-size: .68rem; }
@keyframes cbTileFloat {
  50% { transform: translateY(-7px) rotate(1deg); }
}
@keyframes miniRibbon {
  to { transform: translateX(-50%); }
}
.brand-type {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 7px;
  background: rgba(255,250,244,.14);
  border: 1px solid rgba(245,240,234,.22);
  color: var(--cream);
  font-family: var(--font-title);
  line-height: .95;
}
.brand-type small {
  font-family: var(--font-body);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.concept-board {
  min-height: 205px;
  background:
    linear-gradient(90deg, rgba(245,240,234,.1) 1px, transparent 1px),
    linear-gradient(135deg, var(--charcoal), #3b3030 48%, var(--coral));
  background-size: 30px 30px, auto;
  color: var(--cream);
}
.alma-scene {
  background:
    linear-gradient(90deg, rgba(244,238,226,.09) 1px, transparent 1px),
    radial-gradient(circle at 80% 18%, rgba(243,211,107,.36), transparent 24%),
    linear-gradient(135deg, #203A32 0 48%, #C66B4E 48% 72%, #F4EEE2 72% 100%);
  background-size: 28px 28px, auto, auto;
  color: #F4EEE2;
}
.alma-logo {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 112px;
  height: 92px;
  border-radius: 8px 42px 8px 8px;
  background:
    radial-gradient(circle at 78% 26%, #F3D36B 0 12%, transparent 13%),
    linear-gradient(135deg, rgba(244,238,226,.96), rgba(244,238,226,.72));
  color: #203A32;
  box-shadow: 12px 16px 0 rgba(32,58,50,.2);
  overflow: hidden;
  transform: rotate(-2deg);
  animation: noteDrift 6.4s ease-in-out infinite;
}
.alma-logo::before {
  content: "";
  position: absolute;
  left: -30px;
  bottom: -34px;
  width: 94px;
  height: 94px;
  border: 16px solid #C66B4E;
  border-radius: 50%;
  opacity: .92;
}
.alma-logo::after {
  content: "alma brava";
  position: absolute;
  right: 10px;
  bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .44rem;
  font-weight: 900;
}
.alma-logo span {
  position: absolute;
  font-family: var(--font-title);
  line-height: .78;
}
.alma-logo span:nth-child(1) {
  left: 20px;
  top: 14px;
  font-size: 3.85rem;
}
.alma-logo span:nth-child(2) {
  left: 44px;
  top: 27px;
  font-size: 4rem;
  color: #C66B4E;
  mix-blend-mode: multiply;
}
.alma-logo i {
  position: absolute;
  right: 15px;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 8px;
  background: #203A32;
  transform: rotate(45deg);
}
.alma-scene .poster-big {
  left: 24px;
  top: 96px;
  max-width: 72%;
  color: #F4EEE2;
  opacity: .9;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}
.alma-label {
  position: absolute;
  right: 18px;
  top: 76px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .54rem;
  font-weight: 900;
  color: #203A32;
}
.editorial-posts {
  right: 18px;
  bottom: 18px;
  grid-template-columns: repeat(3, 37px);
}
.alma-scene .mini-posts span:nth-child(1) { background: linear-gradient(160deg, #F4EEE2, #F3D36B); }
.alma-scene .mini-posts span:nth-child(2) { background: linear-gradient(160deg, #203A32, #C66B4E); }
.alma-scene .mini-posts span:nth-child(3) { background: linear-gradient(160deg, #C66B4E, #F4EEE2); }
.concept-board .poster-big {
  left: 108px;
  top: 46px;
  max-width: 58%;
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
  opacity: .3;
}
.concept-board .mini-posts { bottom: 28px; }
.concept-board .ebook-mock { top: 48px; right: 28px; }
.concept-board .slides-mock { bottom: 30px; }
.lirio-scene {
  background:
    linear-gradient(90deg, rgba(49,73,93,.06) 1px, transparent 1px),
    radial-gradient(circle at 82% 24%, rgba(236,226,255,.82), transparent 24%),
    linear-gradient(135deg, #B8D7D2 0 36%, #FFF8EA 36% 68%, #F6B8C8 68% 100%);
  background-size: 30px 30px, auto;
  color: #31495D;
}
.lirio-logo {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 146px;
  min-height: 86px;
  padding: 14px 14px 12px 62px;
  border-radius: 52px 8px 52px 8px;
  background: rgba(255,248,234,.86);
  color: #31495D;
  border: 1px solid rgba(49,73,93,.16);
  box-shadow: 0 16px 36px rgba(49,73,93,.12);
  transform: rotate(-1.5deg);
  animation: paletteDrift 7s ease-in-out infinite;
}
.lirio-logo::before,
.lirio-logo::after,
.lirio-logo i {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 30px;
  height: 40px;
  border-radius: 50% 50% 50% 8px;
  transform-origin: 50% 78%;
}
.lirio-logo::before {
  background: #B8D7D2;
  transform: rotate(-24deg);
}
.lirio-logo i {
  background: #F6B8C8;
  transform: rotate(18deg);
}
.lirio-logo::after {
  left: 30px;
  top: 16px;
  width: 24px;
  height: 48px;
  background: #ECE2FF;
  transform: rotate(2deg);
}
.lirio-logo span,
.lirio-logo strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-title);
  line-height: .92;
}
.lirio-logo span { font-size: 1.08rem; }
.lirio-logo strong { font-size: 1.62rem; }
.lirio-book {
  position: absolute;
  right: 20px;
  top: 34px;
  width: 40%;
  min-height: 134px;
  padding: 16px 13px;
  border-radius: 7px;
  background: rgba(255,248,234,.92);
  box-shadow: 0 18px 35px rgba(49,73,93,.13);
  font-family: var(--font-title);
  font-size: .98rem;
  transform: rotate(2deg);
}
.lirio-book b {
  display: block;
  margin-top: 16px;
  font-size: 1.18rem;
  line-height: .92;
}
.lirio-book small {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lirio-slides {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: grid;
  gap: 6px;
  width: 44%;
}
.lirio-slides span {
  height: 13px;
  border-radius: 999px;
  background: #31495D;
}
.lirio-slides span:nth-child(2) { width: 78%; background: #F6B8C8; }
.lirio-slides span:nth-child(3) { width: 56%; background: #8DBBB5; }
.lirio-flower {
  position: absolute;
  left: 76px;
  top: 72px;
  width: 66px;
  aspect-ratio: 1;
  border-radius: 60% 40% 60% 40%;
  background: rgba(246,184,200,.82);
  box-shadow: 28px 10px 0 rgba(236,226,255,.86), 12px 34px 0 rgba(184,215,210,.9);
  transform: rotate(18deg);
  animation: noteDrift 6s ease-in-out infinite;
}
.service-grid, .plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.service-card, .plan-card {
  border: 1px solid rgba(245,240,234,.18);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card span, .process-list span { color: var(--champagne); font-family: var(--font-title); font-size: 2rem; }
.service-card a { margin-top: auto; font-weight: 800; color: var(--coral); }
.services-simple {
  background:
    radial-gradient(circle at 88% 8%, rgba(232,125,144,.18), transparent 24%),
    linear-gradient(90deg, rgba(201,164,106,.12) 1px, transparent 1px),
    var(--cream);
  background-size: auto, 72px 72px, auto;
}
.services-simple .section-heading {
  max-width: 1180px;
  display: block;
  margin-bottom: 22px;
}
.services-simple .section-heading h2 {
  max-width: none;
  font-size: clamp(2rem, 3.05vw, 3.1rem);
  line-height: .94;
}
.services-simple .section-lead {
  max-width: none;
  margin: 12px 0 0;
  font-size: clamp(.92rem, 1.04vw, 1rem);
}
.service-plan-grid {
  align-items: stretch;
}
.services-simple .plan-card {
  background: rgba(255,250,244,.78);
  box-shadow: 0 18px 44px rgba(28,28,28,.08);
}
.services-simple .plan-card.featured {
  box-shadow: 0 24px 70px rgba(28,28,28,.18);
}
.service-addons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.service-addons article {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(28,28,28,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.42);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-addons article::before {
  content: "";
  position: absolute;
  inset: auto -12% 18px auto;
  z-index: 0;
  width: 64%;
  height: 20px;
  border-radius: 999px;
  background: var(--addon-line, var(--coral));
  transform: rotate(-5deg);
  opacity: .9;
  animation: addonLine 5.8s ease-in-out infinite;
}
.service-addons article::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 0;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--addon-line, var(--coral)) 34%, transparent);
  animation: addonDot 6.4s ease-in-out infinite;
}
.service-addons article:nth-child(1) { --addon-line: #E87D90; }
.service-addons article:nth-child(2) { --addon-line: #C9A46A; }
.service-addons article:nth-child(3) { --addon-line: #79AEB0; }
.service-addons article:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--addon-line, var(--coral)) 55%, rgba(28,28,28,.12));
  box-shadow: 0 22px 54px rgba(28,28,28,.1);
}
.service-addons article:hover::before {
  width: 78%;
  opacity: 1;
}
.service-addons h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.service-addons p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: .96rem;
  color: rgba(28,28,28,.72);
}
.service-addons strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-title);
  font-size: 1.45rem;
}
@keyframes addonLine {
  50% { transform: translateX(-18px) rotate(-3deg); }
}
@keyframes addonDot {
  50% { transform: translate(-12px, 8px) scale(1.16); }
}
.therapist-copy {
  max-width: 680px;
  align-self: center;
}
.therapist-copy h2 {
  font-size: clamp(1.9rem, 3.78vw, 3.92rem);
}
.therapist-copy p {
  max-width: 62ch;
  font-size: clamp(.95rem, 1.26vw, 1.06rem);
}
.therapist-copy .button {
  margin-top: 10px;
  padding: 13px 22px;
  font-size: .95rem;
}
.transform-board {
  min-height: 378px;
  position: relative;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(232,125,144,.35), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(121,174,176,.28), transparent 26%),
    linear-gradient(90deg, rgba(201,164,106,.12) 1px, transparent 1px),
    linear-gradient(180deg, #F6DCE1 0%, #F9E8E6 54%, #F5F0EA 100%);
  background-size: auto, auto, 42px 42px, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.transform-board::before {
  content: "orden";
  position: absolute;
  left: 34px;
  bottom: 12px;
  color: rgba(28,28,28,.05);
  font-family: var(--font-title);
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  line-height: 1;
}
.board-thread {
  position: absolute;
  left: 18%;
  right: 14%;
  top: 48%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #E87D90, #C9A46A, #79AEB0, #1C1C1C);
  transform: rotate(-8deg);
  box-shadow: 0 0 28px rgba(232,125,144,.26);
  animation: threadSlide 4.8s ease-in-out infinite;
}
.note {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 128px;
  background: rgba(255,250,244,.92);
  border: 1px solid rgba(28,28,28,.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(28,28,28,.1);
  animation: float 5s ease-in-out infinite;
}
.note span { font-size: .94rem; }
.note small {
  max-width: 16ch;
  color: rgba(28,28,28,.58);
  font-size: .6rem;
  font-weight: 800;
  line-height: 1.25;
}
.n1 { left: 9%; top: 15%; transform: rotate(-7deg); border-left: 12px solid #E87D90; }
.n2 { right: 9%; top: 17%; animation-delay: .7s; transform: rotate(6deg); border-left: 12px solid #C9A46A; }
.n3 { left: 14%; bottom: 16%; animation-delay: 1.2s; transform: rotate(4deg); border-left: 12px solid #79AEB0; }
.map-card {
  position: absolute;
  left: 36%;
  top: 18%;
  width: 160px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(28,28,28,.9);
  color: var(--cream);
  box-shadow: 0 20px 44px rgba(28,28,28,.18);
  transform: rotate(-2deg);
  animation: noteDrift 5.6s ease-in-out infinite .25s;
}
.map-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.map-card i {
  display: block;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(245,240,234,.82);
}
.map-card i:nth-child(3) { width: 72%; background: var(--champagne); }
.map-card i:nth-child(4) { width: 48%; background: var(--coral); }
.product-shape {
  position: absolute;
  right: 10%;
  bottom: 12%;
  width: min(252px, 55%);
  min-height: 207px;
  display: grid;
  place-items: center;
  text-align: center;
  align-content: center;
  gap: 10px;
  padding: 22px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: 18px 18px 0 var(--champagne), 0 28px 64px rgba(28,28,28,.22);
  animation: productPulse 6.2s ease-in-out infinite;
}
.product-shape span,
.product-shape small {
  font-family: var(--font-body);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.product-shape span { color: var(--coral); font-size: .68rem; }
.product-shape strong {
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 1.95vw, 1.85rem);
  line-height: .98;
  max-width: 100%;
}
.product-shape small {
  max-width: 20ch;
  color: rgba(245,240,234,.74);
  font-size: .62rem;
  line-height: 1.35;
}
.mini-output {
  position: absolute;
  min-width: 74px;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(255,250,244,.86);
  border: 1px solid rgba(28,28,28,.12);
  box-shadow: 0 14px 28px rgba(28,28,28,.09);
  font-size: .65rem;
  font-weight: 900;
  text-align: center;
  animation: float 5.4s ease-in-out infinite;
}
.o1 { right: 36%; bottom: 18%; color: #E87D90; animation-delay: .4s; }
.o2 { right: 28%; top: 36%; color: #79AEB0; animation-delay: .9s; }
.o3 { right: 7%; top: 52%; color: #C9A46A; animation-delay: 1.4s; }
@keyframes threadSlide {
  50% { transform: translateX(18px) rotate(-5deg); filter: saturate(1.2); }
}
@keyframes productPulse {
  50% { transform: translateY(-8px); box-shadow: 12px 24px 0 var(--champagne), 0 36px 70px rgba(28,28,28,.24); }
}
@keyframes float { 50% { translate: 0 -14px; } }
.therapist-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 1044px;
  margin: -28px auto 0;
}
.therapist-points span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  border: 1px solid rgba(28,28,28,.14);
  border-radius: var(--radius);
  padding: 12px 22px 12px 54px;
  background: rgba(255,250,244,.58);
  font-weight: 800;
  font-size: .92rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(28,28,28,.055);
  animation: pointLift 6.2s ease-in-out infinite;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.therapist-points span::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 42px;
  height: 112%;
  border-radius: 999px;
  background: var(--point-color, var(--coral));
  transform: translateY(-50%) rotate(8deg);
  opacity: .9;
}
.therapist-points span::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 12px;
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: var(--point-color, var(--coral));
  opacity: .35;
}
.therapist-points span:nth-child(1) { --point-color: #E87D90; animation-delay: 0s; }
.therapist-points span:nth-child(2) { --point-color: #C9A46A; animation-delay: .35s; }
.therapist-points span:nth-child(3) { --point-color: #79AEB0; animation-delay: .7s; }
.therapist-points span:nth-child(4) { --point-color: #D7A6B4; animation-delay: 1.05s; }
.therapist-points span:nth-child(5) { --point-color: #8E6ABD; animation-delay: 1.4s; }
.therapist-points span:nth-child(6) { --point-color: #C66B4E; animation-delay: 1.75s; }
.therapist-points span:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--point-color, var(--coral)) 55%, rgba(28,28,28,.14));
  box-shadow: 0 18px 42px rgba(28,28,28,.09);
}
@keyframes pointLift {
  50% { translate: 0 -5px; }
}
.process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 24%, rgba(232,125,144,.2), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(121,174,176,.2), transparent 24%),
    linear-gradient(180deg, #F1D6DA 0%, #F6E1E4 52%, #F5F0EA 100%);
}
.process::before {
  content: "01 02 03 04 05";
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: max-content;
  color: rgba(28,28,28,.04);
  font-family: var(--font-title);
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 1;
  pointer-events: none;
}
.process .section-heading {
  position: relative;
  z-index: 1;
  max-width: 1060px;
}
.process .section-heading h2 {
  max-width: 980px;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}
.process-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.process-list::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #E87D90, #C9A46A, #79AEB0, #8E6ABD, #C66B4E);
  box-shadow: 0 0 28px rgba(232,125,144,.22);
  animation: processLine 5.5s ease-in-out infinite;
}
.process-list li {
  --process-color: var(--coral);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 205px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(28,28,28,.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,250,244,.68), rgba(255,250,244,.38)),
    radial-gradient(circle at 86% 14%, color-mix(in srgb, var(--process-color) 28%, transparent), transparent 24%);
  box-shadow: 0 18px 44px rgba(28,28,28,.075);
  overflow: hidden;
  animation: processFloat 6.6s ease-in-out infinite;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 9px;
  background: var(--process-color);
}
.process-list li::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -20px;
  width: 86px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--process-color) 28%, transparent);
}
.process-list li:nth-child(1) { --process-color: #E87D90; animation-delay: 0s; }
.process-list li:nth-child(2) { --process-color: #C9A46A; animation-delay: .28s; }
.process-list li:nth-child(3) { --process-color: #79AEB0; animation-delay: .56s; }
.process-list li:nth-child(4) { --process-color: #8E6ABD; animation-delay: .84s; }
.process-list li:nth-child(5) { --process-color: #C66B4E; animation-delay: 1.12s; }
.process-list li:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--process-color) 55%, rgba(28,28,28,.12));
  box-shadow: 0 26px 64px rgba(28,28,28,.12);
}
.process-list span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--process-color);
  color: var(--charcoal);
  font-family: var(--font-title);
  font-size: 1.55rem;
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(255,250,244,.56);
}
.process-list h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 2.1vw, 2.1rem);
  line-height: .95;
}
.process-list p {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  color: rgba(28,28,28,.72);
  font-size: .98rem;
  font-weight: 650;
}
@keyframes processLine {
  50% { transform: translateY(4px); filter: saturate(1.22); }
}
@keyframes processFloat {
  50% { translate: 0 -6px; }
}
.plan-grid { grid-template-columns: repeat(3, minmax(230px, 1fr)); overflow: visible; padding-bottom: 12px; }
.plan-card {
  border-color: rgba(28,28,28,.14);
  background: rgba(255,255,255,.35);
  min-height: 414px;
  padding: 22px;
  gap: 13px;
}
.plan-card.featured { background: var(--charcoal); color: var(--cream); transform: translateY(-10px); }
.plan-card em { align-self: flex-start; background: var(--coral); color: var(--charcoal); border-radius: var(--radius); padding: 6px 10px; font-style: normal; font-weight: 900; }
.plan-card ul { padding-left: 18px; margin: 0; }
.plan-card h3 { font-size: clamp(1.45rem, 1.75vw, 1.95rem); }
.plan-card p, .plan-card li { font-size: .94rem; }
.plan-card strong { margin-top: auto; font-family: var(--font-title); font-size: 1.92rem; }
.plan-card small { min-height: 36px; font-size: .82rem; }
.about-image {
  position: relative;
  width: 100%;
  justify-self: center;
  min-height: 320px;
  max-width: 390px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--nude), var(--sand));
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,28,28,0) 48%, rgba(28,28,28,.52) 100%),
    radial-gradient(circle at 18% 18%, rgba(235,116,141,.18), transparent 34%);
  pointer-events: none;
}
.about-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(.98) contrast(1.02);
}
.about-image-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(28,28,28,.82);
  color: var(--cream);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(0,0,0,.22);
}
.about-copy p { color: rgba(245,240,234,.82); }
.final-cta {
  background: var(--coral);
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--charcoal);
}
.contact-strip {
  grid-column: 1 / -1;
  width: 100%;
  padding: clamp(14px, 2vw, 24px);
  margin-bottom: clamp(12px, 2vw, 22px);
  border-radius: var(--radius);
  background: var(--coral);
  color: var(--charcoal);
  text-align: center;
  box-shadow: 0 22px 60px rgba(232,125,144,.22);
}
.contact-strip h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.25rem, 2.1vw, 2.15rem);
  line-height: .98;
}
.script { font-family: var(--font-title); font-size: clamp(1.1rem, 2.1vw, 1.85rem); color: var(--cream); margin: 0 0 5px; }
#contacto {
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(34px, 4vw, 58px);
  gap: clamp(18px, 3vw, 42px);
}
#contacto .contact-copy h2 {
  font-size: clamp(2rem, 3.25vw, 3.35rem);
}
#contacto .contact-copy p:not(.eyebrow) {
  max-width: 58ch;
  font-size: clamp(.92rem, 1.05vw, 1rem);
}
.contact-form {
  display: grid;
  gap: 10px;
  background: var(--nude);
  padding: clamp(16px, 2.2vw, 26px);
  border-radius: var(--radius);
}
.contact-form label { display: grid; gap: 5px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(28,28,28,.2);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: var(--cream);
  color: var(--charcoal);
}
.site-footer {
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--cream);
}
.footer-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px 28px;
  align-items: center;
}
.footer-brand {
  grid-row: span 2;
  width: 74px;
  opacity: .92;
}
.site-footer img { width: 100%; filter: invert(1); }
.site-footer nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}
.site-footer a {
  text-decoration: none;
  color: rgba(245,240,234,.82);
  font-size: .94rem;
  font-weight: 700;
}
.site-footer a:hover { color: var(--coral); }
.footer-links {
  color: rgba(245,240,234,.62);
}
.footer-links a {
  font-size: .86rem;
  font-weight: 650;
}
.footer-links .footer-mail {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(232,125,144,.18);
  border: 1px solid rgba(232,125,144,.34);
  color: var(--cream);
}
.footer-links .footer-mail:hover {
  background: var(--coral);
  color: var(--charcoal);
}
.legal {
  grid-column: 2;
  margin: 2px 0 0;
  color: rgba(245,240,234,.52);
  font-size: .78rem;
  font-weight: 650;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 22%, rgba(255,255,255,.46), transparent 22%),
    linear-gradient(135deg, #EE8598 0%, var(--coral) 70%, #D96880 100%);
  color: var(--charcoal);
  text-decoration: none;
  border: 1px solid rgba(245,240,234,.82);
  box-shadow:
    0 14px 34px rgba(232,125,144,.32),
    0 7px 16px rgba(28,28,28,.18);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  animation: whatsappGlow 4.6s ease-in-out infinite;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(120deg, transparent 38%, rgba(255,255,255,.36) 50%, transparent 62%);
  transform: translateX(-70%) rotate(16deg);
  animation: whatsappShine 6.2s ease-in-out infinite;
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.34);
  pointer-events: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: 0 22px 46px rgba(28,28,28,.24), 0 10px 22px rgba(235,116,141,.26);
}
.whatsapp-float svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  fill: currentColor;
  display: block;
}
@keyframes whatsappGlow {
  50% {
    box-shadow:
      0 16px 38px rgba(232,125,144,.4),
      0 7px 16px rgba(28,28,28,.18);
  }
}
@keyframes whatsappShine {
  0%, 55% { transform: translateX(-78%) rotate(16deg); }
  78%, 100% { transform: translateX(78%) rotate(16deg); }
}
.project-modal {
  width: min(780px, calc(100% - 28px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--cream);
  color: var(--charcoal);
}
.project-modal::backdrop { background: rgba(28,28,28,.65); }
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
}
.modal-body { padding: clamp(28px, 5vw, 56px); }
.modal-body h3 { font-size: clamp(2.3rem, 5vw, 4rem); margin-bottom: 12px; }
.modal-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 24px; }
.modal-columns div { background: var(--nude); border-radius: var(--radius); padding: 18px; }
.modal-link { margin-top: 22px; }
.empty-state {
  margin: 20px 0 0;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--nude);
  font-weight: 800;
}
.swatches { display: flex; gap: 8px; margin-top: 12px; }
.swatches span { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(28,28,28,.12); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.cursor-dot {
  position: fixed;
  width: 18px;
  height: 18px;
  border: 1px solid var(--coral);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  translate: -50% -50%;
  opacity: 0;
}
@media (pointer: fine) { .cursor-dot { opacity: 1; } }
@media (max-width: 1050px) {
  .site-header {
    justify-content: flex-end;
    gap: 10px;
    pointer-events: auto;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    padding: 100px 24px 40px;
    display: grid;
    align-content: start;
    transform: translateX(100%);
    transition: transform .35s ease;
    font-size: 1.35rem;
    border-radius: 0;
    pointer-events: auto;
  }
  body.nav-open .site-nav { transform: translateX(0); }
  .menu-toggle { display: block; z-index: 110; pointer-events: auto; }
  body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .language-switch {
    justify-self: auto;
    width: fit-content;
    margin-top: 0;
    z-index: 109;
  }
  .hero, .intro-grid, .origin-grid, .therapists, .about, .contact { grid-template-columns: 1fr; }
  .therapist-copy {
    max-width: 820px;
  }
  .origin-visual { min-height: 500px; }
  .origin-story h2 { max-width: 820px; }
  .transform-board { min-height: 414px; }
  .service-grid, .process-list, .plan-grid, .service-addons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-simple .section-heading { margin-bottom: 24px; }
  .services-simple .section-lead {
    margin-top: 8px;
  }
  .portfolio .section-heading { grid-template-columns: 1fr; }
  .portfolio .section-heading::after { max-width: 520px; }
  .work-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: 96px; }
  .work-card, .work-card.tall, .work-card.wide { grid-column: span 3; grid-row: span 3; }
  .work-card.featured-work { grid-column: span 6; grid-row: span 4; }
  .feature-browser { width: 68%; height: 56%; }
  .ebook-peek { width: 32%; height: 50%; top: 84px; }
  .logo-badge { width: 104px; height: 82px; }
  .cb-logo-lab { width: min(58%, 330px); }
  .cb-logo-tile { min-height: 92px; }
  .cb-logo-cream { min-height: 194px; }
  .cb-stationery { width: min(38%, 190px); min-height: 132px; }
}
@media (min-width: 1051px) and (max-height: 800px) {
  .hero { padding-top: 150px; }
  .hero-logo { width: 120px; margin-bottom: 12px; }
  .hero-copy .eyebrow { margin-bottom: 10px; }
  .hero h1 { font-size: clamp(2.7rem, 4.9vw, 4.75rem); }
  .hero-text { margin: 12px 0 0; }
  .hero-actions { margin-top: 36px; }
  .hero-stage { min-height: 520px; }
}
@media (max-width: 700px) {
  .site-header { height: 72px; }
  .brand {
    top: 12px;
    left: 14px;
    width: 82px;
    height: 82px;
    padding: 12px;
    border-radius: 50%;
  }
  .brand img { width: 58px; height: 58px; }
  .language-switch {
    padding: 4px;
    box-shadow: 0 12px 28px rgba(28,28,28,.08);
  }
  .language-switch button {
    min-width: 34px;
    min-height: 34px;
    font-size: .68rem;
  }
  .section-cream, .section-nude, .section-charcoal, .final-cta, .contact { padding: 66px 18px; }
  #contacto { padding-top: 42px; padding-bottom: 42px; }
  .origin-grid { gap: 32px; }
  .origin-story h2 {
    font-size: clamp(2.15rem, 9.5vw, 3.05rem);
    line-height: .94;
  }
  .origin-story p { font-size: 1rem; }
  .origin-actions { margin-top: 26px; }
  .origin-visual {
    min-height: 0;
    display: grid;
    gap: 12px;
  }
  .origin-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    min-height: 0;
    animation: none;
  }
  .origin-card strong { font-size: clamp(1.65rem, 8vw, 2.4rem); }
  .origin-orbit,
  .origin-thread { display: none; }
  .transform-board { min-height: 504px; }
  .board-thread {
    left: 15%;
    right: 12%;
    top: 45%;
  }
  .note {
    min-width: 112px;
    padding: 11px 13px;
  }
  .note span { font-size: .84rem; }
  .note small { font-size: .56rem; }
  .n1 { left: 8%; top: 9%; }
  .n2 { right: 7%; top: 16%; }
  .n3 { left: 8%; bottom: 28%; }
  .map-card {
    left: 26%;
    top: 31%;
    width: 134px;
    padding: 13px;
  }
  .product-shape {
    right: 8%;
    bottom: 8%;
    width: 72%;
    min-height: 171px;
    padding: 18px;
  }
  .mini-output {
    min-width: 65px;
    padding: 7px 9px;
    font-size: .58rem;
  }
  .o1 { right: 55%; bottom: 19%; }
  .o2 { right: 11%; top: 43%; }
  .o3 { right: 8%; top: 55%; }
  .hero { padding-top: 122px; min-height: auto; }
  .hero-copy { transform: none; }
  h1 { font-size: clamp(2.55rem, 11.5vw, 3.8rem); }
  .portfolio .section-heading {
    max-width: 100%;
    overflow: hidden;
  }
  .portfolio .section-heading h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 10vw, 2.65rem);
    line-height: .94;
    overflow-wrap: normal;
    word-break: normal;
  }
  .portfolio .section-heading::after {
    max-width: 100%;
  }
  .hero-stage { min-height: 390px; margin-top: 14px; }
  .hero-image-stage { min-height: 330px; margin-top: 24px; }
  .hero-logo-system {
    left: 6px;
    right: auto;
    top: -14px;
    scale: .72;
  }
  .hero-logo-tag { display: none; }
  .hero-main-image {
    inset: 0;
    height: 100%;
    object-position: 64% center;
  }
  .hero-brand-chip {
    left: 12px;
    bottom: 14px;
    width: min(72%, 250px);
    padding: 14px;
  }
  .hero-mini-palette {
    right: 12px;
    bottom: 16px;
  }
  .hero-mini-palette span {
    width: 20px;
    height: 20px;
  }
  .hero-actions {
    margin-top: 32px;
  }
  .hero-actions .button {
    flex: 1 1 100%;
  }
  .web-preview { width: 76%; min-height: 205px; top: 14%; left: 0; padding: 22px; }
  .web-preview strong { font-size: 1.75rem; margin-top: 34px; max-width: 68%; }
  .ebook-preview { width: 45%; min-height: 185px; right: 0; top: 0; padding: 20px; }
  .ebook-preview strong { font-size: 1.75rem; }
  .phone-preview { width: 34%; min-height: 190px; left: 10%; bottom: 7%; }
  .phone-preview div { height: 126px; }
  .deck-preview { width: 52%; min-height: 126px; right: 0; bottom: 4%; padding: 16px; }
  .palette-preview { width: 50%; right: 4%; bottom: 42%; }
  .work-grid, .service-grid, .process-list, .therapist-points, .modal-columns, .service-addons { grid-template-columns: 1fr; }
  .cb-logo-lab {
    left: 14px;
    top: 14px;
    width: calc(100% - 28px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: 8px;
  }
  .cb-logo-tile,
  .cb-logo-cream {
    min-height: 102px;
    aspect-ratio: 1;
  }
  .cb-logo-tile img { width: 88%; }
  .cb-stationery {
    right: 16px;
    top: 128px;
    width: 48%;
    min-height: 116px;
    padding: 14px;
  }
  .cb-stationery strong {
    margin-top: 18px;
    font-size: 1.45rem;
  }
  .cb-brand-ribbon { bottom: 54px; }
  .cb-spark {
    left: 18px;
    top: 138px;
    width: 44px;
  }
  .process .section-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }
  .process-list::before {
    left: 26px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 4px;
    height: auto;
    background: linear-gradient(180deg, #E87D90, #C9A46A, #79AEB0, #8E6ABD, #C66B4E);
  }
  .process-list li {
    min-height: 0;
    padding: 20px 18px 20px 88px;
  }
  .process-list span {
    position: absolute;
    left: 18px;
    top: 22px;
    width: 46px;
    height: 46px;
    margin: 0;
    font-size: 1.34rem;
  }
  .therapist-points span {
    min-height: 62px;
    padding: 12px 15px 12px 50px;
  }
  .therapist-points { margin-top: 0; }
  .work-grid { grid-auto-rows: auto; gap: 14px; }
  .work-card, .work-card.wide, .work-card.tall, .work-card.featured-work {
    grid-column: auto;
    grid-row: auto;
    min-height: 230px;
    aspect-ratio: 1.28;
    transform: none;
  }
  .work-card.featured-work {
    min-height: 390px;
    aspect-ratio: .82;
  }
  .work-card:hover { transform: translateY(-4px); }
  .screenshot-case { padding: 12px; }
  .work-meta {
    left: 14px;
    bottom: 14px;
    width: min(82%, 280px);
    padding: 12px 13px 11px;
  }
  .work-meta p { font-size: .68rem; margin-bottom: 5px; }
  .work-meta h3 { font-size: 1.42rem; }
  .text-button { padding-top: 4px; }
  .browser-frame { inset: 20px 18px 76px; padding: 10px; }
  .phone-frame { width: 26%; min-width: 78px; right: 16px; bottom: 70px; }
  .scene-logo { width: min(38%, 120px); }
  .nutri-logo { width: min(26%, 88px); left: 16%; top: 30%; }
  .soft-card { width: 48%; min-height: 96px; padding: 14px; font-size: 1.02rem; }
  .scene-palette { right: 16px; top: 16px; }
  .scene-palette span { width: 18px; height: 18px; }
  .type-strip { bottom: 104px; left: 18px; padding: 10px 12px; }
  .paper-note { font-size: .62rem; }
  .lucia-asset { width: 72%; top: 40%; }
  .brand-words { bottom: 82px; font-size: 1rem; }
  .lucia-scene .scene-palette { bottom: 72px; }
  .feature-browser {
    left: 18px;
    top: 24px;
    width: calc(100% - 36px);
    height: 44%;
    transform: rotate(-.8deg);
  }
  .ebook-peek {
    right: 18px;
    top: 44%;
    width: 46%;
    height: 34%;
    transform: rotate(2deg);
  }
  .logo-badge {
    left: 20px;
    bottom: 94px;
    width: 92px;
    height: 72px;
  }
  .project-tags {
    right: 18px;
    bottom: 98px;
    max-width: 58%;
    gap: 6px;
  }
  .project-tags span {
    padding: 7px 9px;
    font-size: .62rem;
  }
  .lucia-rings {
    width: 150px;
    border-width: 18px;
  }
  .monogram { width: 58px; height: 58px; font-size: 1.5rem; }
  .poster-big { left: 86px; top: 36px; font-size: 3.2rem; }
  .mini-posts { right: 20px; bottom: 82px; grid-template-columns: repeat(3, 38px); }
  .ebook-mock { min-height: 112px; padding: 14px; font-size: .95rem; }
  .ebook-mock b { margin-top: 12px; font-size: 1.18rem; }
  .slides-mock { bottom: 82px; }
  .portfolio .section-heading::after { padding-left: 0; border-left: 0; border-top: 1px solid var(--champagne); padding-top: 10px; }
  .portfolio::before { font-size: 5rem; top: 18px; }
  .plan-grid { grid-template-columns: 1fr; overflow-x: visible; }
  .plan-card.featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr; justify-items: start; }
  .footer-brand { grid-row: auto; width: 68px; }
  .legal { grid-column: auto; }
}
@media (max-width: 1050px) {
  .work-card.case-card,
  .work-card.case-card.tall,
  .work-card.case-card.wide,
  .work-card.case-card.featured-work,
  .work-card.case-small {
    grid-column: span 6;
    grid-template-columns: 1fr;
    min-height: 0;
    aspect-ratio: auto;
  }
  .case-card .work-art { min-height: 320px; }
  .case-card .work-meta {
    width: auto;
    min-height: 180px;
  }
}
@media (max-width: 700px) {
  .work-card.case-card,
  .work-card.case-card.tall,
  .work-card.case-card.wide,
  .work-card.case-card.featured-work,
  .work-card.case-small {
    grid-column: auto;
    grid-row: auto;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 10px;
    aspect-ratio: auto;
    border-radius: 8px;
  }
  .case-card .work-art {
    min-height: 260px;
  }
  .case-visual {
    grid-template-rows: minmax(0, 1fr) 72px;
    gap: 8px;
    padding: 8px;
  }
  .case-card .work-meta,
  .case-copy {
    left: auto;
    bottom: auto;
    width: auto;
    min-height: 0;
    padding: 18px;
  }
  .case-copy h3 {
    font-size: 2rem;
  }
  .case-copy span {
    max-width: 100%;
    font-size: .94rem;
  }
  .case-palette {
    right: 14px;
    top: 14px;
  }
  .case-palette span {
    width: 16px;
    height: 16px;
  }
  .brand-board > img {
    width: min(64%, 210px);
  }
  .concept-board .poster-big {
    left: 86px;
    max-width: 62%;
    font-size: 3rem;
  }
  .concept-board .mini-posts {
    bottom: 20px;
    grid-template-columns: repeat(3, 40px);
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .cursor-dot { display: none; }
}
