/* =========================
   Tokens globales
   ========================= */
:root {
  --bg: #0b0b0c;
  --surface: rgba(18, 19, 20, 0.82);
  --surface-strong: #121314;
  --surface-soft: rgba(24, 26, 27, 0.72);
  --text: #e8e2d6;
  --muted: rgba(232, 226, 214, 0.76);
  --line: rgba(232, 226, 214, 0.14);
  --accent: #5e6b63;
  --accent-strong: #738279;
  --accent-warm: #cf8f67;
  --accent-cool: #9cb6bf;
  --accent-rose: #b87f93;
  --accent-glow: rgba(151, 173, 161, 0.22);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  --shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1120px;
}

/* =========================
   Base del documento
   ========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  cursor: default;
}

body {
  position: relative;
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(94, 107, 99, 0.18), transparent 28%),
    radial-gradient(circle at right 20%, rgba(94, 107, 99, 0.1), transparent 22%),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 12, 0.08), rgba(11, 11, 12, 0.34));
  pointer-events: none;
  z-index: 0;
}

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

a,
button,
.depth-card,
.hero-highlights span,
.skill-list span {
  cursor: inherit;
}

button {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

/* =========================
   Ambiente y cursor
   ========================= */
.page-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb,
.ambient-grid,
.ambient-streak {
  position: absolute;
}

.ambient-orb {
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.75;
  animation: ambientFloat 16s ease-in-out infinite;
}

.ambient-orb-left {
  top: -10rem;
  left: -8rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(115, 130, 121, 0.26), rgba(115, 130, 121, 0));
}

.ambient-orb-right {
  right: -10rem;
  top: 18rem;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(94, 107, 99, 0.24), rgba(94, 107, 99, 0));
  animation-delay: -6s;
}

.ambient-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 226, 214, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 226, 214, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 22%, transparent 78%);
  opacity: 0.26;
}

.ambient-streak {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 226, 214, 0.4), transparent);
  opacity: 0.4;
  filter: blur(0.4px);
  animation: streakDrift 18s linear infinite;
}

.ambient-streak-one {
  top: 18%;
  left: -10%;
  width: 38%;
}

.ambient-streak-two {
  right: -12%;
  bottom: 20%;
  width: 42%;
  animation-delay: -9s;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 40;
  transition: opacity 0.25s ease, transform 0.18s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.custom-cursor-ring {
  width: 34px;
  height: 34px;
  margin-left: -17px;
  margin-top: -17px;
  border: 1px solid rgba(232, 226, 214, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}

.custom-cursor-dot {
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-top: -4px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-cool), var(--accent-warm));
  box-shadow: 0 0 18px rgba(207, 143, 103, 0.4);
}

body.cursor-active .custom-cursor {
  opacity: 1;
}

body.cursor-hover .custom-cursor-ring {
  width: 52px;
  height: 52px;
  margin-left: -26px;
  margin-top: -26px;
  border-color: rgba(207, 143, 103, 0.55);
  background: rgba(207, 143, 103, 0.08);
}

body.cursor-hover .custom-cursor-dot {
  transform: scale(0.7);
}

/* =========================
   Header, marca y navegacion
   ========================= */
.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 1rem;
  backdrop-filter: blur(12px);
  background: rgba(14, 15, 16, 0.56);
  border: 1px solid rgba(232, 226, 214, 0.1);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.brand,
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

.kinetic-title {
  max-width: 16ch;
}

.title-accent {
  position: relative;
  display: inline-block;
  padding-right: 0.03em;
  white-space: normal;
}

.title-accent::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: 0.04em;
  bottom: 0.06em;
  height: 0.18em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), currentColor 35%, rgba(255, 255, 255, 0));
  opacity: 0.2;
  transform: scaleX(0.86);
  transform-origin: left center;
}

.title-accent-gradient {
  color: transparent;
  background: linear-gradient(120deg, #f0b18b 0%, #c2d2d7 45%, #dcb4c2 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.title-accent-serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #f1d7c5;
  letter-spacing: 0.01em;
  transform: translateY(0.03em);
}

.title-accent-highlight {
  color: var(--accent-cool);
  text-shadow: 0 0 24px rgba(156, 182, 191, 0.16);
}

.title-accent-gradient,
.title-accent-highlight,
.title-accent-serif {
  animation: titlePulse 7s ease-in-out infinite;
}

.title-accent-serif {
  animation-duration: 9s;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.12rem;
}

.brand-title {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.brand-subtitle {
  margin-top: 0;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav a {
  position: relative;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: color 0.25s ease, background 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-strong), transparent);
  transform: scaleX(0.2);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.contact-card a:hover,
.contact-card a:focus-visible,
.button:hover,
.button:focus-visible {
  color: var(--accent-strong);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.04);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(232, 226, 214, 0.1);
  border-radius: 50%;
  background: rgba(18, 19, 20, 0.62);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero,
.content-section {
  margin-top: 2rem;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.82fr);
  gap: 0;
  align-items: stretch;
  min-height: calc(100vh - 8rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) + 0.65rem);
  background:
    radial-gradient(circle at 14% 18%, rgba(156, 182, 191, 0.18), transparent 26%),
    radial-gradient(circle at 86% 16%, rgba(207, 143, 103, 0.15), transparent 23%),
    linear-gradient(135deg, rgba(24, 26, 27, 0.96), rgba(11, 12, 13, 0.98));
  box-shadow: var(--shadow);
}

