/* laurakirar.com — sistema LK
   Marca heredada del sitio actual: sol dorado #f2c054, Playfair Display (titulos) y
   Nunito 300 (texto) sobre blanco. El dorado es de acento: nunca como color de texto
   sobre blanco (contraste 1.6:1), solo en lineas, marcas y estados.
   Todo va prefijado lk- para convivir con el CSS de GHOST en /built-for-scale/. */

:root {
  --lk-paper: #ffffff;
  --lk-paper-2: #f6f4ef;
  --lk-ink: #1a1a1a;
  --lk-ink-2: #4d4b47;
  --lk-muted: #8a8780;
  --lk-line: #e7e3dc;
  --lk-gold: #f2c054;
  --lk-gold-deep: #c9982a;
  --lk-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --lk-sans: "Nunito", "Helvetica Neue", Arial, sans-serif;
  --lk-gutter: clamp(20px, 4vw, 56px);
  --lk-ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--lk-paper); color: var(--lk-ink);
  font-family: var(--lk-sans); font-weight: 300; font-size: 17px; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* los carruseles sangran a la derecha */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-family: var(--lk-serif); font-weight: 400; letter-spacing: -.01em; line-height: 1.08; text-wrap: balance; }
p { margin: 0; }

.lk-wrap { width: min(1360px, 100% - 2 * var(--lk-gutter)); margin-inline: auto; }
.lk-skip { position: absolute; left: -9999px; }
.lk-skip:focus { left: 16px; top: 16px; z-index: 100; background: var(--lk-ink); color: #fff; padding: 12px 18px; }
:where(.lk-header, .lk-footer, main) :focus-visible { outline: 2px solid var(--lk-gold-deep); outline-offset: 3px; }

.lk-label {
  font-family: var(--lk-sans); font-size: 11.5px; font-weight: 600; line-height: 1.4;
  letter-spacing: .22em; text-transform: uppercase; color: var(--lk-muted);
}
.lk-link {
  display: inline-block; font-family: var(--lk-sans); font-size: 12.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--lk-ink);
  padding-bottom: 4px; border-bottom: 1px solid var(--lk-gold);
  transition: border-color .2s;
}
.lk-link:hover { border-bottom-color: var(--lk-ink); }
.lk-btn {
  display: inline-flex; align-items: center; gap: .4em; font-family: var(--lk-sans);
  font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  padding: 16px 26px; border: 1px solid var(--lk-ink); color: var(--lk-ink);
  transition: background .2s, color .2s;
}
.lk-btn:hover { background: var(--lk-ink); color: #fff; }
.lk-pending {
  border: 1px dashed var(--lk-line); color: var(--lk-muted); padding: 48px 32px;
  text-align: center; font-size: 15px; margin-bottom: 120px;
}

/* ---------- header ---------- */
.lk-header {
  position: sticky; top: 0; z-index: 40; background: var(--lk-paper);
  border-bottom: 1px solid var(--lk-line);
  font-family: var(--lk-sans); /* el body de GHOST usa Hanken: el header no lo hereda */
}
.lk-header--static { position: relative; }
.lk-header__in { display: flex; align-items: center; justify-content: space-between; gap: 32px; height: 88px; }
.lk-brand img { width: 138px; height: 38px; }
.lk-nav { display: flex; gap: clamp(18px, 2.4vw, 36px); }
.lk-nav a {
  position: relative; font-size: 12.5px; font-weight: 400; letter-spacing: .16em;
  text-transform: uppercase; color: var(--lk-ink-2); padding: 8px 0; white-space: nowrap;
  transition: color .2s;
}
.lk-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px;
  background: var(--lk-gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--lk-ease);
}
.lk-nav a:hover { color: var(--lk-ink); }
.lk-nav a:hover::after, .lk-nav a[aria-current="page"]::after { transform: scaleX(1); }
.lk-nav a[aria-current="page"] { color: var(--lk-ink); }
.lk-ext { font-size: .9em; margin-left: .3em; color: var(--lk-muted); }
.lk-menu {
  display: none; font: 600 12px/1 var(--lk-sans); letter-spacing: .18em; text-transform: uppercase;
  background: none; border: 0; color: var(--lk-ink); padding: 12px 0; cursor: pointer;
}
.lk-menu__close { display: none; }

