/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:         #FAFAF8;
  --bg-hero:    #FDF7F1;
  --surface:    #F3F1EA;
  --ink:        #0B242E;
  --ink-soft:   #3C5560;
  --mute:       #7C8C93;
  --line:       rgba(11, 36, 46, 0.1);

  --accent:      #E56001;
  --accent-soft: rgba(229, 96, 1, 0.12);
  --accent-2:      #0F6E70;
  --accent-2-soft: rgba(15, 110, 112, 0.12);

  --display: "Space Grotesk", var(--sans);
  --serif-accent: "Instrument Serif", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-crearte: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 84px;
  --container: 1220px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.65;
  background: var(--bg); color: var(--ink);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip; overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--display); font-weight: 600; color: var(--ink); }
em { font-style: italic; }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 720px) { .container { padding-inline: 2.5rem; } }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem;
  background: var(--ink); color: var(--bg); z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-crearte);
}
.skip-link:focus { top: 1rem; }

.kicker {
  font-family: var(--sans); font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: .5rem;
}
.kicker::before { content: ""; width: 22px; height: 1px; background: var(--accent); display: inline-block; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-crearte), transform .9s var(--ease-crearte); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
.no-js .micro-intro { display: none; }
.no-js .equipo-words { display: none; }
.no-js .pf-field, .no-js .pf-submit { max-height: none; opacity: 1; margin-bottom: 1.3rem; }

/* =============================================================
   4. Nav
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500; height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  color: var(--bg);
  transition: background .5s var(--ease-crearte), box-shadow .5s var(--ease-crearte), height .4s var(--ease-crearte), color .4s var(--ease-crearte);
}
.nav.is-solid {
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  height: 68px;
  color: var(--ink);
}
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { font-family: var(--display); font-size: 1.4rem; font-weight: 700; }
.brand-dot { color: var(--accent); }
.nav-links { display: none; align-items: center; gap: 2.2rem; }
.nav-link { font-size: .9rem; font-weight: 500; position: relative; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-crearte);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: .7rem; }

.nav-portfolio-link {
  display: flex; align-items: center; gap: .35rem;
  font-size: .74rem; font-weight: 600; color: inherit;
  padding: .5rem .65rem; border: 1px solid rgba(250, 250, 248, .35); border-radius: 100px;
  opacity: .8;
  transition: opacity .3s var(--ease-crearte), border-color .3s var(--ease-crearte), color .3s var(--ease-crearte);
}
.nav.is-solid .nav-portfolio-link { border-color: var(--line); }
.nav-portfolio-link:hover { opacity: 1; border-color: var(--accent); color: var(--accent); }
.nav-portfolio-link svg { width: 12px; height: 12px; flex-shrink: 0; }
.nav-portfolio-text { display: none; }
@media (min-width: 540px) { .nav-portfolio-text { display: inline; } }

.nav-right .nav-cta { display: none; }

.nav-mobile { position: relative; }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: .5rem; list-style: none; cursor: pointer; }
.nav-toggle::-webkit-details-marker { display: none; }
.nav-toggle span { width: 22px; height: 1.5px; background: currentColor; transition: transform .3s var(--ease-crearte), background .4s var(--ease-crearte); }
.nav-mobile[open] .nav-toggle span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav-mobile[open] .nav-toggle span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-menu-panel { display: none; }
.nav-mobile[open] .mobile-menu-panel {
  position: fixed; inset: 0; z-index: 490; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu-panel a { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--ink); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-right .nav-cta { display: inline-flex; }
  .nav-mobile { display: none; }
}

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 1.8rem; font-size: .9rem; font-weight: 600;
  border-radius: 100px;
  transition: transform .5s var(--ease-crearte), background .3s var(--ease-crearte), color .3s var(--ease-crearte), border-color .3s var(--ease-crearte);
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }

.progress-bar { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 700; pointer-events: none; }
.progress-bar-fill { height: 100%; width: 0%; background: var(--accent); transform-origin: left; }

.cursor { display: none; position: fixed; top: 0; left: 0; z-index: 800; pointer-events: none; }
.cursor.is-ready { display: block; }
.cursor-dot { position: fixed; top: 0; left: 0; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; pointer-events: none; z-index: 801; transform: translate(-50%,-50%); }
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--ink); pointer-events: none; z-index: 800; transform: translate(-50%,-50%);
  transition: width .3s var(--ease-crearte), height .3s var(--ease-crearte), border-color .3s var(--ease-crearte);
}
.cursor-ring.is-hover { width: 60px; height: 60px; border-color: var(--accent); background: var(--accent-soft); }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-dot, .cursor-ring { display: none; } }

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

.micro-intro { position: fixed; inset: 0; z-index: 900; background: var(--bg); display: flex; align-items: center; justify-content: center; pointer-events: none; }
.micro-intro-line { width: 1px; height: 40%; background: var(--accent); transform: scaleY(0); transform-origin: center; }

/* =============================================================
   6. Hero — tipografía gigante cortada por el viewport
   ============================================================= */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  background: var(--bg-hero);
  overflow: hidden;
  color: var(--bg);
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media-frame {
  position: absolute; inset: 0; width: 100%; height: 100%;
  transform-origin: center center; will-change: transform;
  background: linear-gradient(135deg, #0B242E, #1A4550 55%, #0B242E);
}
.hero-media-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 36, 46, .55), rgba(11, 36, 46, .35) 45%, rgba(11, 36, 46, .82) 100%);
}
.hero-blobs { position: absolute; inset: 0; z-index: 2; mix-blend-mode: screen; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }
.blob-1 { width: 420px; height: 420px; top: -8%; right: -6%; background: radial-gradient(circle, var(--accent-soft), transparent 70%); }
.blob-2 { width: 340px; height: 340px; bottom: -12%; left: -8%; background: radial-gradient(circle, var(--accent-2-soft), transparent 70%); }
.blob-3 { width: 240px; height: 240px; top: 40%; left: 55%; background: radial-gradient(circle, var(--accent-soft), transparent 70%); }

