/* ============================================================
   Paola García — Editorial / Cinematic stylesheet
   ============================================================ */

/* ── Grain texture overlay ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9990;
  mix-blend-mode: overlay;
}

/* ---------- Typography helpers ---------- */
.serif { font-family: var(--f-serif); font-weight: 400; }
.cond  { font-family: var(--f-cond); font-weight: 300; letter-spacing: var(--tracking-wider); text-transform: uppercase; }
.eyebrow {
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-darkroom);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: currentColor; opacity: .6; }

h1, h2, h3, h4 { margin: 0; font-family: var(--f-serif); font-weight: 400; line-height: 1.05; }
p { margin: 0; font-family: var(--f-sans); font-weight: 300; line-height: 1.7; }

/* ---------- Page reveal ---------- */
.page-enter { opacity: 0; }
.page-enter-active { opacity: 1; transition: opacity .8s ease; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 44px;
  transition: background .5s ease, padding .4s ease, color .4s ease;
  color: var(--c-nude);
  mix-blend-mode: normal;
}
.nav.scrolled {
  background: rgba(251, 248, 242, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 44px;
  color: var(--c-emerald);
  border-bottom: 1px solid rgba(80,79,75,.06);
}
.nav.light { color: var(--c-emerald); }
.nav .brand {
  font-family: var(--f-serif);
  font-size: 18px;
  letter-spacing: var(--tracking-wide);
}
.nav .brand small {
  display: block; font-family: var(--f-cond); font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; opacity: .65; margin-top: 3px;
}
.nav-links {
  display: flex; gap: 36px;
  font-family: var(--f-cond);
  text-transform: uppercase;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em;
}
.nav-links a {
  position: relative; padding: 6px 0;
  transition: opacity .3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .35s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-family: var(--f-cond); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  border: 1px solid currentColor; padding: 12px 24px;
  transition: background .3s ease, color .3s ease;
}
.nav-cta { position: relative; overflow: hidden; }
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--c-emerald);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.7,0,.2,1);
  z-index: -1;
}
.nav-cta:hover { color: var(--c-nude); border-color: var(--c-emerald); }
.nav-cta:hover::before { transform: translateY(0); }
.nav.scrolled .nav-cta:hover { color: var(--c-nude); }
.nav-burger {
  display: none; width: 32px; height: 22px; position: relative; cursor: pointer;
}
.nav-burger span {
  position: absolute; left: 0; right: 0; height: 1px; background: currentColor;
  transition: transform .4s ease, opacity .3s ease, top .3s ease;
}
.nav-burger span:nth-child(1) { top: 6px; }
.nav-burger span:nth-child(2) { top: 15px; }
.nav-burger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { top: 10px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav { padding: 16px 22px; }
  .nav.scrolled { padding: 12px 22px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
}

/* ---------- Fullscreen menu ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: var(--c-nostalgia);
  color: var(--c-nude);
  display: flex; flex-direction: column;
  padding: 100px 44px 44px;
  transform: translateY(-100%);
  transition: transform .65s cubic-bezier(.7,0,.2,1);
  overflow: hidden;
}
.menu-overlay.open { transform: translateY(0); }
.menu-overlay nav {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; gap: 16px;
  max-width: 900px; margin: 0 auto; width: 100%;
}
.menu-overlay nav a {
  font-family: var(--f-serif); font-size: clamp(40px, 8vw, 88px);
  line-height: 1; letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(234,226,215,.18);
  padding: 18px 0;
  display: flex; align-items: baseline; justify-content: space-between;
  transition: color .3s ease, padding .4s ease;
}
.menu-overlay nav a:hover { color: var(--c-golden); padding-left: 16px; }
.menu-overlay nav a .idx {
  font-family: var(--f-cond); font-size: 12px; letter-spacing: var(--tracking-wider);
  color: var(--c-soul);
}
.menu-overlay .menu-foot {
  display: flex; justify-content: space-between; align-items: end;
  font-family: var(--f-cond); font-size: 11px; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; color: var(--c-soul);
  flex-wrap: wrap; gap: 22px;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--f-cond);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 17px 32px;
  border: 1px solid currentColor;
  background: transparent;
  display: inline-flex; align-items: center; gap: 14px;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color .45s cubic-bezier(.7,0,.2,1), border-color .4s ease, gap .35s ease;
  cursor: pointer;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--c-emerald);
  transform: translateY(101%);
  transition: transform .5s cubic-bezier(.7,0,.2,1);
  z-index: -1;
}
.btn .arr { display: inline-block; width: 16px; height: 1px; background: currentColor; position: relative; transition: width .45s ease; }
.btn .arr::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor; border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
/* Dark-on-light: fills emerald with nude text */
.btn:hover { color: var(--c-nude); border-color: var(--c-emerald); gap: 22px; }
.btn:hover::before { transform: translateY(0); }
.btn:hover .arr { width: 28px; }

/* Light variant (on dark bg): fills golden with emerald text */
.btn-light { color: var(--c-nude); border-color: var(--c-nude); }
.btn-light::before { background: var(--c-golden); }
.btn-light:hover { color: var(--c-emerald); border-color: var(--c-golden); }

.btn-ghost {
  font-family: var(--f-cond); font-size: 11px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 2px; border-bottom: 1px solid currentColor;
  position: relative; transition: color .35s ease, gap .35s ease, padding .35s ease;
}
.btn-ghost::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -1px;
  height: 1px; background: var(--c-golden);
  transition: right .45s cubic-bezier(.7,0,.2,1);
}
.btn-ghost:hover { color: var(--c-golden); gap: 16px; padding-left: 6px; }
.btn-ghost:hover::after { right: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 720px;
  overflow: hidden;
  background: var(--c-emerald);
  color: var(--c-nude);
}
.hero .h-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: translateY(var(--py, 0px)) scale(1.05);
  filter: brightness(.55) contrast(1.05);
  opacity: 0;
  transition: opacity 1.6s ease, transform 8s ease-out;
}
.hero .h-bg.active { opacity: 1; }
.hero.loaded .h-bg.active { transform: translateY(var(--py, 0px)) scale(1); }

