/* ============================================================
   ZIHUL · Arte que se forja
   Dirección: editorial de lujo artesanal · carbón + ámbar de forja
   + verde abulón · tipografía Fraunces / Archivo / DM Mono
   ============================================================ */

:root {
  /* superficie clara · papel / arena del desierto */
  --coal:    #efe7d6;
  --coal-2:  #e8dec9;
  --coal-3:  #e1d5bc;
  --coal-4:  #d6c8aa;
  /* tinta · café oscuro */
  --bone:    #2a2118;
  --bone-2:  #4a3d2e;
  --dim:     #6f6149;
  --dim-2:   #998a6f;
  /* acentos */
  --ember:   #b06a2c;
  --ember-2: #c8843d;
  --rust:    #9a4f24;
  --abalone: #2f7d6f;
  --abalone-2: #3f9685;
  /* islas oscuras (cinta marquee, etiquetas sobre foto) */
  --film:    #241c14;
  --onfilm:  #f1e8d6;

  --line:    rgba(42, 33, 24, 0.16);
  --line-2:  rgba(42, 33, 24, 0.07);
  --line-ember: rgba(176, 106, 44, 0.42);

  --maxw: 1240px;
  --ease: cubic-bezier(.2,.7,.2,1);

  --serif: "Fraunces", "Times New Roman", serif;
  --sans:  "Archivo", system-ui, sans-serif;
  --mono:  "DM Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--bone);
  background: var(--coal);
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* grano sobre toda la página */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--ember); color: var(--coal); }

.container { width: min(100% - 2.8rem, var(--maxw)); margin-inline: auto; }

/* ---------- utilidades tipográficas ---------- */
.mono {
  font-family: var(--mono); font-weight: 400;
  letter-spacing: .02em; text-transform: uppercase;
  font-size: .72rem;
}
.eyebrow {
  font-family: var(--mono); font-size: .74rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--ember); display: flex; align-items: center; gap: .55em;
  margin-bottom: 1.4rem;
}
.eyebrow .mono { color: var(--dim); font-size: inherit; letter-spacing: inherit; }
.eyebrow__tick { color: var(--ember); }

.title {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.04; letter-spacing: -.015em; color: var(--bone);
}
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--bone-2);
  max-width: 58ch; margin-top: 1.2rem; font-weight: 300;
}
p { color: var(--dim); }