.hero::before {
  content: "SAUCO";
  position: absolute;
  right: -0.06em;
  bottom: -0.14em;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(6rem, 16vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  color: rgba(232, 226, 214, 0.045);
  line-height: 0.8;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 226, 214, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 226, 214, 0.028) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 90%);
  opacity: 0.4;
  pointer-events: none;
}

.hero-copy,
.hero-card,
.project-card,
.contact-card,
.split-section,
.content-section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card {
  z-index: 1;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-copy::before,
.hero-card::before,
.project-card::before,
.contact-card::before,
.split-section::before,
.content-section::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent 42%, rgba(151, 173, 161, 0.04));
  pointer-events: none;
}

.hero-copy::before,
.hero-card::before {
  display: none;
}

.hero-copy {
  padding: clamp(2rem, 5vw, 4.25rem) clamp(1.1rem, 3vw, 2.2rem) clamp(2rem, 4vw, 3rem) 0;
  display: grid;
  gap: 1.3rem;
  align-content: center;
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: -4rem;
  bottom: -5rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 173, 161, 0.16), transparent 70%);
  filter: blur(16px);
  animation: pulseGlow 8s ease-in-out infinite;
}

.hero-copy-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem 1.25rem;
}

.hero-stamp {
  margin: 0;
  max-width: 26ch;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: right;
}

.eyebrow,
.section-tag,
.project-index,
.hero-card-label {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.96;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.hero-text,
.content-section p,
.project-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 46ch;
  margin: 0;
  font-size: 1.08rem;
  color: rgba(232, 226, 214, 0.82);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 226, 214, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(0);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.hero-highlights span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #cfd7d1, var(--accent));
  box-shadow: 0 0 18px rgba(151, 173, 161, 0.45);
}