/* los seis items del header no caben bajo ~1240 px */
@media (max-width: 1240px) {
  .lk-menu { display: block; }
  .lk-nav {
    position: fixed; inset: 88px 0 0 0; z-index: 39; background: var(--lk-paper);
    flex-direction: column; gap: 0; padding: 24px var(--lk-gutter) 40px; overflow-y: auto;
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .25s, transform .3s var(--lk-ease), visibility 0s .3s;
  }
  .lk-nav a {
    font: 400 clamp(28px, 6vw, 40px)/1.2 var(--lk-serif); letter-spacing: -.01em; text-transform: none;
    color: var(--lk-ink); padding: 16px 0; border-bottom: 1px solid var(--lk-line);
  }
  .lk-nav a::after { display: none; }
  .lk-header.is-open .lk-nav { visibility: visible; opacity: 1; transform: none; transition: opacity .25s, transform .3s var(--lk-ease); }
  .lk-header.is-open .lk-menu__open { display: none; }
  .lk-header.is-open .lk-menu__close { display: inline; }
  .lk-header--static .lk-nav { position: absolute; top: 100%; bottom: auto; height: calc(100dvh - 88px); }
}
body.lk-lock { overflow: hidden; }

/* ---------- footer ---------- */
.lk-footer {
  background: var(--lk-paper-2); color: var(--lk-ink-2); margin-top: 0;
  padding: 72px 0 32px; font-family: var(--lk-sans); font-weight: 300; font-size: 15px; line-height: 1.7;
}
.lk-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.lk-footer__brand img { width: 138px; height: 38px; }
.lk-footer .lk-label { margin-bottom: 14px; }
.lk-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.lk-footer a:hover { color: var(--lk-ink); text-decoration: underline; text-decoration-color: var(--lk-gold); text-underline-offset: 4px; }
.lk-footer__legal { margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--lk-line); font-size: 12.5px; color: var(--lk-muted); }
@media (max-width: 760px) { .lk-footer__grid { grid-template-columns: 1fr 1fr; } .lk-footer__brand { grid-column: 1 / -1; } }

/* ---------- home ---------- */
.lk-hero { position: relative; height: min(86vh, 920px); min-height: 420px; overflow: hidden; background: var(--lk-paper-2); }
.lk-hero img { width: 100%; height: 100%; object-fit: cover; }


.lk-doors { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 32px); padding-block: clamp(56px, 7vw, 104px) clamp(80px, 10vw, 140px); }
.lk-door { display: grid; align-content: start; gap: 10px; }
.lk-door__img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--lk-paper-2); margin-bottom: 14px; }
.lk-door__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--lk-ease); }
.lk-door:hover .lk-door__img img { transform: scale(1.03); }
.lk-door h2 { font-size: clamp(26px, 2.2vw, 34px); margin-bottom: 8px; }
.lk-door .lk-link { justify-self: start; }
.lk-door:hover .lk-link { border-bottom-color: var(--lk-ink); }
@media (max-width: 1100px) { .lk-doors { grid-template-columns: 1fr 1fr; row-gap: 56px; } }
@media (max-width: 640px) { .lk-doors { grid-template-columns: 1fr; } .lk-door__img { aspect-ratio: 4 / 3; } }

.lk-shopband { border-top: 1px solid var(--lk-line); }
.lk-shopband__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-block: 64px; }
.lk-shopband h2 { font-size: clamp(30px, 3vw, 44px); margin-top: 10px; }

/* ---------- listados ---------- */
.lk-pagehead { padding-block: clamp(56px, 8vw, 112px) clamp(40px, 5vw, 72px); }
.lk-pagehead h1 { font-size: clamp(46px, 7vw, 104px); margin-top: 14px; }
.lk-jump { display: flex; flex-wrap: wrap; gap: 12px 36px; margin-top: 36px; }
.lk-jump a { font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; padding-bottom: 4px; border-bottom: 1px solid var(--lk-line); }
.lk-jump a:hover { border-bottom-color: var(--lk-gold); }
.lk-jump span { color: var(--lk-muted); margin-left: .5em; font-weight: 400; }