.hero-dots {
  position: absolute; bottom: 28px; right: 44px; z-index: 3;
  display: flex; gap: 10px;
}
.hero-dots .dot {
  width: 28px; height: 1px; background: rgba(234,226,215,.35);
  cursor: pointer; transition: background .4s ease, width .4s ease;
  padding: 0;
}
.hero-dots .dot:hover { background: rgba(234,226,215,.7); }
.hero-dots .dot.active { background: var(--c-golden); width: 44px; }
@media (max-width: 720px) {
  .hero-dots { right: 22px; bottom: 22px; }
  .hero-scroll { display: none; }
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(80,79,75,.7) 0%,
    rgba(80,79,75,.45) 30%,
    rgba(80,79,75,.45) 65%,
    rgba(80,79,75,.82) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 120px 44px 56px;
}
.hero-tag {
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  font-size: 11px;
  display: inline-flex; align-items: center; gap: 14px;
  opacity: .9;
}
.hero-tag::before { content: ''; width: 36px; height: 1px; background: currentColor; }
.hero-title {
  font-family: var(--f-serif);
  font-size: clamp(44px, 8.5vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  max-width: 1100px;
  font-weight: 400;
  text-shadow: 0 4px 40px rgba(80,79,75,.4);
}
.hero-title em { font-style: italic; color: var(--c-golden); opacity: 1; }
.hero-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-sub {
  font-family: var(--f-sans); font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  max-width: 420px;
  line-height: 1.45;
  opacity: .9;
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-family: var(--f-cond); font-size: 10px; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; opacity: .6;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 3;
}
.hero-scroll .line {
  width: 1px; height: 38px; background: currentColor; opacity: .6;
  animation: scrollLine 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-meta {
  position: absolute; top: 50%; right: 44px; transform: translateY(-50%);
  writing-mode: vertical-rl; transform-origin: center;
  font-family: var(--f-cond); font-size: 10px; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; opacity: .7;
}

@media (max-width: 720px) {
  .hero-inner { padding: 110px 22px 110px; }
  .hero-meta { display: none; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .hero-title {
    line-height: 1.08;
    padding-block: 4px 10px;
  }
}

/* ============================================================
   Sections — generic
   ============================================================ */
section { position: relative; }
.section {
  padding: clamp(80px, 12vh, 160px) 44px;
}
@media (max-width: 720px) { .section { padding: 80px 22px; } }

.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 80px;
}
.section-head h2 {
  font-size: clamp(40px, 6vw, 84px); line-height: 0.98;
}
.section-head h2 em { color: var(--c-nostalgia); font-style: italic; }
.section-head .desc {
  max-width: 460px;
  font-size: 15px; line-height: 1.7; color: var(--c-darkroom);
}
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 50px; }
}

/* ============================================================
   ABOUT teaser
   ============================================================ */