/* ---------- botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .95em 1.7em; border-radius: 2px;
  font-family: var(--mono); font-weight: 500; font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: var(--ember); color: #fbf4e6;
  box-shadow: 0 10px 26px -12px rgba(176,106,44,.55);
}
.btn--gold:hover { background: var(--rust); box-shadow: 0 16px 34px -14px rgba(154,79,36,.6); }
.btn--ghost { background: transparent; color: var(--bone); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ember); color: var(--ember); }
.btn--wa { background: #1f8f4e; color: #fff; }
.btn--wa:hover { background: #25a35a; box-shadow: 0 14px 34px -12px rgba(37,163,90,.7); }
.ico { width: 1.25em; height: 1.25em; flex: none; }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ember); color: var(--coal); padding: .6rem 1rem;
}
.skip-link:focus { left: 0; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
}
.site-header.is-scrolled {
  background: rgba(239,231,214,.85);
  backdrop-filter: blur(16px) saturate(120%);
  border-bottom-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; height: 70px; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand__mark { height: 32px; width: auto; filter: drop-shadow(0 2px 8px rgba(227,151,58,.45)); }
.brand__name { font-family: var(--serif); font-weight: 600; letter-spacing: .2em; font-size: 1.15rem; }
.nav { display: flex; gap: 1.9rem; }
.nav a {
  font-family: var(--mono); font-size: .76rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--dim); position: relative; padding: .3rem 0;
  transition: color .25s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 0;
  background: var(--ember); transition: width .3s var(--ease);
}
.nav a:hover { color: var(--bone); }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 1rem; }
.lang-toggle {
  background: none; border: 1px solid var(--line); border-radius: 2px;
  padding: .4rem .7rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .06em;
  color: var(--dim-2); cursor: pointer; display: flex; gap: .35rem; transition: border-color .25s;
}
.lang-toggle:hover { border-color: var(--ember); }
.lang-toggle__opt.is-active { color: var(--ember); }
.header__wa { padding: .6em 1em; font-size: .72rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 1.5px; background: var(--bone); transition: transform .3s, opacity .3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; padding: 7rem 0 5rem; overflow: hidden;
  background:
    radial-gradient(130% 80% at 78% 12%, #f8f1e2 0%, transparent 55%),
    linear-gradient(180deg, #f2ebda, var(--coal));
}
.hero__glow {
  position: absolute; left: -10%; top: 20%; width: 60%; height: 70%;
  background: radial-gradient(closest-side, rgba(176,106,44,.12), transparent 75%);
  filter: blur(10px); pointer-events: none;
}
.hero__topbar {
  position: absolute; top: 84px; left: 50%; transform: translateX(-50%);
  display: flex; justify-content: space-between; width: min(100% - 2.8rem, var(--maxw));
  color: var(--dim); border-top: 1px solid var(--line); padding-top: .8rem;
}
.hero__topbar .mono { font-size: .68rem; letter-spacing: .18em; }

.hero__grid {
  display: grid; grid-template-columns: 1.35fr .9fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center; position: relative; z-index: 2;
}
.hero__title {
  font-family: var(--serif); font-weight: 900; font-optical-sizing: auto;
  font-size: clamp(4.5rem, 17vw, 13rem); line-height: .8; letter-spacing: -.03em;
  color: var(--bone); margin: .4rem 0; text-indent: -.06em;
}
.hero__tag {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 3.4vw, 2.2rem); color: var(--ember);
  letter-spacing: .01em; padding-left: .1em;
}
.hero__desc { color: var(--bone-2); max-width: 46ch; margin-top: 1.8rem; font-size: 1.06rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; }

.hero__aside { display: flex; flex-direction: column; gap: 1.6rem; }
.hero__plate { aspect-ratio: 4 / 5; }
.hero-index { border-top: 1px solid var(--line); }
.hero-index li { border-bottom: 1px solid var(--line); }
.hero-index a {
  display: flex; align-items: baseline; gap: 1rem; padding: .72rem .2rem;
  font-family: var(--serif); font-size: 1.1rem; color: var(--bone-2);
  transition: color .25s, padding-left .25s;
}
.hero-index .mono { color: var(--ember); font-size: .7rem; }
.hero-index a:hover { color: var(--ember); padding-left: .7rem; }

.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: var(--dim-2); font-size: .62rem; letter-spacing: .3em;
}
.hero__scroll svg { width: 20px; height: 20px; color: var(--ember); animation: bob 2s ease-in-out infinite; }

/* brasas */
.hero__embers { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__embers span {
  position: absolute; bottom: -12px; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ember); box-shadow: 0 0 10px 2px rgba(176,106,44,.5);
  opacity: 0; animation: rise linear infinite;
}
.hero__embers span:nth-child(1) { left: 6%;  width: 8px;  height: 8px;  animation-duration: 11s;   animation-delay: -1s; }
.hero__embers span:nth-child(2) { left: 15%; width: 5px;  height: 5px;  animation-duration: 14s;   animation-delay: -5s; }
.hero__embers span:nth-child(3) { left: 24%; width: 10px; height: 10px; animation-duration: 9s;    animation-delay: -9s; }
.hero__embers span:nth-child(4) { left: 33%; width: 6px;  height: 6px;  animation-duration: 13s;   animation-delay: -3s; }
.hero__embers span:nth-child(5) { left: 42%; width: 9px;  height: 9px;  animation-duration: 10s;   animation-delay: -7s; }
.hero__embers span:nth-child(6) { left: 50%; width: 5px;  height: 5px;  animation-duration: 15s;   animation-delay: -12s; }
.hero__embers span:nth-child(7) { left: 59%; width: 8px;  height: 8px;  animation-duration: 12s;   animation-delay: -2s; }
.hero__embers span:nth-child(8) { left: 67%; width: 6px;  height: 6px;  animation-duration: 9.5s;  animation-delay: -6s; }
.hero__embers span:nth-child(9) { left: 76%; width: 11px; height: 11px; animation-duration: 13.5s; animation-delay: -10s; }
.hero__embers span:nth-child(10){ left: 84%; width: 5px;  height: 5px;  animation-duration: 11.5s; animation-delay: -4s; }
.hero__embers span:nth-child(11){ left: 91%; width: 8px;  height: 8px;  animation-duration: 14.5s; animation-delay: -8s; }
.hero__embers span:nth-child(12){ left: 97%; width: 6px;  height: 6px;  animation-duration: 10.5s; animation-delay: -11s; }

