/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #fafaf7;
  --bg-2:      #efe6d8;
  --paper:     #ffffff;
  --ink:       #2a241c;
  --ink-soft:  #4a4038;
  --ink-mute:  #8a8078;
  --accent:    #c89b3c;   /* mostaza */
  --accent-2:  #8b7355;   /* tierra */
  --accent-soft: rgba(200, 155, 60, 0.16);
  --line:      rgba(42, 36, 28, 0.12);
  --cream:     #fafaf7;

  --serif: "Fraunces", "Iowan Old Style", ui-serif, Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -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%; }
img { height: auto; }
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.08; letter-spacing: -0.01em; color: var(--ink); font-family: var(--serif); font-weight: 600; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.2rem; background: var(--ink); color: var(--cream);
  border-radius: 8px; font-weight: 500; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container { max-width: 1240px; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px) { .container { padding-inline: 2rem; } }

.kicker {
  display: inline-block;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: .9rem;
}
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); font-style: italic; }
.section-head p { margin-top: .9rem; color: var(--ink-mute); font-size: 1.05rem; }

.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;
}

/* =============================================================
   4. Typography extras
   ============================================================= */
em { font-style: italic; color: var(--accent-2); }
.eyebrow-em { color: var(--accent); }

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.9rem; border-radius: 100px;
  font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s, color .3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 10px 26px -8px rgba(200,155,60,.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -10px rgba(200,155,60,.6); }
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-ghost {
  border: 1.5px solid var(--line); color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--paper); transform: translateY(-3px); }

.btn-ghost-invert {
  border: 1.5px solid rgba(255,255,255,.55); color: #fff;
}
.btn-ghost-invert:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }

.nav-link {
  position: relative; padding: .3rem 0; font-size: .95rem; font-weight: 500; color: var(--ink-soft);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-link.is-active { color: var(--ink); }

/* =============================================================
   6. Sections — Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(250, 250, 247, .88);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 var(--line);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.25rem; color: var(--ink); transition: color .4s var(--ease-out); }
.brand-tag { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-2); margin-top: .15rem; transition: color .4s var(--ease-out); }
.nav-link { transition: color .4s var(--ease-out); }

/* On pages whose first section is dark (hero image / tierra bg), nav text starts light */
.nav.on-dark:not(.is-scrolled) .brand-name,
.nav.on-dark:not(.is-scrolled) .nav-link { color: rgba(255,255,255,.95); }
.nav.on-dark:not(.is-scrolled) .brand-tag { color: rgba(255,255,255,.68); }
.nav.on-dark:not(.is-scrolled) .nav-link::after { background: #fff; }
.nav.on-dark:not(.is-scrolled) .nav-burger span,
.nav.on-dark:not(.is-scrolled) .nav-burger::before,
.nav.on-dark:not(.is-scrolled) .nav-burger::after { background: #fff; }

.nav-links { display: none; align-items: center; gap: 2.1rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; } }

.nav-burger {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 50%;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span, .nav-burger::before, .nav-burger::after { content: ""; display: block; width: 20px; height: 1.5px; background: var(--ink); position: relative; transition: transform .3s var(--ease-out), opacity .3s; }
.nav-burger::before { transform: translateY(-6px); }
.nav-burger::after { transform: translateY(5px); }
.nav-burger[aria-expanded="true"] span { opacity: 0; }
.nav-burger[aria-expanded="true"]::before { transform: translateY(0) rotate(45deg); }
.nav-burger[aria-expanded="true"]::after { transform: translateY(-1.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 190;
  background: var(--cream);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0 0 0 0); }
.nav-mobile ul { display: flex; flex-direction: column; gap: 1.7rem; text-align: center; }
.nav-mobile a { font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--ink); }

/* =============================================================
   Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(20,15,8,.92) 0%, rgba(20,15,8,.55) 42%, rgba(20,15,8,.32) 68%, rgba(20,15,8,.5) 100%);
}
.hero-embers { position: absolute; inset: 0; z-index: 1; pointer-events: none; mix-blend-mode: screen; }
.hero-content {
  position: relative; z-index: 2;
  padding: 7.5rem 0 4.5rem;
  width: 100%;
  color: #fff;
}
.hero-content .kicker { color: var(--accent); }
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  color: #fff;
  max-width: 15ch;
  margin-bottom: 1.4rem;
}
.hero-title em { color: var(--accent); font-style: italic; }
.hero-sub {
  max-width: 46ch;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.82);
  font-weight: 300;
  margin-bottom: 2.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.scroll-cue {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.65); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
}
.scroll-cue span { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,.9), transparent); animation: cueMove 2.2s ease-in-out infinite; }
@keyframes cueMove { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(.6); opacity: .4; } }

/* Split text words */
[data-split] .split-word { display: inline-block; will-change: transform, opacity; }

.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   Manifesto
   ============================================================= */
.manifesto {
  padding: 5.5rem 0;
  background: var(--bg);
}
.manifesto .container {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .manifesto .container { grid-template-columns: .8fr 2fr; gap: 4rem; }
}
.manifesto-quote { font-family: var(--serif); font-style: italic; font-size: 6rem; color: var(--accent); line-height: 1; opacity: .8; }
.manifesto p { font-size: clamp(1.2rem, 2.1vw, 1.6rem); color: var(--ink); font-family: var(--serif); font-weight: 400; line-height: 1.4; }

/* =============================================================
   Bento rituals
   ============================================================= */
.rituals { padding: 4rem 0 6rem; background: var(--bg); }
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
@media (min-width: 720px) { .bento { grid-template-columns: repeat(12, 1fr); } }

.bento-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-2);
  aspect-ratio: 4 / 5;
}
@media (min-width: 720px) {
  /* Fixed row height (not aspect-ratio) so grid's default stretch can't
     distort items — each column-span then produces its own natural
     landscape / portrait feel at the SAME height, which is the point
     of a bento layout. Mixing aspect-ratio with grid row-stretch was
     the cause of the warped, empty-looking cards. */
  .bento { grid-auto-rows: 280px; }
  .bento-item { aspect-ratio: auto; }
  .bento-item[data-size="lg"] { grid-column: span 5; }
  .bento-item[data-size="md"] { grid-column: span 3; }
  .bento-item[data-size="sm"] { grid-column: span 2; }
}