.lk-list { padding-bottom: clamp(64px, 8vw, 120px); scroll-margin-top: 100px; }
.lk-list__title {
  font-family: var(--lk-sans); font-size: 12.5px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--lk-muted);
  padding-top: 20px; border-top: 1px solid var(--lk-ink); margin-bottom: 48px;
}
.lk-entry { --car-h: clamp(240px, 36vw, 540px); margin-bottom: clamp(72px, 9vw, 128px); }
.lk-entry:last-child { margin-bottom: 0; }

/* carrusel: altura fija, ancho segun la proporcion real de cada foto -> nada se recorta */
.lk-car__track {
  display: flex; gap: 12px; overflow-x: auto; overscroll-behavior-x: contain;
  margin-right: calc(50% - 50vw); padding-right: var(--lk-gutter); /* sangra hasta el borde derecho */
  scroll-snap-type: x mandatory; scrollbar-width: none; scroll-padding-inline: 0;
}
.lk-car__track::-webkit-scrollbar { display: none; }
.lk-car__track:focus-visible { outline: 2px solid var(--lk-gold-deep); outline-offset: 4px; }
.lk-car__slide {
  flex: 0 0 auto; height: var(--car-h); aspect-ratio: var(--ar); max-width: 88vw;
  scroll-snap-align: start; overflow: hidden; background: var(--lk-paper-2);
}
.lk-car__slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--lk-ease), opacity .3s; }
.lk-car__slide:hover img { transform: scale(1.02); }
.lk-car__slide--empty { display: grid; place-items: center; border: 1px dashed var(--lk-line); background: var(--lk-paper); }
.lk-car__slide--empty span { font-size: 11.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--lk-muted); }

.lk-entry__meta {
  display: grid; grid-template-columns: 56px minmax(0, 4fr) minmax(0, 5fr) auto;
  gap: 8px 32px; align-items: start; padding-top: 28px;
}
.lk-entry__num { font-size: 13px; font-weight: 600; letter-spacing: .12em; color: var(--lk-muted); padding-top: 10px; }
.lk-entry__title { font-size: clamp(30px, 3vw, 44px); }
.lk-entry__title a { background: linear-gradient(var(--lk-gold), var(--lk-gold)) 0 100% / 0 1px no-repeat; transition: background-size .45s var(--lk-ease); }
.lk-entry__title a:hover { background-size: 100% 1px; }
.lk-entry__text {
  color: var(--lk-ink-2); font-size: 16px; max-width: 58ch; padding-top: 6px;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.lk-entry__actions { display: flex; align-items: center; gap: 28px; padding-top: 4px; }
.lk-car__ctrl { display: flex; gap: 8px; }
.lk-car__btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--lk-line);
  background: var(--lk-paper); color: var(--lk-ink); font: 400 16px/1 var(--lk-sans); cursor: pointer;
  transition: border-color .2s, opacity .2s;
}
.lk-car__btn:hover:not(:disabled) { border-color: var(--lk-ink); }
.lk-car__btn:disabled { opacity: .3; cursor: default; }
.lk-entry.no-scroll .lk-car__ctrl { display: none; }

@media (max-width: 1000px) {
  .lk-entry__meta { grid-template-columns: 44px minmax(0, 1fr); }
  .lk-entry__text, .lk-entry__actions { grid-column: 2; }
  .lk-entry__actions { justify-content: space-between; padding-top: 12px; }
}
@media (max-width: 700px) {
  .lk-entry { --car-h: 64vw; }
  .lk-entry__meta { grid-template-columns: 1fr; }
  .lk-entry__num, .lk-entry__text, .lk-entry__actions { grid-column: 1; }
  .lk-entry__num { padding-top: 0; }
}