.about-teaser {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 80px; align-items: center;
  background: var(--c-nude);
}
.about-teaser .img-col {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
}
.about-teaser .img-col img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s ease;
}
.about-teaser:hover .img-col img { transform: scale(1.04); }
.about-teaser .img-col .frame-num {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--f-cond); font-size: 10px;
  letter-spacing: var(--tracking-wider); color: var(--c-nude);
  background: rgba(80,79,75,.4); padding: 6px 10px;
}
.about-teaser .copy {
  padding-right: 60px;
}
.about-teaser .copy h2 {
  font-size: clamp(38px, 5.5vw, 72px);
  margin: 24px 0 28px;
  line-height: 1;
}
.about-teaser .copy h2 em { font-style: italic; color: var(--c-nostalgia); }
.about-teaser .copy p {
  font-size: 16px; line-height: 1.8; color: var(--c-darkroom);
  margin-bottom: 20px;
}
.about-teaser .copy .signature {
  font-family: var(--f-serif); font-style: italic;
  font-size: 22px; color: var(--c-nostalgia);
  margin-top: 32px;
}
.about-teaser .pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
  padding-top: 32px; border-top: 1px solid rgba(80,79,75,.15);
}
.about-teaser .pillar .num {
  font-family: var(--f-serif); font-size: 36px; color: var(--c-nostalgia);
  line-height: 1; margin-bottom: 8px;
}
.about-teaser .pillar .lbl {
  font-family: var(--f-cond); font-size: 10px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--c-darkroom);
}

@media (max-width: 900px) {
  .about-teaser { grid-template-columns: 1fr; gap: 40px; padding: 80px 22px; }
  .about-teaser .copy { padding-right: 0; }
}

/* ============================================================
   PORTFOLIO categories
   ============================================================ */
.cats {
  background: var(--c-paper);
}
.cat-row {
  display: grid; grid-template-columns: 80px 1fr 1.4fr 200px;
  gap: 40px; align-items: center;
  padding: 36px 0;
  border-top: 1px solid rgba(80,79,75,.12);
  position: relative;
  cursor: pointer;
  transition: padding .5s ease;
}
.cat-row:last-child { border-bottom: 1px solid rgba(80,79,75,.12); }
.cat-row .idx {
  font-family: var(--f-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--c-darkroom);
}
.cat-row .name {
  font-family: var(--f-serif); font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1; transition: color .4s ease, transform .4s ease;
}
.cat-row .name em { font-style: italic; color: var(--c-nostalgia); }
.cat-row .desc {
  font-size: 14px; line-height: 1.6; color: var(--c-darkroom);
  max-width: 480px;
}
.cat-row .more {
  justify-self: end;
  font-family: var(--f-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
}
.cat-row .preview {
  position: absolute; top: 50%; left: 36%; transform: translate(-50%, -50%) scale(.9);
  width: 280px; height: 360px;
  opacity: 0; pointer-events: none;
  transition: opacity .45s ease, transform .55s ease;
  overflow: hidden;
  z-index: 5; box-shadow: 0 24px 60px -20px rgba(80,79,75,.4);
}
.cat-row .preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-row:hover { padding-left: 24px; }
.cat-row:hover .name { color: var(--c-nostalgia); }
.cat-row:hover .preview { opacity: 1; transform: translate(-50%, -50%) scale(1); }

@media (max-width: 900px) {
  .cat-row { grid-template-columns: 50px 1fr; gap: 18px; padding: 26px 0; }
  .cat-row .desc, .cat-row .more, .cat-row .preview { display: none; }
}

/* ============================================================
   EXPERIENCE — scroll storytelling
   ============================================================ */
.experience {
  background: var(--c-darkroom);
  color: var(--c-nude);
}
.experience .section-head h2 em { color: var(--c-golden); }
.experience .section-head .desc { color: var(--c-soul); }
.exp-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}
.exp-card {
  position: relative; overflow: hidden;
  background: var(--c-darkroom);
}
.exp-card .ph {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.4s ease;
  filter: brightness(.85) saturate(.9);
}
.exp-card:hover .ph { transform: scale(1.05); }
.exp-card .meta {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
}
.exp-card .num {
  font-family: var(--f-cond); font-size: 10px;
  letter-spacing: var(--tracking-wider); color: var(--c-soul);
}
.exp-card .ttl {
  font-family: var(--f-serif); font-size: 26px; color: var(--c-nude);
  margin-top: 6px; line-height: 1.05;
}
.exp-card .ttl em { font-style: italic; color: var(--c-golden); }
.exp-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(80,79,75,.85));
  z-index: 1;
}

.exp-card.c1 { grid-column: span 7; height: 460px; }
.exp-card.c2 { grid-column: span 5; height: 460px; }
.exp-card.c3 { grid-column: span 4; height: 380px; }
.exp-card.c4 { grid-column: span 4; height: 380px; }
.exp-card.c5 { grid-column: span 4; height: 380px; }