.bento-item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: sepia(.1) saturate(1.05);
  transition: transform 1s var(--ease-soft), filter .6s var(--ease-soft);
}
.bento-item::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,15,8,0) 35%, rgba(20,15,8,.86) 100%);
}
.bento-item::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(200,155,60,.4), transparent 60%);
  opacity: 0; transition: opacity .4s; mix-blend-mode: screen;
}
.bento-item:hover::after { opacity: 1; }
.bento-item:hover img { transform: scale(1.09); filter: sepia(.02) saturate(1.2) brightness(1.03); }
.bento-item:hover {
  box-shadow: 0 40px 70px -25px rgba(200,155,60,.4), 0 0 0 1px rgba(200,155,60,.3);
}

.bento-caption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.3rem; color: #fff; }
.bento-caption h3 { font-size: 1.08rem; color: #fff; font-style: italic; margin-bottom: .3rem; }
.bento-caption p { font-size: .84rem; color: rgba(255,255,255,.78); line-height: 1.4; }
@media (min-width: 720px) { .bento-item[data-size="sm"] .bento-caption p { display: none; } }

/* =============================================================
   Decoración
   ============================================================= */
.decoracion { padding: 1rem 0 6rem; background: var(--bg); }
.decor-group { margin-bottom: 3.5rem; }
.decor-group:last-child { margin-bottom: 0; }
.decor-group h3 {
  font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-2); padding-bottom: .9rem; margin-bottom: 1.8rem; border-bottom: 1px solid var(--line);
}
.decor-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .decor-grid { grid-template-columns: repeat(4, 1fr); } }
.decor-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.decor-media {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 16px; margin-bottom: 1rem;
  overflow: hidden; position: relative; isolation: isolate;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease-soft), border-color .3s, box-shadow .5s var(--ease-soft);
}
.decor-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(.1) saturate(1.05);
  transition: transform 1s var(--ease-soft), filter .6s var(--ease-soft);
}
.decor-item:hover .decor-media { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 24px 44px -20px rgba(139,115,85,.4); }
.decor-item:hover .decor-media img { transform: scale(1.08); filter: sepia(.02) saturate(1.15); }
.decor-item h4 { font-family: var(--sans); font-size: .92rem; font-weight: 700; letter-spacing: .01em; text-transform: uppercase; color: var(--ink); margin-bottom: .3rem; }
.decor-item p { font-size: .78rem; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-mute); }

/* =============================================================
   Marquee
   ============================================================= */