@keyframes rise {
  0%   { transform: translateY(0) scale(.85); opacity: 0; }
  8%   { opacity: .85; }
  80%  { opacity: .6; }
  100% { transform: translateY(-94vh) scale(.6); opacity: 0; }
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ---------- marquee ---------- */
.marquee {
  border-block: 1px solid var(--film); background: var(--film);
  overflow: hidden; padding: .85rem 0; white-space: nowrap;
}
.marquee__track {
  display: inline-block; color: var(--onfilm); font-size: .74rem;
  letter-spacing: .24em; animation: scroll 38s linear infinite;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   PLACAS DE IMAGEN (duotono cálido + grano, color al hover)
   ============================================================ */
.plate {
  position: relative; overflow: hidden; border: 1px solid var(--line);
  background: var(--coal-3); min-height: 280px; display: flex;
}
.plate img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: sepia(.24) saturate(1.04) contrast(.97) brightness(1.05) hue-rotate(-6deg);
  transition: filter .7s var(--ease), transform 1s var(--ease);
  z-index: 0;
}
.plate::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .08; mix-blend-mode: overlay;
}
.plate:hover img { filter: sepia(0) saturate(1.12) contrast(1.02) brightness(1.03); transform: scale(1.045); }
.plate:hover { border-color: var(--line-ember); }
.plate__tag {
  position: absolute; top: .8rem; right: .8rem; z-index: 3;
  background: rgba(241,232,214,.86); color: var(--rust); padding: .38rem .6rem;
  border: 1px solid var(--line-ember); font-size: .64rem; letter-spacing: .14em;
  backdrop-filter: blur(4px);
}

/* ============================================================
   SECCIONES
   ============================================================ */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; border-top: 1px solid var(--line); }
.section--alt { background: linear-gradient(180deg, var(--coal-2), var(--coal)); }
.section__head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ---------- 01 historia ---------- */
.story__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story__plate { aspect-ratio: 4 / 5; align-self: stretch; }
.tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.tags li {
  font-size: .68rem; color: var(--rust); letter-spacing: .12em;
  border: 1px solid var(--line-ember); padding: .45rem .85rem;
  background: rgba(176,106,44,.08);
}
.story__text > p:not(.eyebrow):not(.lead) { margin-top: 1.1rem; }

/* ---------- 02 colección (galería asimétrica) ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 1fr; gap: clamp(1rem, 1.6vw, 1.5rem);
}
.plate--feature { grid-column: 1 / 8; grid-row: 1 / 3; min-height: 560px; }
.gallery > .plate:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.gallery > .plate:nth-child(3) { grid-column: 8 / 13; grid-row: 2; }
.gallery > .plate:not(.plate--feature) { min-height: 272px; }
/* difuminado a papel SOLO en las placas con título encima (colección) */
.gallery .plate::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(0deg, rgba(239,231,214,.97) 0%, rgba(239,231,214,.74) 20%, transparent 50%);
}
.plate__body { position: relative; z-index: 3; margin-top: auto; padding: 1.7rem; width: 100%; }
.plate__idx {
  position: absolute; top: 1.1rem; left: 1.2rem; z-index: 3;
  color: var(--onfilm); font-size: .8rem; letter-spacing: .1em;
  text-shadow: 0 1px 8px rgba(36,28,20,.6);
}