.hero-content { position: relative; z-index: 3; width: 100%; padding-block: 2rem 4rem; }
.hero-title { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.8rem; }
.crop-line {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(3rem, 11vw, 8.5rem);
  line-height: .88; letter-spacing: -0.02em;
  color: var(--bg);
  white-space: nowrap;
}
.accent-line em { font-family: var(--serif-accent); font-style: italic; font-weight: 400; color: var(--accent); text-transform: none; }
.hero-sub { max-width: 44ch; font-size: 1.05rem; color: rgba(250, 250, 248, .78); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero .btn-ghost { border-color: rgba(250, 250, 248, .3); color: var(--bg); }
.hero .btn-ghost:hover { border-color: var(--bg); }

/* =============================================================
   7. Equipo — solapamiento con la sección anterior + palabras gigantes
   ============================================================= */
.equipo {
  position: relative; z-index: 5;
  background: var(--bg);
  border-radius: 40px 40px 0 0;
  margin-top: -6vh;
  padding-block: 7rem 6rem;
  box-shadow: 0 -30px 60px -30px rgba(11, 36, 46, .12);
  overflow: hidden;
}
.equipo-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.equipo-copy { position: relative; z-index: 2; max-width: 62ch; }
.equipo-text { font-size: 1.15rem; color: var(--ink-soft); margin-top: 1.4rem; }
.equipo-text:first-of-type { margin-top: 1.6rem; }
.equipo-sign { margin-top: 1.8rem; font-family: var(--serif-accent); font-style: italic; font-size: 1.1rem; color: var(--accent-2); }

.equipo-photo {
  position: relative; z-index: 2;
  aspect-ratio: 4 / 5; max-width: 380px; margin-inline: auto;
  border-radius: 24px; overflow: hidden;
}
.equipo-photo img { width: 100%; height: 100%; object-fit: cover; }

.equipo-words { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.equipo-word {
  position: absolute; font-family: var(--display); font-weight: 700; text-transform: uppercase;
  color: var(--surface); font-size: clamp(3rem, 10vw, 7rem); white-space: nowrap;
  opacity: 0;
}
.w1 { top: 2%; left: 2%; }
.w2 { top: 38%; right: -2%; }
.w3 { bottom: 0%; left: 10%; }

@media (min-width: 860px) {
  .equipo-grid { grid-template-columns: 1.2fr .8fr; }
  .equipo-photo { margin-inline: 0; max-width: none; }
}

/* =============================================================
   8. Tratamientos — cards magnéticas con tilt 3D
   ============================================================= */
.tratamientos { padding-block: 6rem; }
.tratamientos-head { max-width: 46ch; margin-bottom: 3.5rem; }
.tratamientos-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); margin-top: .8rem; }
.tratamientos-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; perspective: 1000px; }
.tratamiento-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow .4s var(--ease-crearte);
}
.tratamiento-card:hover { box-shadow: 0 24px 48px -24px rgba(11, 36, 46, .18); }
.tratamiento-card.is-big { background: var(--ink); color: var(--bg); }
.tratamiento-card.is-big h3, .tratamiento-card.is-big .tratamiento-num { color: var(--bg); }
.tratamiento-card.is-big p { color: rgba(250,250,248,.75); }
.tratamiento-card.is-big .tratamiento-meta { color: rgba(250,250,248,.55); }