.marquee-section { padding: 2.2rem 0; background: var(--accent-2); overflow: hidden; }
.marquee { overflow: hidden; position: relative; display: flex; flex-wrap: nowrap; }
.marquee-track { display: inline-flex; gap: 2.5rem; white-space: nowrap; will-change: transform; }
.marquee-track span { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: rgba(255,255,255,.92); }
.marquee-track span.dot { color: var(--accent); font-style: normal; }

/* =============================================================
   Testimonials
   ============================================================= */
.testimonials { padding: 6.5rem 0; background: var(--bg-2); }
.t-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .t-grid { grid-template-columns: repeat(3, 1fr); } }
.t-card {
  background: var(--paper); border-radius: 20px; padding: 2.2rem;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.t-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -25px rgba(139,115,85,.35); }
.t-stars { display: flex; gap: .2rem; margin-bottom: 1.1rem; color: var(--accent); }
.t-stars svg { width: 16px; height: 16px; fill: currentColor; }
.t-quote { font-family: var(--serif); font-style: italic; font-size: 1.08rem; color: var(--ink); flex-grow: 1; line-height: 1.5; }
.t-meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.t-name { font-weight: 700; color: var(--ink); }
.t-date { font-size: .75rem; color: var(--ink-mute); }

/* =============================================================
   Pricing
   ============================================================= */
.pricing { padding: 6.5rem 0 7rem; background: var(--bg); }
.p-grid { display: grid; gap: 1.8rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 860px) { .p-grid { grid-template-columns: repeat(3, 1fr); } }
.p-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 22px;
  padding: 2.6rem 2.2rem; position: relative;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.p-card:hover { transform: translateY(-6px); }
.p-card.is-featured {
  background: var(--ink); color: var(--cream); border-color: transparent;
}
@media (min-width: 860px) { .p-card.is-featured { transform: scale(1.045); } .p-card.is-featured:hover { transform: scale(1.045) translateY(-6px); } }
.p-badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 100px; margin-bottom: 1.2rem;
}
.p-card h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.p-card.is-featured h3 { color: var(--cream); }
.p-desc { font-size: .92rem; color: var(--ink-mute); min-height: 2.6em; margin-bottom: 1.4rem; }
.p-card.is-featured .p-desc { color: rgba(250,250,247,.72); }
.p-price { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; margin-bottom: 1.6rem; }
.p-price span { font-size: 1rem; font-family: var(--sans); font-weight: 500; color: var(--ink-mute); }
.p-card.is-featured .p-price span { color: rgba(250,250,247,.6); }
.p-list { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
.p-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .92rem; }
.p-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: .15rem; color: var(--accent); }
.p-card.is-featured .p-list svg { color: var(--accent); }
.p-cta { width: 100%; padding: .9rem; border-radius: 100px; text-align: center; font-weight: 600; background: var(--ink); color: #fff; transition: transform .4s var(--ease-soft); }
.p-card.is-featured .p-cta { background: var(--accent); }
.p-cta:hover { transform: translateY(-3px); }

/* =============================================================
   CTA final
   ============================================================= */
.cta-final {
  position: relative; padding: 7rem 0; text-align: center; overflow: hidden; isolation: isolate;
  background: var(--ink); color: var(--cream);
}
.cta-final::before {
  content: ""; position: absolute; inset: -20% -10%; z-index: -1;
  background: radial-gradient(45% 45% at 50% 30%, rgba(200,155,60,.35), transparent 70%);
  filter: blur(60px);
}
.cta-final h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); max-width: 18ch; margin-inline: auto; margin-bottom: 1.2rem; }
.cta-final p { color: rgba(250,250,247,.72); max-width: 46ch; margin-inline: auto; margin-bottom: 2.2rem; }
.cta-final .hero-actions { justify-content: center; }

/* =============================================================
   Footer
   ============================================================= */