/* ---------- 03 galería (mosaico) ---------- */
.mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: clamp(.7rem, 1.3vw, 1.2rem);
  grid-auto-flow: dense;
}
.shot {
  position: relative; overflow: hidden; margin: 0;
  border: 1px solid var(--line); background: var(--coal-3);
  /* marcador mientras no hay foto */
  display: grid; place-items: center;
}
.shot::before {
  content: "★"; color: var(--dim-2); font-size: 1.4rem;
  opacity: .5; z-index: 0;
}
.shot img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(.24) saturate(1.04) contrast(.97) brightness(1.05) hue-rotate(-6deg);
  transition: filter .7s var(--ease), transform 1s var(--ease);
}
.shot:hover img { filter: sepia(0) saturate(1.12) contrast(1.02); transform: scale(1.05); }
.shot:hover { border-color: var(--line-ember); }
.shot--tall { grid-row: span 2; }
.shot--wide { grid-column: span 2; }
.shot__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  margin: 0; padding: 1.5rem .8rem .65rem;
  color: var(--onfilm); font-size: .62rem; letter-spacing: .14em;
  text-transform: uppercase; line-height: 1.3;
  background: linear-gradient(0deg, rgba(20, 15, 10, .8) 10%, transparent);
  transform: translateY(.4rem); opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.shot:hover .shot__cap,
.shot:focus-within .shot__cap { opacity: 1; transform: none; }
/* en táctil (sin hover) la etiqueta queda visible siempre */
@media (hover: none) {
  .shot__cap { opacity: 1; transform: none; }
}

@media (max-width: 720px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .shot--wide { grid-column: span 2; }
}
.plate__body h3 { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--bone); }
.plate--feature .plate__body h3 { font-size: clamp(1.7rem, 2.6vw, 2.4rem); }
.plate__body p { color: var(--bone-2); font-size: .95rem; margin: .5rem 0 1rem; max-width: 42ch; }
.link-wa { color: var(--ember); font-size: .72rem; letter-spacing: .12em; transition: color .25s, letter-spacing .25s; }
.link-wa:hover { color: var(--ember-2); letter-spacing: .16em; }

/* ---------- 03 proceso (libro mayor / ficha) ---------- */
.ledger { border-top: 1px solid var(--line); }
.ledger__row {
  display: grid; grid-template-columns: 4.5rem 1fr; gap: clamp(1rem, 3vw, 3rem);
  align-items: baseline; padding: clamp(1.4rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid var(--line); transition: padding-left .35s var(--ease), background .35s;
}
.ledger__row:hover { padding-left: .8rem; background: linear-gradient(90deg, rgba(176,106,44,.07), transparent); }
.ledger__n {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: transparent; -webkit-text-stroke: 1px var(--ember); letter-spacing: 0;
}
.ledger__body { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1rem 2.5rem; align-items: baseline; }
.ledger__body h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.2rem, 2vw, 1.7rem); color: var(--bone); }
.ledger__body p { color: var(--dim); font-size: .98rem; }

/* ---------- 04 garantía (credo) ---------- */
.creed {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(2rem, 6vw, 4.6rem); line-height: 1.04; letter-spacing: -.02em;
  color: var(--bone); max-width: 18ch; margin: 1.2rem 0 1.6rem;
}
.creed__body { color: var(--bone-2); max-width: 64ch; font-size: 1.1rem; }
.specs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line);
}
.spec { padding: 1.8rem 1.4rem 1.8rem 0; border-top: 2px solid transparent; }
.spec + .spec { border-left: 1px solid var(--line); padding-left: 1.4rem; }
.spec__k { color: var(--ember); display: block; margin-bottom: 1rem; font-size: .82rem; }
.spec h3 { font-family: var(--serif); font-weight: 600; font-size: 1.12rem; color: var(--bone); margin-bottom: .5rem; }
.spec p { font-size: .92rem; color: var(--dim); }