@media (max-width: 900px) {
  .exp-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .exp-card.c1, .exp-card.c2, .exp-card.c3, .exp-card.c4, .exp-card.c5 {
    grid-column: span 1; height: 240px;
  }
  .exp-card.c1 { grid-column: span 2; height: 320px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--c-soul);
  color: var(--c-darkroom);
}
.testimonials .section-head h2 em { color: var(--c-nostalgia); }
.testimonials .section-head .desc { color: var(--c-darkroom); opacity: .75; }
.t-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.t-card {
  background: var(--c-nude);
  padding: 44px 36px;
  position: relative;
  display: flex; flex-direction: column; gap: 22px;
  transition: transform .5s ease, box-shadow .5s ease;
  border-top: 3px solid var(--c-nostalgia);
}
.t-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(80,79,75,.35); }
.t-card .quote-mark {
  font-family: var(--f-serif); font-style: italic;
  font-size: 80px; line-height: 0.5;
  color: var(--c-nostalgia);
  height: 22px;
}
.t-card .quote {
  font-family: var(--f-serif); font-style: italic;
  font-size: 22px; line-height: 1.4; color: var(--c-darkroom);
}
.t-card .who {
  margin-top: auto;
  padding-top: 22px; border-top: 1px solid rgba(80,79,75,.12);
  display: flex; justify-content: space-between; align-items: center;
}
.t-card .name {
  font-family: var(--f-serif); font-size: 16px; color: var(--c-nostalgia);
}
.t-card .session {
  font-family: var(--f-cond); font-size: 10px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--c-darkroom);
}

@media (max-width: 900px) {
  .t-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  height: 90vh; min-height: 620px;
  background-size: cover; background-position: center;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-nude); text-align: center;
  overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(80,79,75,.72), rgba(80,79,75,.88));
}
.cta-final .inner { position: relative; z-index: 2; padding: 0 22px; max-width: 1100px; display: flex; flex-direction: column; align-items: center; gap: 56px; }
.cta-final h2 {
  font-size: clamp(40px, 5vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.cta-final h2 em { font-style: italic; color: var(--c-golden); }
.cta-final .inner .btn { margin-top: 60px; }
.cta-final p {
  font-family: var(--f-sans); font-weight: 300;
  font-size: 16px; line-height: 1.8; margin: 32px auto 44px;
  max-width: 520px; opacity: .9;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--c-darkroom);
  color: var(--c-nude);
  padding: 80px 44px 36px;
}
.foot-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(234,226,215,.18);
}
.foot-top h3 {
  font-family: var(--f-cond); font-size: 11px; font-weight: 300;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--c-soul); margin-bottom: 22px;
}
.foot-top .word {
  font-family: var(--f-serif); font-size: 44px; line-height: 1;
}
.foot-top .word em { font-style: italic; color: var(--c-golden); }
.foot-top a, .foot-top span { display: block; font-size: 14px; line-height: 2; }
.foot-top a:hover { color: var(--c-golden); }
.foot-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-cond); font-size: 10px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--c-soul); flex-wrap: wrap; gap: 14px;
}

@media (max-width: 900px) {
  footer { padding: 60px 22px 28px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 768px) {
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
  .foot-top .word { font-size: 36px; }
  .foot-top a, .foot-top span { overflow-wrap: break-word; word-break: break-word; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.pf-hero {
  padding: 180px 44px 80px;
  background: var(--c-paper);
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end;
}
.pf-hero h1 {
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.92; letter-spacing: -0.015em;
}
.pf-hero h1 em { font-style: italic; color: var(--c-nostalgia); }
.pf-hero .lead {
  font-family: var(--f-sans); font-weight: 300;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.8; max-width: 480px; justify-self: end;
  color: var(--c-darkroom);
}
@media (max-width: 900px) {
  .pf-hero { grid-template-columns: 1fr; padding: 140px 22px 50px; gap: 30px; }
  .pf-hero .lead { justify-self: start; }
}

.pf-filters {
  position: sticky; top: 64px; z-index: 50;
  background: var(--c-darkroom);
  display: flex; gap: 2px; padding: 0 44px;
  border-bottom: 3px solid var(--c-golden);
  overflow-x: auto;
  scrollbar-width: none;
}
.pf-filters::-webkit-scrollbar { display: none; }
.pf-filters button {
  font-family: var(--f-cond); font-size: 13px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 20px 22px;
  color: rgba(234,226,215,.6);
  transition: color .25s ease, background .25s ease;
  white-space: nowrap;
  flex: 0 0 auto;
  position: relative;
}
.pf-filters button:hover:not(.active) { color: var(--c-nude); background: rgba(234,226,215,.08); }
.pf-filters button.active { background: var(--c-golden); color: var(--c-darkroom); }

.masonry {
  columns: 3; column-gap: 16px;
  padding: 50px 44px 120px;
  min-height: 200px;
}
.masonry:empty::after {
  content: 'Las fotos aparecerán aquí cuando subas imágenes a la carpeta categorias/';
  display: block;
  font-family: var(--f-cond); font-size: 12px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--c-darkroom); opacity: .4;
  text-align: center; padding: 80px 0;
  column-span: all;
}
.masonry .tile {
  break-inside: avoid; margin-bottom: 16px;
  position: relative; overflow: hidden;
  background: var(--c-nude);
  cursor: zoom-in;
}

/* Skeleton shimmer mientras carga la imagen */
@keyframes tile-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}
.masonry .tile::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    90deg,
    var(--c-nude) 0%,
    var(--c-nude-warm) 40%,
    var(--c-nude) 80%
  );
  background-size: 400px 100%;
  animation: tile-shimmer 1.4s ease-in-out infinite;
  transition: opacity .35s ease;
  pointer-events: none;
}
.masonry .tile.img-ok::before {
  opacity: 0;
}