.footer { padding: 3.5rem 0 2.5rem; background: var(--bg-2); }
.footer-top { display: grid; gap: 2.5rem; grid-template-columns: 1fr; margin-bottom: 2.5rem; }
@media (min-width: 780px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand p { margin-top: 1rem; color: var(--ink-mute); max-width: 34ch; font-size: .92rem; }
.footer h4 { font-family: var(--sans); font-weight: 700; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-links a { color: var(--ink-mute); font-size: .92rem; transition: color .25s; }
.footer-links a:hover { color: var(--accent-2); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  padding-top: 1.8rem; border-top: 1px solid var(--line);
  font-size: .8rem; color: var(--ink-mute);
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* =============================================================
   Otros ritos page
   ============================================================= */
.page-hero {
  position: relative; padding: 9.5rem 0 5.5rem; text-align: center; overflow: hidden; isolation: isolate;
  background: var(--accent-2); color: #fff;
}
.page-hero::before {
  content: ""; position: absolute; inset: -30% -10%; z-index: -1;
  background:
    radial-gradient(50% 40% at 30% 30%, rgba(200,155,60,.5), transparent 65%),
    radial-gradient(45% 40% at 75% 70%, rgba(42,36,28,.4), transparent 65%);
  filter: blur(70px); opacity: .85;
}
.page-hero .kicker { color: #ffe6a8; }
.page-hero h1 { color: #fff; max-width: 20ch; margin-inline: auto; }

.otros-grid { padding: 6rem 0 7rem; background: var(--bg); }
.o-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .o-grid { grid-template-columns: 1fr 1fr; } }
.o-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.o-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -25px rgba(139,115,85,.35); }
.o-media { aspect-ratio: 16/10; overflow: hidden; }
.o-media img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.1) saturate(1.05); transition: transform 1s var(--ease-soft); }
.o-card:hover .o-media img { transform: scale(1.07); }
.o-body { padding: 2rem; }
.o-body .kicker { margin-bottom: .5rem; }
.o-body h3 { font-size: 1.4rem; margin-bottom: .8rem; }
.o-body p { color: var(--ink-mute); font-size: .96rem; }

/* =============================================================
   Sobre mí page
   ============================================================= */
.about-hero { padding: 9.5rem 0 6rem; background: var(--bg); }
.about-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 960px) { .about-grid { grid-template-columns: .85fr 1.15fr; gap: 5rem; } }
.about-figure {
  position: relative; border-radius: 200px 200px 24px 24px; overflow: hidden;
  aspect-ratio: 3/4; box-shadow: 0 40px 80px -30px rgba(42,36,28,.35);
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .kicker { color: var(--accent-2); }
.about-copy h1 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 1.3rem; }
.about-copy > p { font-size: 1.1rem; color: var(--ink-mute); margin-bottom: 2.2rem; max-width: 48ch; }

.credential-list { display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2.4rem; }
.credential { display: flex; align-items: flex-start; gap: 1rem; }
.credential svg { width: 26px; height: 26px; color: var(--accent-2); flex-shrink: 0; margin-top: .1rem; }
.credential strong { display: block; color: var(--ink); font-weight: 700; font-size: 1.02rem; }

.stat-row { display: flex; gap: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.stat-num { font-family: var(--serif); font-style: italic; font-size: 2.6rem; color: var(--accent); line-height: 1; }
.stat-label { font-size: .8rem; color: var(--ink-mute); margin-top: .4rem; max-width: 14ch; }

/* =============================================================
   Créditos page
   ============================================================= */
.credits-page { padding: 9.5rem 0 6rem; min-height: 60vh; }
.credits-back { display: inline-flex; align-items: center; gap: .4rem; color: var(--ink-mute); font-size: .9rem; margin-bottom: 2rem; }
.credits-back:hover { color: var(--accent-2); }
.credits-page h1 { margin-bottom: .8rem; }
.credits-page > .container > p { color: var(--ink-mute); margin-bottom: 2.5rem; max-width: 60ch; }
.credits-list { display: flex; flex-direction: column; gap: 1rem; }
.credits-list li {
  padding: 1.1rem 1.4rem; background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  font-size: .92rem; color: var(--ink-mute);
}
.credits-list strong { color: var(--ink); }
.credits-list a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }

/* =============================================================
   7. Effects — reveal / tilt / particles
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft);
}
.has-tilt:hover { transition-duration: .15s; }

@media (prefers-reduced-motion: reduce) {
  .hero-embers { display: none; }
  .scroll-cue span { animation: none; }
}

/* =============================================================
   9. View transitions (multi-page)
   ============================================================= */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: .55s; animation-timing-function: var(--ease-out);
}
::view-transition-old(root) { animation-name: fadeOutUp; }
::view-transition-new(root) { animation-name: fadeInUp; }
@keyframes fadeOutUp { to { opacity: 0; transform: translateY(-10px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(10px); } }