.hero-highlights span:hover,
.hero-highlights span:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(207, 143, 103, 0.26);
  background: rgba(207, 143, 103, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button-primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 14px 35px rgba(94, 107, 99, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.hero-card {
  margin-left: clamp(1rem, 2vw, 2rem);
  padding: clamp(1.4rem, 3vw, 2rem) 0 clamp(1.4rem, 3vw, 2rem) clamp(1.4rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(232, 226, 214, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(94, 107, 99, 0.14), rgba(94, 107, 99, 0.03));
  isolation: isolate;
}

.hero-card-glow {
  position: absolute;
  top: -4rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 68%);
  filter: blur(8px);
  z-index: -1;
}

.hero-card ul li::marker {
  color: var(--accent-warm);
}

.hero-card-lead {
  margin: 0 0 1.4rem;
  max-width: 12ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  line-height: 0.98;
  color: var(--text);
}

.hero-card-metric {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}

.hero-card-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.hero-card-caption {
  max-width: 18ch;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.8rem;
}

.hero-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.hero-card-footer span {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(232, 226, 214, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: var(--muted);
}

/* =========================
   Secciones editoriales y proyectos
   ========================= */
.content-section {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.about-heading {
  position: relative;
  overflow: hidden;
  min-height: clamp(22rem, 38vw, 31rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 26px;
  border: 1px solid rgba(232, 226, 214, 0.1);
  background:
    linear-gradient(180deg, rgba(11, 11, 12, 0.22), rgba(11, 11, 12, 0.58) 54%, rgba(11, 11, 12, 0.88)),
    radial-gradient(circle at 16% 18%, rgba(207, 143, 103, 0.22), transparent 34%),
    url("media/yo.JPG") center / cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.about-heading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 11, 12, 0.34), transparent 48%, rgba(11, 11, 12, 0.22));
  pointer-events: none;
}

.about-heading .section-tag,
.about-heading .kinetic-title {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.project-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-card {
  padding: clamp(1.2rem, 2vw, 1.7rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.35rem;
  align-items: stretch;
  min-height: auto;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.project-card-story {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-card-topline,
.project-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.project-card-heading {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.project-card-kicker,
.project-card-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.project-card-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 226, 214, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.82rem;
}

.project-card-note,
.project-card-meta strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.project-card-note {
  color: var(--muted);
}

.project-card-intro {
  margin: 0;
  max-width: 58ch;
  font-size: 1rem;
}

.project-image-popups {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.88fr 0.72fr;
  align-items: end;
  gap: clamp(0.45rem, 1.2vw, 0.85rem);
  width: min(100%, 34rem);
  min-height: 8.6rem;
  margin: 0.1rem 0 0.2rem;
  padding: 0.25rem 0.25rem 0.65rem;
  isolation: isolate;
}

.project-image-popups::before {
  content: "";
  position: absolute;
  inset: auto 8% 0 4%;
  height: 44%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(151, 173, 161, 0.2), transparent 68%);
  filter: blur(18px);
  opacity: 0.7;
  z-index: -1;
}

.project-image-popup {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 226, 214, 0.12);
  border-radius: 18px;
  background: rgba(18, 19, 20, 0.74);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transform: translateY(0) rotate(var(--popup-rotate, 0deg));
  animation: subtlePopup 9s ease-in-out infinite;
}

.project-image-popup::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(11, 11, 12, 0.18));
  pointer-events: none;
}

.project-image-popup img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.03);
}

.project-image-popup-main {
  --popup-rotate: -1.4deg;
  aspect-ratio: 16 / 10;
  z-index: 3;
}

.project-image-popup-secondary {
  --popup-rotate: 1.6deg;
  aspect-ratio: 4 / 3;
  margin-left: -1.35rem;
  animation-delay: -3s;
  z-index: 2;
}

.project-image-popup-tertiary {
  --popup-rotate: -2.2deg;
  aspect-ratio: 3 / 4;
  max-height: 8.6rem;
  margin-left: -1.25rem;
  animation-delay: -6s;
  z-index: 1;
}

.project-card:hover .project-image-popup,
.project-card:focus-within .project-image-popup {
  animation-play-state: paused;
}

.project-card-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.project-card-block {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(232, 226, 214, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.project-card-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
}

.project-card-list li::marker {
  color: var(--accent);
}

.project-card-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(13rem, 0.8fr);
  gap: 0.9rem;
}

/* =========================
   Galerias de proyectos
   ========================= */
.project-gallery-slider {
  display: grid;
  gap: 0.8rem;
}

.project-gallery-stage {
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: pointer;
  touch-action: pan-y;
}

.project-gallery-stage .project-card-shot {
  pointer-events: none;
}

.project-gallery-expand {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 226, 214, 0.12);
  background: rgba(11, 11, 12, 0.44);
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.project-gallery-nav {
  display: flex;
  gap: 0.65rem;
}

.project-gallery-arrow,
.project-lightbox-arrow,
.project-lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 226, 214, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.project-gallery-arrow:hover,
.project-gallery-arrow:focus-visible,
.project-lightbox-arrow:hover,
.project-lightbox-arrow:focus-visible,
.project-lightbox-close:hover,
.project-lightbox-close:focus-visible,
.project-gallery-thumb:hover,
.project-gallery-thumb:focus-visible,
.project-gallery-stage:hover,
.project-gallery-stage:focus-visible {
  border-color: rgba(151, 173, 161, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.project-gallery-counter,
.project-lightbox-kicker {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.project-gallery-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.project-gallery-thumb {
  display: grid;
  gap: 0.6rem;
  padding: 0.55rem;
  border-radius: 20px;
  border: 1px solid rgba(232, 226, 214, 0.08);
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.project-gallery-thumb.is-active {
  border-color: rgba(207, 143, 103, 0.34);
  background: rgba(207, 143, 103, 0.08);
}

.project-gallery-thumb-image {
  width: 100%;
  aspect-ratio: 0.72 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
}

.project-gallery-thumb-copy {
  display: grid;
  gap: 0.2rem;
}

.project-gallery-thumb-copy strong,
.project-gallery-thumb-copy span {
  display: block;
}

.project-gallery-thumb-copy strong {
  color: var(--text);
  font-size: 0.84rem;
}

.project-gallery-thumb-copy span {
  color: var(--muted);
  font-size: 0.74rem;
}

.project-card-gallery-rail {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.project-card-visual {
  position: relative;
  min-height: 11rem;
  margin: 0;
  border-radius: 26px;
  border: 1px solid rgba(232, 226, 214, 0.08);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.project-card-visual-main {
  min-height: 31rem;
}

.project-card-visual-detail {
  min-height: 15rem;
}

.project-card-shot {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: saturate(1.03) contrast(1.03);
}

.project-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 13, 14, 0.03), rgba(12, 13, 14, 0.14) 54%, rgba(12, 13, 14, 0.72));
  pointer-events: none;
}

.project-card-caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
/* =========================
   Variantes visuales y enlaces
   ========================= */
}

.project-card-caption strong,
.project-card-caption span {
  display: block;
}

.project-card-caption strong {
  color: var(--text);
  font-size: 0.94rem;
}

.project-card-caption span {
  color: rgba(232, 226, 214, 0.8);
  font-size: 0.84rem;
  line-height: 1.5;
}

.project-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  align-items: center;
}

.project-card-actions .project-link {
  margin-top: 0;
}

.project-card-spotlight .project-card-visual {
  background: linear-gradient(135deg, rgba(24, 26, 27, 0.95), rgba(18, 19, 20, 0.85));
}

.project-card-orbit {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  width: 6.8rem;
  height: 6.8rem;
  border: 1px solid rgba(232, 226, 214, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.project-card-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--accent-warm);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 18px rgba(207, 143, 103, 0.36);
}

.project-card-beam {
  position: absolute;
  left: 1.2rem;
  top: 1.5rem;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, rgba(156, 182, 191, 0), rgba(156, 182, 191, 0.82), rgba(156, 182, 191, 0));
  transform: rotate(-12deg);
}

.project-card-brand .project-card-visual {
  background: linear-gradient(135deg, rgba(207, 143, 103, 0.12), rgba(184, 127, 147, 0.12) 54%, rgba(156, 182, 191, 0.1));
}

.project-card-panel {
  position: absolute;
  inset: 1.1rem 4rem 1.5rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(232, 226, 214, 0.12);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
}

.project-card-panel-secondary {
  inset: 2.4rem 1.3rem 2.3rem 8rem;
  background: linear-gradient(180deg, rgba(11, 11, 12, 0.14), rgba(255, 255, 255, 0.08));
}

.project-card-lab .project-card-visual {
  background:
    radial-gradient(circle at 80% 28%, rgba(184, 127, 147, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(18, 19, 20, 0.88), rgba(24, 26, 27, 0.95));
}

.project-card-dashboard .project-card-visual {
  background:
    radial-gradient(circle at 18% 24%, rgba(200, 159, 72, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(16, 18, 23, 0.96), rgba(21, 24, 31, 0.96));
}

.project-card-dashboard-grid {
  position: absolute;
  inset: 1rem;
  border-radius: 18px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), black 46%, transparent 100%);
}

.project-card-dashboard-bar {
  position: absolute;
  bottom: 1.25rem;
  width: 2.25rem;
  border-radius: 999px 999px 14px 14px;
  background: linear-gradient(180deg, rgba(240, 213, 138, 0.96), rgba(183, 143, 53, 0.28));
  box-shadow: 0 0 24px rgba(200, 159, 72, 0.18);
}

.project-card-dashboard-bar-a {
  left: 1.35rem;
  height: 48%;
}

.project-card-dashboard-bar-b {
  left: 4.55rem;
  height: 68%;
}

.project-card-dashboard-bar-c {
  left: 7.75rem;
  height: 36%;
}

.project-card-wave {
  position: absolute;
  inset: auto -10% -18% -10%;
  height: 72%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(184, 127, 147, 0.34), rgba(156, 182, 191, 0.08));
  filter: blur(0.6px);
}