.masonry .tile img {
  width: 100%; height: auto; display: block;
  opacity: 0;
  transition: opacity .45s ease, transform 1.2s ease, filter .6s ease;
  position: relative; z-index: 2;
}
.masonry .tile.img-ok img { opacity: 1; }
.masonry .tile:hover img { transform: scale(1.04); filter: brightness(.85); }
.masonry .tile .label {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  color: var(--c-nude);
  font-family: var(--f-cond); font-size: 11px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}
.masonry .tile:hover .label { opacity: 1; transform: translateY(0); }
@media (max-width: 1000px) { .masonry { columns: 2; padding: 30px 22px 90px; } }
@media (max-width: 600px)  { .masonry { columns: 1; } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(80,79,75,.96);
  display: flex; align-items: center; justify-content: center;
  padding: 60px;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-height: 88vh; max-width: 100%;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.lightbox .lb-close {
  position: absolute; top: 22px; right: 22px;
  color: var(--c-nude); font-family: var(--f-cond);
  font-size: 11px; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; display: flex; align-items: center; gap: 12px;
  padding: 8px 12px;
}
.lightbox .lb-close::after {
  content: '×'; font-size: 22px; line-height: 1;
}
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--c-nude); font-family: var(--f-cond);
  font-size: 11px; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; padding: 14px 20px;
}
.lightbox .lb-prev { left: 22px; }
.lightbox .lb-next { right: 22px; }
.lightbox .lb-caption {
  position: absolute; bottom: 22px; left: 0; right: 0;
  text-align: center;
  font-family: var(--f-serif); font-style: italic;
  color: var(--c-nude); opacity: .8;
  font-size: 14px;
}
@media (max-width: 700px) { .lightbox { padding: 20px; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page {
  background: var(--c-paper);
}
.about-hero {
  padding: 180px 44px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end;
}
.about-hero h1 {
  font-size: clamp(64px, 11vw, 180px); line-height: 0.92;
  letter-spacing: -0.015em;
}
.about-hero h1 em { font-style: italic; color: var(--c-nostalgia); }
.about-hero .intro {
  font-family: var(--f-sans); font-weight: 300;
  font-size: clamp(16px, 1.2vw, 19px); line-height: 1.8;
  color: var(--c-darkroom);
  max-width: 460px; justify-self: end;
}
@media (max-width: 900px) {
  .about-hero { grid-template-columns: 1fr; padding: 140px 22px 40px; gap: 28px; }
  .about-hero .intro { justify-self: start; }
}

.about-portrait {
  width: 100%; aspect-ratio: 21/9; overflow: hidden;
  margin-bottom: 100px;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }

.about-body {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
  padding: 0 44px 100px;
  max-width: 1500px; margin: 0 auto;
}
.about-body h2 {
  font-size: clamp(34px, 4.4vw, 56px); line-height: 1;
}
.about-body h2 em { font-style: italic; color: var(--c-nostalgia); }
.about-body .col p {
  font-size: 17px; line-height: 1.85; margin-bottom: 24px;
  color: var(--c-darkroom);
}
.about-body .col p:first-letter {
  font-family: var(--f-serif); font-size: 62px;
  float: left; line-height: 0.85; padding: 8px 12px 0 0;
  color: var(--c-nostalgia);
}
.about-body .col p:not(:first-child):first-letter {
  font-size: inherit; float: none; padding: 0; color: inherit;
}
@media (max-width: 900px) {
  .about-body { grid-template-columns: 1fr; gap: 32px; padding: 0 22px 80px; }
}

.about-values {
  background: var(--c-emerald); color: var(--c-nude);
  padding: 120px 44px;
}
.about-values .grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1500px; margin: 0 auto;
}
.about-values .v .num {
  font-family: var(--f-serif); font-style: italic;
  font-size: 64px; color: var(--c-golden);
  line-height: 1; margin-bottom: 20px;
}
.about-values .v h3 {
  font-family: var(--f-serif); font-size: 28px;
  margin-bottom: 14px;
}
.about-values .v p {
  font-size: 15px; line-height: 1.75; color: var(--c-soul);
}
@media (max-width: 900px) {
  .about-values { padding: 80px 22px; }
  .about-values .grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-timeline {
  padding: 120px 44px;
  max-width: 1300px; margin: 0 auto;
}
.about-timeline h2 {
  font-size: clamp(40px, 5vw, 72px); margin-bottom: 60px;
}
.about-timeline h2 em { font-style: italic; color: var(--c-nostalgia); }
.tl-row {
  display: grid; grid-template-columns: 100px 1fr 1fr; gap: 40px;
  padding: 32px 0;
  border-top: 1px solid rgba(80,79,75,.15);
  align-items: start;
}
.tl-row .year {
  font-family: var(--f-serif); font-style: italic;
  font-size: 32px; color: var(--c-nostalgia);
}
.tl-row .ttl {
  font-family: var(--f-serif); font-size: 22px;
}
.tl-row .desc { color: var(--c-darkroom); font-size: 15px; line-height: 1.7; }
@media (max-width: 700px) {
  .about-timeline { padding: 80px 22px; }
  .tl-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--c-paper);
}
.contact-left {
  padding: 160px 60px 60px; display: flex; flex-direction: column;
}
.contact-left h1 {
  font-size: clamp(56px, 8vw, 120px); line-height: 0.92;
  letter-spacing: -0.015em;
  margin-bottom: 40px;
}
.contact-left h1 em { font-style: italic; color: var(--c-nostalgia); }
.contact-left .lead {
  font-family: var(--f-sans); font-weight: 300;
  font-size: 16px; line-height: 1.8; color: var(--c-darkroom);
  max-width: 460px; margin-bottom: 56px;
}
.contact-info {
  margin-top: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding-top: 32px; border-top: 1px solid rgba(80,79,75,.12);
}
.contact-info .lbl {
  font-family: var(--f-cond); font-size: 10px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--c-darkroom); margin-bottom: 8px;
}
.contact-info .val { font-family: var(--f-serif); font-size: 18px; }
.contact-info a:hover { color: var(--c-nostalgia); }