.tratamiento-media {
  position: relative; aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-2-soft));
}
.tratamiento-media img { width: 100%; height: 100%; object-fit: cover; }
.tratamiento-card.is-big .tratamiento-media { aspect-ratio: 16 / 9; }

.tratamiento-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(250, 250, 248, .88); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  box-shadow: 0 8px 20px -10px rgba(11, 36, 46, .4);
}
.tratamiento-badge svg { width: 22px; height: 22px; }

.tratamiento-body { padding: 1.6rem 2.2rem 2.2rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.tratamiento-card.is-big .tratamiento-body { padding: 1.8rem 2.4rem 2.4rem; }
.tratamiento-num { font-family: var(--display); font-weight: 600; color: var(--accent-2); font-size: .95rem; }
.tratamiento-card h3 { font-size: 1.35rem; }
.tratamiento-card.is-big h3 { font-size: 1.9rem; }
.tratamiento-card p { color: var(--mute); font-size: .95rem; }
.tratamiento-meta { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--mute); margin-top: auto; }

@media (min-width: 720px) { .tratamientos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .tratamientos-grid { grid-template-columns: repeat(3, 1fr); }
  .tratamiento-card.is-big { grid-column: span 2; grid-row: span 2; }
}

/* =============================================================
   9. Proceso — fila con parallax de profundidad por ítem
   ============================================================= */
.proceso { padding-block: 6rem; background: var(--surface); }
.proceso-head { max-width: 46ch; margin-bottom: 3.5rem; }
.proceso-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); margin-top: .8rem; }
.proceso-row { display: grid; grid-template-columns: 1fr; gap: 2.4rem; }
.proceso-step { position: relative; will-change: transform; }
.proceso-bignum {
  font-family: var(--display); font-weight: 700; font-size: 3.4rem;
  color: var(--accent); opacity: .35; display: block; line-height: 1;
}
.proceso-step h3 { font-size: 1.3rem; margin: .8rem 0 .6rem; }
.proceso-step p { color: var(--ink-soft); font-size: .95rem; max-width: 32ch; }

@media (min-width: 720px) { .proceso-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .proceso-row { grid-template-columns: repeat(4, 1fr); } }

/* =============================================================
   10. Testimonios — carrusel de arrastre
   ============================================================= */
.testimonios { padding-block: 6rem 4rem; }
.testimonios-head { max-width: 46ch; margin-bottom: 3rem; }
.testimonios-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); margin-top: .8rem; }
.testimonios-track-wrap { overflow: hidden; cursor: grab; }
.testimonios-track-wrap.is-dragging { cursor: grabbing; }
.testimonios-track-wrap:focus-visible { outline: none; box-shadow: inset 0 0 0 2px var(--accent); border-radius: 8px; }
.testimonios-track {
  display: flex; gap: 1.2rem;
  padding-inline: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
}
.testimonios-track::-webkit-scrollbar { display: none; }
@media (min-width: 720px) { .testimonios-track { padding-inline: calc((100vw - var(--container)) / 2 + 2.5rem); } }
.testimonio-slide {
  flex: 0 0 auto; width: min(78vw, 380px);
  background: var(--surface); border-radius: 20px; padding: 2.2rem;
  scroll-snap-align: start;
  transform: scale(.88) rotate(-1deg); opacity: .45;
  transition: transform .45s var(--ease-crearte), opacity .45s var(--ease-crearte), box-shadow .45s var(--ease-crearte);
}
.testimonio-slide.is-focused {
  transform: scale(1) rotate(0deg); opacity: 1;
  box-shadow: 0 24px 48px -24px rgba(11, 36, 46, .22);
}
.testimonio-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; margin-bottom: 1.2rem; pointer-events: none; }
.testimonio-slide p { font-family: var(--serif-accent); font-style: italic; font-size: 1.3rem; color: var(--ink); line-height: 1.4; }
.testimonio-name { display: block; margin-top: 1.4rem; font-size: .85rem; font-weight: 600; color: var(--accent-2); }