.project-card-grid {
  position: absolute;
  inset: 1rem;
  border-radius: 18px;
  background-image:
    linear-gradient(rgba(232, 226, 214, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 226, 214, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), black 42%, transparent 100%);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: auto 1.5rem 1.1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(207, 143, 103, 0.5), rgba(156, 182, 191, 0));
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-card h3,
.project-link,
.contact-card a {
  position: relative;
  z-index: 1;
}

.project-card:hover,
.project-card:focus-within,
.contact-card:hover,
.split-section:hover {
  transform: translateY(-8px);
  border-color: rgba(151, 173, 161, 0.28);
  box-shadow: var(--shadow-strong);
  background: linear-gradient(180deg, rgba(26, 28, 29, 0.92), rgba(18, 19, 20, 0.92));
}

.project-card:hover .project-card-shot,
.project-card:focus-within .project-card-shot {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.project-card:hover::after,
.project-card:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}

.project-card span,
.skill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(30, 32, 33, 0.92);
  color: var(--muted);
}

.project-card-meta {
  margin-top: auto;
  padding-top: 1rem;
}

.project-card-meta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}

.project-card-meta-link::after {
  content: "↗";
  font-size: 0.9rem;
  transform: translateY(-1px);
}

.project-card:hover .project-card-meta-link,
.project-card:focus-within .project-card-meta-link,
.project-card-meta-link:focus-visible,
.project-card-meta-link:hover {
  color: var(--accent-strong);
  transform: translateX(4px);
}

.project-card-meta strong {
  color: var(--text);
  font-weight: 600;
}

.project-card-spotlight .project-card-note,
.project-card-spotlight .project-card-meta strong {
  color: var(--accent-cool);
}

.project-card-brand .project-card-note,
.project-card-brand .project-card-meta strong {
  color: var(--accent-warm);
}

.project-card-lab .project-card-note,
.project-card-lab .project-card-meta strong {
  color: #d7b5c2;
}

.project-card-dashboard .project-card-note,
.project-card-dashboard .project-card-meta strong {
  color: #f0d58a;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
  font-weight: 700;
  color: var(--text);
  transition: transform 0.25s ease, color 0.25s ease;
}

.project-link-private {
  color: var(--muted);
  cursor: default;
}

/* =========================
   Lightbox
   ========================= */
.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.project-lightbox[hidden] {
  display: none;
}

.project-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 8, 0.84);
  backdrop-filter: blur(14px);
}

.project-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 2rem));
  border-radius: 30px;
  border: 1px solid rgba(232, 226, 214, 0.12);
  background: linear-gradient(180deg, rgba(22, 24, 25, 0.98), rgba(16, 17, 18, 0.98));
  box-shadow: var(--shadow-strong);
  padding: 1rem;
}

.project-lightbox-close {
  margin-left: auto;
  margin-bottom: 0.8rem;
}