.contact-right {
  background: var(--c-emerald); color: var(--c-nude);
  padding: 160px 60px 60px;
  position: relative;
}
.contact-right .bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .18; filter: grayscale(.4);
}
.contact-right form {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 24px;
  max-width: 480px;
}
.contact-right .field {
  display: flex; flex-direction: column; gap: 6px;
}
.contact-right .field label {
  font-family: var(--f-cond); font-size: 10px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--c-soul);
}
.contact-right input, .contact-right textarea, .contact-right select {
  background: transparent;
  border: none; border-bottom: 1px solid rgba(234,226,215,.3);
  color: var(--c-nude);
  font-family: var(--f-serif); font-size: 20px;
  padding: 8px 0;
  transition: border-color .3s ease;
  outline: none;
}
.contact-right input:focus, .contact-right textarea:focus, .contact-right select:focus {
  border-color: var(--c-golden);
}
.contact-right textarea { min-height: 90px; resize: vertical; font-family: var(--f-serif); font-style: italic; font-size: 18px; }
.contact-right select option { background: var(--c-emerald); }
.contact-right .submit {
  margin-top: 12px; align-self: start;
}
/* Validación */
.contact-right .field-err input,
.contact-right .field-err textarea,
.contact-right .field-err select {
  border-color: #e07070;
}
.contact-right .field-msg {
  font-family: var(--f-cond); font-size: 11px;
  letter-spacing: .08em; color: #e09090;
  margin-top: -2px;
}
.contact-server-err {
  position: relative; z-index: 2;
  font-family: var(--f-cond); font-size: 12px;
  letter-spacing: .08em; color: #e09090;
  background: rgba(224,112,112,.1);
  border-left: 2px solid #e07070;
  padding: 10px 14px; margin-bottom: 12px;
}
.contact-right button[disabled] {
  opacity: .55; cursor: not-allowed;
}
.contact-sent {
  position: relative; z-index: 2;
  font-family: var(--f-sans); font-weight: 300;
  font-size: 18px; line-height: 1.7; max-width: 460px;
}
.contact-sent .small {
  margin-top: 24px;
  font-family: var(--f-cond); font-size: 11px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  font-style: normal;
  color: var(--c-soul);
}