/* ---------- 05 opiniones ---------- */
.reviews__pull {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 2.8vw, 2rem); line-height: 1.3; color: var(--bone);
  margin-top: 1.6rem; max-width: 28ch; position: relative; padding-left: 1.6rem;
  border-left: 2px solid var(--line-ember);
}
.reviews__pull cite { display: block; font-style: normal; color: var(--ember); font-size: .72rem; margin-top: 1rem; letter-spacing: .1em; }

.stars { color: var(--ember); letter-spacing: .1em; }

.rating-banner {
  display: grid; grid-template-columns: auto auto 1fr auto; align-items: center;
  gap: 1.4rem 2.4rem; padding: 1.8rem; margin-bottom: 2.4rem;
  border: 1px solid var(--line); background: var(--coal-3);
}
.rating-banner__art {
  width: 78px; height: 78px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--line-ember); box-shadow: 0 6px 20px -8px rgba(176,106,44,.4);
  filter: saturate(1.15) contrast(1.05);
}
.rating-banner__score { display: flex; flex-direction: column; gap: .25rem; }
.rating-banner__num { font-family: var(--serif); font-weight: 600; font-size: 2.6rem; line-height: 1; color: var(--bone); }
.rating-banner__score .stars { font-size: 1rem; }
.rating-banner__count { color: var(--dim); font-size: .68rem; letter-spacing: .1em; }
.rating-banner__count strong { color: var(--ember); }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem; font-size: .64rem; color: var(--dim);
  border: 1px solid var(--line); padding: .4rem .75rem; letter-spacing: .08em;
}
.chip b { color: var(--ember); }
.rating-banner__actions { display: flex; flex-direction: column; gap: .6rem; }
.rating-banner__actions .btn { justify-content: center; font-size: .68rem; padding: .75em 1.1em; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: start; }
.tcard {
  position: relative; padding: 2.2rem 1.8rem 1.8rem; border: 1px solid var(--line);
  background: #f6efde; display: flex; flex-direction: column; gap: 1rem;
  box-shadow: 0 16px 34px -26px rgba(42,33,24,.55);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.tcard:hover { transform: translateY(-4px); border-color: var(--line-ember); box-shadow: 0 22px 40px -24px rgba(42,33,24,.6); }
.tcard::before {
  content: "\201C"; position: absolute; top: -.1rem; left: 1rem;
  font-family: var(--serif); font-size: 4.5rem; line-height: 1; color: var(--line-ember);
}
.tcard .stars { font-size: .85rem; }
.tcard blockquote { font-family: var(--serif); font-weight: 400; font-size: 1.06rem; line-height: 1.5; color: var(--bone-2); flex: 1; }
.tcard cite { font-family: var(--mono); font-style: normal; font-size: .66rem; letter-spacing: .1em; color: var(--ember); }

/* ---------- 06 contacto ---------- */
.contact__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.colophon { margin: 2.2rem 0; border-top: 1px solid var(--line); }
.colophon li {
  display: grid; grid-template-columns: 8rem 1fr; gap: 1.2rem; align-items: baseline;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.colophon__k { color: var(--ember); font-size: .66rem; letter-spacing: .12em; }
.colophon li > span:last-child, .colophon a { color: var(--bone-2); font-size: .98rem; }
.colophon a { transition: color .25s; }
.colophon a:hover { color: var(--ember); }
.contact__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.contact__map { border: 1px solid var(--line); min-height: 420px; overflow: hidden; background: var(--coal-3); }
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(.35) sepia(.16) contrast(1.02); transition: filter .5s; }
.contact__map:hover iframe { filter: grayscale(0) sepia(0); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--coal-2); }
.footer__top {
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  flex-wrap: wrap; padding: 3rem 0 2.4rem;
}
.footer__brand { display: flex; align-items: center; gap: 1.2rem; }
.footer__brand img { filter: drop-shadow(0 2px 10px rgba(227,151,58,.4)); }
.footer__creed { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--ember); }
.footer__nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__nav a { color: var(--dim); font-size: .72rem; letter-spacing: .08em; transition: color .25s; }
.footer__nav a:hover { color: var(--ember); }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.4rem 0; border-top: 1px solid var(--line); color: var(--dim-2);
}
.footer__bottom span { font-size: .66rem; letter-spacing: .08em; }