.project-lightbox-body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.project-lightbox-figure {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.project-lightbox-image {
  width: 100%;
  max-height: min(72vh, 880px);
  object-fit: contain;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  touch-action: pan-y;
}

.project-lightbox-caption {
  display: grid;
  gap: 0.35rem;
}

.project-lightbox-caption strong,
.project-lightbox-caption span {
  display: block;
}

.project-lightbox-caption strong {
  color: var(--text);
  font-size: 1rem;
}

.project-lightbox-caption span {
  color: var(--muted);
}

body.lightbox-open {
  overflow: hidden;
}

.project-link::after {
  content: "↗";
  font-size: 0.95rem;
  transform: translateY(-1px);
}

.project-link-private::after {
  content: "";
}

.project-card:hover .project-link,
.project-card:focus-within .project-link {
  transform: translateX(4px);
  color: var(--accent-strong);
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.skill-list span {
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.skill-list span:hover,
.skill-list span:focus-visible {
  transform: translateY(-4px) rotate(-1deg);
  border-color: rgba(156, 182, 191, 0.28);
  color: var(--text);
}

.contact-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.92fr);
  gap: 2rem;
  min-height: min(42rem, calc(100vh - 4rem));
  padding: clamp(1.8rem, 4vw, 3rem);
  border-color: rgba(109, 81, 53, 0.16);
  background:
    radial-gradient(circle at 12% 16%, rgba(207, 143, 103, 0.16), transparent 26%),
    radial-gradient(circle at 84% 82%, rgba(156, 182, 191, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(233, 223, 207, 0.98), rgba(214, 198, 178, 0.94));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.contact-section::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 46, 33, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 46, 33, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 92%);
  opacity: 0.4;
}

.contact-section::after {
  content: "HABLEMOS";
  position: absolute;
  right: -0.08em;
  bottom: -0.1em;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
  color: rgba(46, 33, 22, 0.08);
  pointer-events: none;
}

.contact-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  align-content: center;
}

.contact-section .section-tag {
  color: #7b5c3e;
}

.contact-section .contact-card-label {
  color: rgba(245, 239, 230, 0.9);
}

.contact-section .kinetic-title {
  max-width: 12ch;
  color: #1e1814;
}

.contact-section .title-accent-gradient {
  background: linear-gradient(120deg, #b76a38 0%, #7f98a3 48%, #8a5d6c 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.contact-section .title-accent-highlight {
  color: #6f8f9f;
  text-shadow: 0 0 18px rgba(111, 143, 159, 0.12);
}

.contact-section .title-accent-serif {
  color: #9a6b54;
}

.contact-section p {
  color: rgba(43, 33, 24, 0.84);
}

.contact-lead {
  max-width: 46ch;
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.75;
}

.contact-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 46, 33, 0.1);
  background: rgba(255, 252, 247, 0.52);
  color: #201914;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.contact-proof span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #d9b08f, #b78157);
  box-shadow: 0 0 16px rgba(183, 129, 87, 0.28);
}
}

.packages-section {
  position: relative;
  overflow: hidden;
  gap: 2.75rem;
  min-height: calc(100vh - 2rem);
  padding: clamp(2.2rem, 4vw, 3.4rem);
  background:
    radial-gradient(circle at 12% 12%, rgba(207, 143, 103, 0.1), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(156, 182, 191, 0.09), transparent 24%),
    linear-gradient(180deg, rgba(20, 21, 22, 0.88), rgba(12, 13, 14, 0.96));
}

.packages-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 226, 214, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 226, 214, 0.035) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, black 36%, transparent 92%);
  opacity: 0.3;
  pointer-events: none;
}

.packages-section::after {
  content: "PAQUETES";
  position: absolute;
  right: -0.04em;
  bottom: -0.08em;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(7rem, 18vw, 15rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  color: rgba(232, 226, 214, 0.045);
  line-height: 0.8;
  pointer-events: none;
}

.packages-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.45fr);
  gap: 3rem;
  align-items: start;
}

.packages-intro {
  position: sticky;
  top: 5.6rem;
  display: grid;
  gap: 1.25rem;
  align-content: start;
  min-height: calc(100vh - 8rem);
}

.packages-title,
.packages-copy,
.packages-note,
.package-band-tier,
.package-band-price,
.package-band-kicker,
.package-band-summary {
  margin: 0;
}

.packages-title {
  max-width: 8ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.6rem, 7vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.packages-copy {
  max-width: 30ch;
  color: var(--text);
  font-size: 1.14rem;
  line-height: 1.65;
}

.packages-note {
  max-width: 24ch;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.packages-rail {
  display: grid;
  align-content: center;
}

.package-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: 1.75rem 2.4rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(232, 226, 214, 0.1);
}

.package-band:last-child {
  border-bottom: 1px solid rgba(232, 226, 214, 0.1);
}

.package-band-featured {
  border-top-color: rgba(207, 143, 103, 0.22);
  border-bottom-color: rgba(207, 143, 103, 0.18);
}

.package-band-featured::before {
  content: "";
  position: absolute;
  inset: 0 -1.5rem;
  background: linear-gradient(90deg, rgba(207, 143, 103, 0), rgba(207, 143, 103, 0.08), rgba(207, 143, 103, 0));
  pointer-events: none;
}

.creators-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(1.25rem, 3vw, 2.35rem);
  align-items: start;
  min-height: 0;
  padding: clamp(1.8rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, var(--accent-warm), #9c6b52 58%, #6f5f57);
  box-shadow: 0 24px 58px rgba(207, 143, 103, 0.16);
}

.creators-section::after {
  content: "CREADORES";
  position: absolute;
  right: -0.05em;
  bottom: -0.08em;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  color: rgba(23, 18, 15, 0.08);
  line-height: 0.8;
  pointer-events: none;
}

.creators-heading {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.creators-heading .kinetic-title {
  max-width: 13ch;
}

.creators-offer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1rem, 2vw, 1.45rem);
}