@media (max-width: 900px) {
  .contact-page { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 120px 22px 50px; }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  overflow: hidden;
  padding: 26px 0;
  background: var(--c-nude-warm);
  border-top: 1px solid rgba(80,79,75,.08);
  border-bottom: 1px solid rgba(80,79,75,.08);
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 60px;
  animation: scroll-x 38s linear infinite;
}
.marquee-track span {
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--c-emerald);
}
.marquee-track span::after {
  content: '✦'; margin-left: 60px; color: var(--c-golden); font-style: normal;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s ease, transform 1.1s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ============================================================
   Tweaks panel (custom)
   ============================================================ */
.tweaks {
  position: fixed; right: 20px; bottom: 20px; z-index: 300;
  width: 280px;
  background: var(--c-paper);
  border: 1px solid rgba(80,79,75,.15);
  box-shadow: 0 30px 60px -20px rgba(80,79,75,.3);
  padding: 18px;
  font-family: var(--f-sans);
  display: none;
}
.tweaks.open { display: block; }
.tweaks h4 {
  font-family: var(--f-cond); font-size: 11px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.tweaks h4 button { font-size: 14px; line-height: 1; }
.tweaks .group { margin-bottom: 14px; }
.tweaks .group label {
  display: block;
  font-family: var(--f-cond); font-size: 10px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--c-darkroom); margin-bottom: 6px;
}
.tweaks .swatches { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks .sw {
  width: 28px; height: 28px;
  border-radius: 50%; cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}
.tweaks .sw.active { border-color: var(--c-emerald); transform: scale(1.1); }
.tweaks .segm { display: flex; border: 1px solid rgba(80,79,75,.2); }
.tweaks .segm button {
  flex: 1; padding: 8px;
  font-family: var(--f-cond); font-size: 10px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
}
.tweaks .segm button.active { background: var(--c-emerald); color: var(--c-nude); }

/* ============================================================
   PACKAGES (inversión)
   ============================================================ */
.packages {
  padding: clamp(80px, 12vh, 140px) 44px;
  background: var(--c-nude-warm);
  border-top: 1px solid rgba(80,79,75,.08);
}
.packages.compact { padding: 80px 44px; }
.packages.compact + .packages.compact {
  padding-top: 64px;
  border-top: 1px solid rgba(80,79,75,.07);
}

.packages-wrap { background: var(--c-nude-warm); }

/* ── Paquetes intro header ── */
.pkg-intro {
  background: var(--c-nostalgia);
  color: var(--c-nude);
  padding: clamp(80px, 12vh, 130px) 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end;
}
.pkg-intro h2 {
  font-size: clamp(44px, 7vw, 100px);
  line-height: 0.95; letter-spacing: -0.01em;
}
.pkg-intro h2 em { font-style: italic; color: var(--c-golden); }
.pkg-intro p {
  font-size: 15px; line-height: 1.8;
  color: rgba(234,226,215,.75);
  max-width: 420px; justify-self: end;
}
@media (max-width: 900px) {
  .pkg-intro { grid-template-columns: 1fr; gap: 28px; padding: 80px 22px; }
  .pkg-intro p { justify-self: start; }
}

/* ── Pkg sticky nav ── */
.pkg-nav {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: var(--c-nostalgia);
  border-top: 3px solid var(--c-golden);
  overflow: hidden;
}
.pkg-nav::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 60px;
  background: linear-gradient(270deg, var(--c-nostalgia), transparent);
  pointer-events: none; z-index: 3;
}
.pkg-nav-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 20px;
  position: relative; z-index: 2;
  gap: 4px;
}
.pkg-nav-inner::-webkit-scrollbar { display: none; }
.pkg-nav-btn {
  flex: 0 0 auto;
  padding: 18px 20px;
  background: none; border: none; cursor: pointer;
  font-family: var(--f-cond);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(234,226,215,.72);
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  transition: color .2s, background .2s;
  border-radius: 2px;
}
.pkg-nav-btn:hover {
  color: var(--c-nude);
  background: rgba(234,226,215,.1);
}
.pkg-nav-btn.active {
  color: var(--c-nostalgia);
  background: var(--c-golden);
}
.pkg-nav-btn.active .pkg-nav-idx { opacity: .7; }
.pkg-nav-idx {
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.05em; opacity: .5;
}
.packages { scroll-margin-top: 118px; }

/* ── Rotating accent — solo colores con suficiente contraste para texto blanco ── */
.packages-wrap > .packages:nth-child(5n+2) { --pkg-accent: var(--c-nostalgia); }
.packages-wrap > .packages:nth-child(5n+3) { --pkg-accent: var(--c-golden); }
.packages-wrap > .packages:nth-child(5n+4) { --pkg-accent: var(--c-rose); }
.packages-wrap > .packages:nth-child(5n+5) { --pkg-accent: var(--c-darkroom); }
.packages-wrap > .packages:nth-child(5n+6) { --pkg-accent: var(--c-nostalgia); }