.testimonios-controls { display: flex; gap: .8rem; margin-top: 2rem; }
.testimonios-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease-crearte), border-color .3s var(--ease-crearte), transform .3s var(--ease-bounce);
}
.testimonios-arrow svg { width: 20px; height: 20px; }
.testimonios-arrow:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: scale(1.08); }
.testimonios-arrow:active { transform: scale(.94); }
.testimonios-arrow:disabled { opacity: .3; pointer-events: none; }

/* =============================================================
   10b. Corte de sección — banda de foto con parallax + reveal
   ============================================================= */
.section-photocut { position: relative; height: clamp(280px, 38vw, 460px); overflow: hidden; }
.section-photocut-media { position: absolute; inset: 0; overflow: hidden; }
.section-photocut-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform-origin: center center; will-change: transform;
}
.section-photocut-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(11, 36, 46, .8) 0%, rgba(11, 36, 46, .4) 48%, rgba(11, 36, 46, .12) 78%);
}
.section-photocut-caption {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center; gap: .7rem;
}
.section-photocut-caption .kicker { color: var(--accent); }
.section-photocut-caption .kicker::before { background: var(--accent); }
.section-photocut-text {
  font-family: var(--serif-accent); font-style: italic; font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.6rem); line-height: 1.15; color: var(--bg); max-width: 18ch;
}

/* =============================================================
   11. Contacto — formulario progresivo
   ============================================================= */
.contacto { padding-block: 6rem 8rem; }
.contacto-head { max-width: 46ch; margin-bottom: 3rem; }
.contacto-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-top: .8rem; }

.progressive-form { max-width: 520px; }
.pf-field {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .5s var(--ease-crearte), opacity .4s var(--ease-crearte), margin .5s var(--ease-crearte);
  margin-bottom: 0;
}
.pf-field.is-active { max-height: 160px; opacity: 1; margin-bottom: 1.3rem; }
.pf-field label { display: block; font-size: .9rem; font-weight: 500; color: var(--ink-soft); margin-bottom: .5rem; }
.pf-field input, .pf-field textarea {
  width: 100%; padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 10px;
  background: var(--surface); color: var(--ink); font-family: var(--sans); font-size: .95rem;
  transition: border-color .3s var(--ease-crearte);
}
.pf-field input:focus, .pf-field textarea:focus { border-color: var(--accent); outline: none; }
.pf-field textarea { min-height: 100px; resize: vertical; }
.pf-submit { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease-crearte), opacity .4s var(--ease-crearte); }
.pf-submit.is-active { max-height: 60px; opacity: 1; }

.form-success { display: none; text-align: center; padding: 2rem; max-width: 520px; }
.form-success.is-visible { display: block; }
.form-success svg { width: 32px; height: 32px; color: var(--accent-2); margin-inline: auto 1rem; }

.contacto-info { margin-top: 3.5rem; display: flex; flex-direction: column; gap: .9rem; padding-top: 2rem; border-top: 1px solid var(--line); max-width: 520px; }
.contacto-info dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--mute); }
.contacto-info dd { font-size: 1rem; margin-top: .2rem; }

/* =============================================================
   12. Footer
   ============================================================= */
.footer { background: var(--surface); padding-block: 3rem 2rem; border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-direction: column; gap: 1.2rem; }
.footer-brand { font-family: var(--display); font-size: 1.3rem; font-weight: 700; }
.footer-bottom { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; justify-content: space-between; font-size: .8rem; color: var(--mute); }

.credit-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 500; color: var(--ink-soft);
  padding: .5rem .9rem; border: 1px solid var(--line); border-radius: 100px;
  transition: border-color .3s var(--ease-crearte), color .3s var(--ease-crearte);
}
.credit-badge svg { width: 12px; height: 12px; transition: transform .35s var(--ease-crearte); }
.credit-badge:hover { border-color: var(--accent); color: var(--accent); }
.credit-badge:hover svg { transform: translate(3px, -3px); }

@media (min-width: 720px) { .footer-bottom { flex-direction: row; align-items: center; } }

/* =============================================================
   13. Responsive base
   ============================================================= */
@media (min-width: 1280px) { .container { padding-inline: 3rem; } }
@media (max-width: 539px) {
  .crop-line { font-size: clamp(2.4rem, 15vw, 4rem); }
}

/* =============================================================
   14. Reduced motion — solo lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .micro-intro { display: none; }
}