.creators-offer-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(23, 18, 15, 0.18);
}

.creators-section .section-tag,
.creators-section .kinetic-title,
.creators-offer-title,
.creators-offer-note,
.creators-offer-kicker,
.creators-offer-summary,
.creators-list {
  color: #17120f;
}

.creators-offer-title,
.creators-offer-kicker {
  margin: 0;
}

.creators-offer-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.9rem, 6.2vw, 5.2rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.creators-offer-note {
  margin: 0;
  color: rgba(23, 18, 15, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-align: right;
  text-transform: uppercase;
}

.creators-offer-body {
  display: grid;
  gap: 0.9rem;
}

.creators-offer-kicker {
  max-width: 20ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
  line-height: 1;
}

.creators-offer-summary {
  max-width: 52ch;
  margin: 0;
  color: rgba(23, 18, 15, 0.82);
  font-size: 1.02rem;
  line-height: 1.7;
}

.creators-budget-note {
  max-width: 46ch;
  margin: 0.1rem 0 0;
  color: rgba(23, 18, 15, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.creators-list {
  margin: 0.2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  list-style: none;
}

.creators-list li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(23, 18, 15, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(23, 18, 15, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.creators-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin-top: 0.2rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(23, 18, 15, 0.18);
  border-radius: 999px;
  background: #17120f;
  color: var(--text);
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.creators-cta:hover,
.creators-cta:focus-visible {
  transform: translateY(-3px);
  background: rgba(23, 18, 15, 0.84);
  color: #fff7ec;
}

.package-band-header {
  display: grid;
  gap: 0.3rem;
  align-content: start;
}

.package-band-tier {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
  color: var(--text);
}

.package-band-price {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.package-band-body {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.package-band-kicker {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 0.98;
  color: #f1d7c5;
}

.package-band-summary {
  max-width: 44ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.package-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.package-list li::marker {
  color: var(--accent);
}

.contact-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-section .contact-card {
  position: relative;
  z-index: 1;
  align-content: start;
  padding: clamp(1.3rem, 2.5vw, 1.9rem);
  border-color: rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(24, 21, 19, 0.95), rgba(17, 15, 14, 0.98)),
    linear-gradient(135deg, rgba(207, 143, 103, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 40px rgba(70, 47, 30, 0.18);
}

.contact-section .contact-card::before {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 38%, rgba(207, 143, 103, 0.08));
}

.contact-card a {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-section .contact-card a {
  display: grid;
  gap: 0.28rem;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(232, 226, 214, 0.08);
  color: var(--text);
}

.contact-link-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 226, 214, 0.68);
}

.contact-section .contact-card a strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  transform: translateX(6px);
  border-color: rgba(151, 173, 161, 0.28);
  background: var(--surface-soft);
}

.contact-section .contact-card a:hover,
.contact-section .contact-card a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(207, 143, 103, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.contact-card-note {
  margin: 0.35rem 0 0;
  color: rgba(232, 226, 214, 0.82);
  line-height: 1.65;
}

/* =========================
   Footer y legal
   ========================= */
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(232, 226, 214, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(207, 143, 103, 0.08), transparent 28%),
    rgba(14, 15, 16, 0.62);
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-mark {
  width: 42px;
  height: 42px;
  opacity: 0.88;
}

.footer-title,
.footer-copy,
.footer-legal p {
  margin: 0;
}

.footer-title {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.footer-copy {
  max-width: 30ch;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-nav,
.footer-contact,
.footer-legal {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-nav a,
.footer-contact a,
.footer-legal a {
  color: rgba(232, 226, 214, 0.82);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--accent-warm);
  transform: translateX(3px);
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 226, 214, 0.08);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* =========================
   Pagina legal
   ========================= */
.legal-page {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.4rem);
}

.legal-hero {
  display: grid;
  gap: 1rem;
}

.legal-hero p {
  max-width: 58ch;
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-content section {
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid rgba(232, 226, 214, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.legal-content h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.legal-content p {
  margin: 0;
}

.legal-content p + p {
  margin-top: 0.55rem;
}

.legal-content a {
  color: var(--accent-warm);
  font-weight: 700;
}

/* =========================
   Motion y estados globales
   ========================= */
.depth-card {
  transform-style: preserve-3d;
}

.depth-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(151, 173, 161, 0.16), transparent 24%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.depth-card:hover::after,
.depth-card:focus-within::after {
  opacity: 1;
}

.reveal-on-load,
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
  filter: blur(12px);
}

.reveal-on-load.is-visible,
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-on-load:nth-of-type(2) {
  transition-delay: 0.14s;
}

.reveal-on-scroll:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal-on-scroll:nth-child(3) {
  transition-delay: 0.16s;
}

.site-header.is-condensed {
  transform: translateY(-2px) scale(0.985);
  border-color: rgba(151, 173, 161, 0.14);
  background: rgba(14, 15, 16, 0.72);
}

body.is-ready .site-header,
body.is-ready .reveal-on-load {
  animation: riseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-ready .site-header {
  animation-delay: 0.05s;
}

/* =========================
   Keyframes
   ========================= */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
    filter: blur(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes subtlePopup {
  0%,
  100% {
    opacity: 0.82;
    transform: translateY(4px) rotate(var(--popup-rotate, 0deg)) scale(0.985);
  }

  38%,
  62% {
    opacity: 1;
    transform: translateY(-5px) rotate(var(--popup-rotate, 0deg)) scale(1);
  }
}

@keyframes ambientFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 18px, 0) scale(1.04);
  }
}

@keyframes streakDrift {
  0% {
    transform: translate3d(-4%, 0, 0);
    opacity: 0;
  }

  12%,
  88% {
    opacity: 0.4;
  }

  100% {
    transform: translate3d(22%, 0, 0);
    opacity: 0;
  }
}

@keyframes titlePulse {
  0%,
  100% {
    transform: translateY(0);
    filter: saturate(1);
  }

  50% {
    transform: translateY(-0.02em);
    filter: saturate(1.12);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px) {
  .hero,
  .split-section,
  .contact-section,
  .creators-section,
  .project-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 1rem;
    padding: 1.15rem;
  }

  .hero-copy,
  .hero-card {
    min-height: 0;
  }

  .hero-card {
    margin-left: 0;
    padding: 1.25rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(232, 226, 214, 0.08);
  }

  .contact-section {
    min-height: 0;
    gap: 1.35rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-proof span {
    width: 100%;
    justify-content: flex-start;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .ambient-grid {
    opacity: 0.18;
  }

  .kinetic-title {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 1rem), var(--max-width));
    padding-top: 0.85rem;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-shell::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(5, 6, 8, 0.52);
    backdrop-filter: blur(10px);
    z-index: 8;
  }

  .site-header {
    top: 0.7rem;
    padding: 0.58rem 0.7rem;
    border-radius: 18px;
    background: rgba(14, 15, 16, 0.46);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    align-items: center;
    z-index: 12;
  }

  .brand {
    gap: 0.5rem;
    align-items: center;
    max-width: calc(100% - 4.5rem);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-title {
    font-size: 0.74rem;
  }

  .brand-subtitle {
    font-size: 0.43rem;
    letter-spacing: 0.12em;
  }

  .menu-toggle {
    display: inline-block;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: transparent;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }

  .menu-toggle span {
    width: 16px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] {
    transform: rotate(90deg);
    border-color: rgba(207, 143, 103, 0.24);
    background: rgba(207, 143, 103, 0.08);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 4.9rem;
    right: 0.75rem;
    left: 0.75rem;
    bottom: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(232, 226, 214, 0.08);
    background:
      linear-gradient(180deg, rgba(18, 19, 20, 0.96), rgba(18, 19, 20, 0.92)),
      radial-gradient(circle at top right, rgba(207, 143, 103, 0.08), transparent 32%);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
    gap: 0.45rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px) scale(0.985);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 11;
  }

  .site-nav.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.96rem;
    letter-spacing: 0.01em;
  }

  .site-nav a::after {
    bottom: 0.75rem;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.15rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .hero {
    min-height: 0;
    align-content: start;
    padding: 1rem;
    border-radius: 28px;
  }

  .hero-copy,
  .hero-card,
  .content-section {
    border-radius: 24px;
  }

  .hero-copy,
  .hero-card {
    border-radius: 0;
  }

  .hero-copy {
    padding: 1.5rem;
    justify-content: flex-end;
    min-height: 0;
    background: transparent;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-copy-topline {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .hero-stamp {
    max-width: 32ch;
    text-align: left;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
  }

  .eyebrow::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #f0d58a, var(--accent-warm));
    box-shadow: 0 0 18px rgba(207, 143, 103, 0.3);
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 34ch;
  }

  .hero-highlights {
    gap: 0.6rem;
    margin-top: 1.15rem;
  }

  .hero-highlights span {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 1.4rem;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    padding: 1.2rem 0 0;
    margin-top: -0.15rem;
  }

  .hero-card-value {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .section-heading {
    margin-bottom: 1.1rem;
  }

  .content-section {
    padding: 1.25rem;
  }

  .about-heading {
    min-height: 18rem;
    padding: 1.15rem;
    border-radius: 22px;
  }

  .project-grid {
    gap: 1rem;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .packages-shell {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .packages-intro {
    position: static;
    min-height: 0;
  }

  .packages-title {
    max-width: 12ch;
    font-size: clamp(3rem, 11vw, 4.6rem);
  }

  .ambient-orb-left {
    width: 18rem;
    height: 18rem;
  }

  .ambient-orb-right {
    width: 22rem;
    height: 22rem;
    top: 24rem;
  }

  .project-card {
    padding: 1.1rem;
    grid-template-columns: 1fr;
    gap: 1rem;
    min-width: auto;
    scroll-snap-align: unset;
  }

  .creators-offer-header {
    align-items: start;
    flex-direction: column;
  }

  .creators-offer-note {
    text-align: left;
  }

  .package-band {
    grid-template-columns: 1fr;
    gap: 0.95rem;
    padding: 1.35rem 0;
  }

  .project-card-topline,
  .project-card-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-card-topline {
    gap: 0.3rem;
  }

  .project-card-columns,
  .project-gallery-track {
    grid-template-columns: 1fr;
  }

  .project-image-popups {
    width: 100%;
    min-height: 7.4rem;
    grid-template-columns: 1fr 0.82fr 0.62fr;
    gap: 0.35rem;
  }

  .project-image-popup {
    border-radius: 14px;
  }

  .project-image-popup-secondary,
  .project-image-popup-tertiary {
    margin-left: -0.8rem;
  }

  .project-card-visual {
    min-height: 12.5rem;
    margin: 0;
    border-radius: 20px;
  }

  .project-card-visual-main {
    min-height: 18rem;
  }

  .project-gallery-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-gallery-nav,
  .project-card-actions {
    width: 100%;
  }

  .project-gallery-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-lightbox-dialog {
    width: min(calc(100vw - 1rem), 1100px);
    padding: 0.85rem;
  }

  .project-lightbox-body {
    grid-template-columns: 1fr;
  }

  .project-lightbox-arrow {
    width: 100%;
  }

  .project-card-caption {
    padding: 0.85rem;
  }

  .project-card-meta {
    gap: 0.45rem;
    padding-top: 0.85rem;
  }

  .skill-list {
    gap: 0.65rem;
  }

  .skill-list span {
    width: 100%;
    justify-content: center;
  }

  .contact-card {
    padding: 1.1rem;
  }

  .contact-card a {
    padding: 0.95rem 1rem;
  }

  .contact-section {
    padding: 1.3rem;
  }

  .contact-section::after {
    font-size: clamp(4.2rem, 18vw, 8rem);
  }

  .project-card-panel {
    inset: 1rem 3.2rem 1.5rem 1rem;
  }

  .project-card-panel-secondary {
    inset: 2.8rem 1rem 2rem 7rem;
  }

}

@media (max-width: 520px) {
  .site-shell {
    width: min(calc(100% - 0.75rem), var(--max-width));
    padding-bottom: 2.75rem;
  }

  .site-header {
    top: 0.65rem;
    padding: 0.52rem 0.62rem;
    border-radius: 16px;
  }

  .site-nav {
    top: 4.55rem;
    right: 0.55rem;
    left: 0.55rem;
    bottom: auto;
    padding: 0.7rem;
    border-radius: 18px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-title {
    font-size: 0.68rem;
  }

  .brand-subtitle {
    display: none;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.45rem);
    line-height: 0.94;
  }

  .hero-copy,
  .hero-card,
  .content-section,
  .contact-card {
    padding: 1rem;
    border-radius: 22px;
  }

  .hero-copy,
  .hero-card {
    padding: 1rem 0 0;
    border-radius: 0;
  }

  .hero-copy {
    min-height: 0;
    padding-top: 1rem;
  }

  .hero-card {
    margin-top: -0.35rem;
  }

  .hero .kinetic-title {
    font-size: clamp(2.7rem, 12vw, 3.15rem);
    line-height: 0.96;
  }

  .hero-stamp {
    font-size: 0.68rem;
  }

  .contact-section {
    padding: 1rem;
  }

  .contact-proof {
    gap: 0.55rem;
  }

  .hero-text {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .eyebrow {
    margin-bottom: 0.55rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .button-primary {
    min-height: 54px;
  }

  .button-secondary {
    min-height: 48px;
  }

  .site-nav {
    padding: 0.65rem;
  }

  .site-nav a {
    padding: 0.82rem 0.88rem;
  }

  .hero-highlights span,
  .button,
  .project-card span,
  .skill-list span {
    min-height: 44px;
  }

  .project-card {
    padding: 0.95rem;
    min-width: auto;
  }

  .creators-list {
    grid-template-columns: 1fr;
  }

  .package-band-tier {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .project-card-columns,
  .project-gallery-track {
    grid-template-columns: 1fr;
  }

  .project-image-popups {
    min-height: 6.2rem;
    padding-bottom: 0.35rem;
  }

  .project-image-popup-main {
    aspect-ratio: 1.25 / 1;
  }

  .project-image-popup-secondary {
    aspect-ratio: 1 / 1;
  }

  .project-image-popup-tertiary {
    max-height: 6.2rem;
  }

  .project-card-visual-main {
    min-height: 15rem;
  }

  .project-card h3 {
    font-size: 1.15rem;
  }

  .project-card-status,
  .project-card-caption span,
  .project-card-list {
    font-size: 0.9rem;
  }

  .project-gallery-expand,
  .project-gallery-thumb-copy span,
  .project-gallery-counter {
    font-size: 0.72rem;
  }

  .project-card p,
  .contact-section p,
  .content-section p {
    font-size: 0.95rem;
  }

  .project-card-meta strong,
  .project-card-note {
    font-size: 0.68rem;
  }
}

/* =========================
  Ajustes de interaccion
  ========================= */
body.custom-cursor-enabled,
body.custom-cursor-enabled a,
body.custom-cursor-enabled button,
body.custom-cursor-enabled .depth-card,
body.custom-cursor-enabled .hero-highlights span,
body.custom-cursor-enabled .skill-list span {
  cursor: none;
}

/* =========================
  Accesibilidad / reduced motion
  ========================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-load,
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .ambient-streak,
  .hero-copy::after,
  .title-accent-gradient,
  .title-accent-highlight,
  .title-accent-serif {
    display: none;
  }

  .project-image-popup {
    animation: none;
  }
}