.packages.compact .packages-head {
  padding-left: 28px;
  border-left: 3px solid var(--pkg-accent, var(--c-golden));
}
.packages.compact .packages-head h2 em { color: var(--pkg-accent, var(--c-nostalgia)); }
.packages.compact .packages-head .eyebrow { color: var(--pkg-accent, var(--c-darkroom)); }

.packages-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 60px;
  max-width: 1500px; margin-left: auto; margin-right: auto;
}
.packages-head h2 { font-size: clamp(36px, 4.8vw, 64px); line-height: 1; }
.packages-head h2 em { font-style: italic; color: var(--c-nostalgia); }
.packages-head .desc {
  max-width: 460px; font-size: 15px; line-height: 1.8; color: var(--c-darkroom);
}
.packages-head .pkg-note {
  margin-top: 18px;
  font-family: var(--f-serif); font-style: italic;
  font-size: 15px; color: var(--c-nostalgia);
}

.pkg-group { max-width: 1500px; margin: 0 auto 50px; }
.pkg-group-title {
  font-family: var(--f-cond); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.25em;
  font-size: 12px; color: var(--c-darkroom);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(80,79,75,.1);
  display: flex; align-items: center; gap: 12px;
}
.pkg-group-title .dot {
  display: inline-block; width: 5px; height: 5px;
  background: var(--pkg-accent, var(--c-golden)); border-radius: 50%;
  text-indent: -9999px; flex-shrink: 0;
}

.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.pkg-card {
  background: var(--c-paper);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  border: 1px solid rgba(80,79,75,.14);
  transition: border-color .4s ease, transform .4s ease, box-shadow .4s ease;
  min-height: 220px;
  box-shadow: 0 2px 12px rgba(80,79,75,.06);
}
.pkg-card:hover {
  border-color: var(--pkg-accent, var(--c-nostalgia));
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(80,79,75,.22);
}

/* Highlight middle (Especial) tier — siempre Nostalgia, color consistente */
.pkg-card.tier-especial {
  background: var(--c-nostalgia);
  color: var(--c-nude);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(80,79,75,.2);
}
.pkg-card.tier-especial .pkg-tier {
  color: var(--c-golden); opacity: 1; letter-spacing: 0.28em;
}
.pkg-card.tier-especial .pkg-desc { color: rgba(234,226,215,.9); }
.pkg-card.tier-especial .pkg-price { border-top-color: rgba(234,226,215,.2); }
.pkg-card.tier-especial .pkg-price .amt { color: var(--c-nude); }
.pkg-card.tier-especial .pkg-price .cur { color: rgba(234,226,215,.6); }
.pkg-card.tier-especial::after {
  content: 'RECOMENDADO';
  position: absolute; top: -13px; left: 28px;
  background: var(--c-golden); color: var(--c-darkroom);
  font-family: var(--f-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 7px 16px;
}

.pkg-tier {
  font-family: var(--f-cond);
  font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--c-nostalgia);
  font-weight: 700;
}
.pkg-desc {
  font-family: var(--f-sans); font-weight: 400;
  font-size: 14.5px; line-height: 1.7; color: var(--c-darkroom);
  flex: 1;
}
.pkg-price {
  margin-top: auto;
  padding-top: 18px; border-top: 1px solid rgba(80,79,75,.12);
  display: flex; align-items: baseline; gap: 8px;
}
.pkg-card.tier-especial .pkg-price { border-top-color: rgba(234,226,215,.15); }
.pkg-price .amt {
  font-family: var(--f-serif); font-size: 34px; line-height: 1;
  letter-spacing: -0.01em;
}
.pkg-price .cur {
  font-family: var(--f-cond); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; color: var(--c-darkroom); text-transform: uppercase;
}

.packages-cta {
  margin-top: 40px;
  display: flex; justify-content: center;
}

@media (max-width: 900px) {
  .packages { padding: 70px 22px; }
  .packages-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .pkg-grid { grid-template-columns: 1fr; gap: 14px; }
  .pkg-card.tier-especial::after { left: 20px; }
}

/* Contact info — wide cell for IG */
.contact-info-wide { grid-column: 1 / -1; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 180;
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 52px; padding: 0 17px 0 12px;
  background: #1f8f55; color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
  font-family: var(--f-cond); font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.wa-float:hover {
  transform: translateY(-3px);
  background: #187745;
  box-shadow: 0 14px 34px rgba(0,0,0,.26);
}
.wa-float-icon {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.6);
  font-size: 18px; line-height: 1;
}
@media (max-width: 720px) {
  .wa-float { right: 16px; bottom: 16px; width: 52px; padding: 0; justify-content: center; }
  .wa-float-label { display: none; }
}


.split-line > * { display: inline-block; transform: translateY(110%); animation: rise .9s cubic-bezier(.7,0,.2,1) forwards; }
@keyframes rise { to { transform: translateY(0); } }