/* ---------- FAB ---------- */
.fab-wa {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%; background: #1f8f4e; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(31,143,78,.7);
  transition: transform .25s var(--ease), background .25s;
}
.fab-wa svg { width: 27px; height: 27px; }
.fab-wa:hover { transform: scale(1.08); background: #25a35a; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__aside { flex-direction: row; align-items: flex-start; gap: 1.5rem; }
  .hero__plate { flex: 1; aspect-ratio: 4/5; }
  .hero-index { flex: 1; }
  .story__grid, .contact__grid { grid-template-columns: 1fr; }
  .story__plate { aspect-ratio: 16/10; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .plate--feature { grid-column: 1 / 3; grid-row: auto; min-height: 420px; }
  .gallery > .plate:nth-child(2),
  .gallery > .plate:nth-child(3) { grid-column: auto; grid-row: auto; }
  .specs { grid-template-columns: 1fr 1fr; }
  .spec + .spec { border-left: 0; padding-left: 0; }
  .spec:nth-child(even) { padding-left: 1.4rem; border-left: 1px solid var(--line); }
  .ledger__body { grid-template-columns: 1fr; gap: .5rem; }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .rating-banner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .rating-banner__actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(239,231,214,.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line); padding: .4rem 0;
    transform: translateY(-130%); transition: transform .4s var(--ease); visibility: hidden;
  }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav a { padding: 1rem 1.6rem; }
  .nav a::after { display: none; }
  .hamburger { display: flex; }
  .header__wa span { display: none; }
  .header__wa { padding: .6em; }
  .hero__topbar { display: none; }
  .hero__aside { flex-direction: column; }
  .gallery, .testimonials, .specs { grid-template-columns: 1fr; }
  .plate--feature { grid-column: auto; min-height: 360px; }
  .spec:nth-child(even) { border-left: 0; padding-left: 0; }
  .colophon li { grid-template-columns: 1fr; gap: .15rem; }
  .footer__top, .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .btn { width: 100%; justify-content: center; }
  .hero__cta, .contact__cta { width: 100%; }
}

/* ---------- accesibilidad ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }

/* ============ LIGHTBOX (ampliar fotos) ============ */
.is-zoomable { cursor: zoom-in; }
.is-zoomable a, .is-zoomable button { cursor: pointer; }
body.lightbox-open { overflow: hidden; }

.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(20, 15, 10, 0.92);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), visibility .28s var(--ease);
  cursor: zoom-out;
}
.lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

.lightbox__fig {
  position: relative; margin: 0;
  display: flex; max-width: 100%; max-height: 100%;
  transform: scale(.96);
  transition: transform .28s var(--ease);
}
.lightbox.is-open .lightbox__fig { transform: scale(1); }
.lightbox__img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  cursor: default;
}
.lightbox__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  margin: 0; padding: 1.6rem 1rem .9rem;
  text-align: center; color: var(--onfilm);
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  background: linear-gradient(0deg, rgba(20, 15, 10, .72), transparent);
  border-radius: 0 0 4px 4px;
  pointer-events: none;
}

.lightbox__close {
  position: absolute; top: 1.1rem; right: 1.2rem;
  width: 2.6rem; height: 2.6rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 1.9rem; line-height: 1;
  color: var(--onfilm);
  background: rgba(241, 232, 214, 0.12);
  border: 1px solid rgba(241, 232, 214, 0.28);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.lightbox__close:hover { background: rgba(241, 232, 214, 0.22); transform: scale(1.06); }

@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox__fig { transition: none; }
  .lightbox__fig { transform: none; }
}