/* ---------- pagina de proyecto ---------- */
.lk-project__head {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 32px clamp(32px, 6vw, 96px);
  padding-block: clamp(48px, 7vw, 96px) clamp(48px, 6vw, 88px);
}
.lk-back { display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--lk-muted); margin-bottom: 40px; transition: color .2s; }
.lk-back:hover { color: var(--lk-ink); }
.lk-project__head h1 { font-size: clamp(42px, 5.6vw, 84px); margin-top: 14px; }
.lk-project__body { display: grid; align-content: start; gap: 1.1em; color: var(--lk-ink-2); font-size: 17.5px; max-width: 62ch; padding-top: 4px; }
.lk-credit { font-size: 12.5px; letter-spacing: .08em; color: var(--lk-muted); }
@media (min-width: 901px) { .lk-project__body { padding-top: 88px; } }
@media (max-width: 900px) { .lk-project__head { grid-template-columns: 1fr; } }

.lk-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.6vw, 24px); grid-auto-flow: dense; align-items: start; }
.lk-gallery__item { margin: 0; background: var(--lk-paper-2); }
.lk-gallery__item.is-wide { grid-column: 1 / -1; }
.lk-gallery__item img { width: 100%; height: auto; }
@media (max-width: 700px) { .lk-gallery { grid-template-columns: 1fr; } }

.lk-next {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  margin-top: clamp(72px, 9vw, 128px); padding-block: 28px clamp(72px, 9vw, 128px); border-top: 1px solid var(--lk-ink);
}
.lk-next a { font: 400 clamp(28px, 3.4vw, 48px)/1.1 var(--lk-serif); text-align: right; }
.lk-next a:hover { text-decoration: underline; text-decoration-color: var(--lk-gold); text-decoration-thickness: 1px; text-underline-offset: 8px; }

/* ---------- about ---------- */
.lk-about { display: grid; grid-template-columns: minmax(0, 467px) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: start; padding-bottom: clamp(80px, 10vw, 140px); }
.lk-about__img { margin: 0; }
/* la foto solo existe a 467 px: no se estira mas alla de su tamaño */
.lk-about__img img { width: 100%; height: auto; }
.lk-about__info { display: grid; gap: 40px; align-content: start; padding-top: 8px; font-size: 17.5px; color: var(--lk-ink-2); }
.lk-about__info .lk-label { margin-bottom: 12px; }
.lk-about__info address { font-style: normal; line-height: 1.7; }
.lk-about__info a { color: var(--lk-ink); border-bottom: 1px solid var(--lk-gold); transition: border-color .2s; }
.lk-about__info a:hover { border-bottom-color: var(--lk-ink); }
.lk-about__social { display: flex; gap: 24px; }
@media (max-width: 800px) { .lk-about { grid-template-columns: 1fr; } }

/* ---------- press ---------- */
.lk-press { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(40px, 5vw, 72px) clamp(16px, 2vw, 32px); padding-bottom: clamp(80px, 10vw, 140px); }
.lk-press__card { display: grid; align-content: start; gap: 8px; }
/* recortes de revista: completos, sin recortar */
.lk-press__img { aspect-ratio: 4 / 5; background: var(--lk-paper-2); display: grid; place-items: center; padding: 8%; margin-bottom: 12px; overflow: hidden; }
.lk-press__img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; box-shadow: 0 1px 2px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.06); transition: transform .6s var(--lk-ease); }
.lk-press__card:hover .lk-press__img img { transform: translateY(-4px); }
.lk-press__card h2 { font-size: clamp(22px, 1.8vw, 28px); }
.lk-press__card:hover h2 { text-decoration: underline; text-decoration-color: var(--lk-gold); text-decoration-thickness: 1px; text-underline-offset: 6px; }
@media (max-width: 1100px) { .lk-press { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .lk-press { grid-template-columns: 1fr; } }
.lk-press__gallery { display: grid; gap: clamp(16px, 2vw, 32px); justify-items: center; }
.lk-press__gallery figure { margin: 0; max-width: min(100%, 1000px); }
.lk-press__gallery img { width: auto; max-width: 100%; height: auto; max-height: 90vh; box-shadow: 0 1px 2px rgba(0,0,0,.08), 0 12px 32px rgba(0,0,0,.08); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
