/* ========== TOKENS ========== */
:root {
  --cream: #F0E9DC;
  --cream-light: #FAF5EB;
  --cream-deep: #E4D9C4;
  --ink: #14110F;
  --ink-soft: #2C2520;
  --muted: #6B5E50;
  --line: rgba(20, 17, 15, 0.14);
  --line-strong: rgba(20, 17, 15, 0.28);
  --line-light: rgba(240, 233, 220, 0.18);
  --accent: #8B3A1F;
  --accent-soft: #C26A4A;
  --accent-warm: #D89770;

  --display: "Cormorant Garamond", "Times New Roman", serif;
  --body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: var(--body); /* alias */
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1440px;
  --pad: clamp(22px, 4vw, 64px);
  --nav-h: 96px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--accent); color: var(--cream); }

/* ========== ICONS ========== */
.ic { width: 22px; height: 22px; display: inline-block; flex-shrink: 0; pointer-events: none; }
.ic--sm { width: 14px; height: 14px; }
.ic--md { width: 26px; height: 26px; }

/* ========== TYPE ========== */
.h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.h2--light { color: var(--cream); }
.h2--light em { color: var(--accent-warm); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 28px;
  display: inline-block;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}
.eyebrow--light { color: rgba(240, 233, 220, 0.75); }

.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 18px;
  text-wrap: pretty;
  font-weight: 300;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.lead--light { color: rgba(240, 233, 220, 0.78); }

/* ========== LAYOUT ========== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section {
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
  position: relative;
}

.section--dark {
  background: var(--ink);
  color: var(--cream);
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
  opacity: 0.5;
}

.section__head {
  margin-bottom: clamp(40px, 5vw, 72px);
  max-width: 1000px;
}
.section__head--split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  max-width: 100%;
}
.section__head--split .lead {
  margin-bottom: 8px;
}
@media (max-width: 860px) {
  .section__head--split { grid-template-columns: 1fr; }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--body);
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn .ic { transition: transform 0.3s; }
.btn:hover .ic { transform: translateX(4px); }
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn--cream { background: var(--cream); color: var(--ink); }
.btn--cream:hover { background: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s, color 0.35s, height 0.35s;
  border-bottom: 1px solid transparent;
  color: #fff;
}
.nav.is-scrolled {
  background: rgba(240, 233, 220, 0.88);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  color: var(--ink);
  height: 72px;
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-text {
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 600;
  letter-spacing: -0.015em;
  transition: font-size 0.35s;
}
.nav.is-scrolled .nav__logo-text { font-size: 26px; }
.nav__logo-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}
.nav.is-scrolled .nav__logo-sub { opacity: 0.55; }

.nav__links {
  margin-left: auto;
  display: flex;
  gap: 36px;
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  opacity: 0.88;
  transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
.nav__links a:hover::after { width: 100%; }

.nav__social {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.35s;
}
.nav.is-scrolled .nav__social { border-left-color: var(--line-strong); }
.nav__social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
}
.nav__social a:hover {
  opacity: 1;
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
}
.nav.is-scrolled .nav__social a:hover { background: rgba(20,17,15,0.06); }
.nav__social .ic { width: 18px; height: 18px; }

.nav__burger {
  display: none;
  margin-left: auto;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ========== RESPONSIVE · PORTÁTIL (≤1366px) ========== */
@media (max-width: 1366px) {
  :root {
    --nav-h: 80px;
    --pad: clamp(20px, 3.5vw, 48px);
  }
  .section {
    padding-top: clamp(56px, 7vw, 96px);
    padding-bottom: clamp(56px, 7vw, 96px);
  }
  .hero__title {
    font-size: clamp(44px, 6vw, 80px);
  }
  .sobre__sticky {
    top: clamp(70px, 9vh, 100px);
  }
  .sobre__text {
    font-size: clamp(14px, 1.4vw, 20px);
    max-width: 580px;
  }
  .h2 {
    font-size: clamp(36px, 4vw, 58px);
  }
}

/* ========== RESPONSIVE · TABLET (≤960px) ========== */
@media (max-width: 960px) {
  :root { --nav-h: 80px; }
  .nav__links { display: none; }
  .nav__social { display: none; }
  .nav__burger { display: flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--cream);
  z-index: 99;
  padding: 40px var(--pad);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--display);
  font-size: 36px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__social {
  margin-top: 36px;
  display: flex;
  gap: 14px;
}
.mobile-menu__social a {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  padding: 0;
  font-size: 0;
  color: var(--ink);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #14110F;
}
.hero__media img,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.92) contrast(1.05);
}
.hero__media img {
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
.hero__video {
  display: block;
  transition: opacity 0.9s ease;
  opacity: 1;
}
.hero__video--back { opacity: 0; }
.hero__video.is-fading { opacity: 0; }
@keyframes heroZoom { to { transform: scale(1); } }

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    /* Stronger pool of darkness at the bottom-left where the text lives,
       fading to mostly-transparent at the top so the photo reads. */
    radial-gradient(ellipse 70% 60% at 25% 90%, rgba(20,17,15,0.78) 0%, rgba(20,17,15,0) 70%),
    linear-gradient(180deg, rgba(20,17,15,0.25) 0%, rgba(20,17,15,0) 32%, rgba(20,17,15,0.18) 60%, rgba(20,17,15,0.80) 100%),
    linear-gradient(90deg, rgba(20,17,15,0.35) 0%, rgba(20,17,15,0) 60%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 1px;
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad);
  padding-bottom: clamp(70px, 10vw, 130px);
  padding-top: calc(var(--nav-h) + 60px);
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

.hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(58px, 10vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  max-width: 14ch;
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.25);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-warm);
}

.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 52ch;
  margin-bottom: 42px;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  font-weight: 300;
  text-shadow: 0 1px 14px rgba(0,0,0,0.5);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.hero__link:hover { color: #fff; border-color: #fff; }

.hero__corner {
  position: absolute;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0 var(--pad);
}
.hero__corner--br { bottom: 36px; right: 0; text-align: right; }

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 36px;
  display: none; /* hidden because corner is there */
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 600px) { .hero__corner { display: none; } }

/* ========== TICKER ========== */
.ticker {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 48px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 26px);
  white-space: nowrap;
  animation: tick 32s linear infinite;
  width: max-content;
  will-change: transform;
}
.ticker__track .ticker__star {
  font-family: var(--body);
  font-style: normal;
  color: var(--accent-warm);
  font-size: 14px;
}
@keyframes tick {
  to { transform: translateX(-50%); }
}

/* ========== SOBRE (sticky scroll-reveal) ========== */
.sobre { background: var(--cream); }

.sobre__track {
  position: relative;
  height: 130vh;
}
.sobre__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre__text {
  font-family: var(--sans);
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.7;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.sobre__para { margin: 0; }
.sobre__para + .sobre__para { margin-top: 1.1em; }
.sobre__para .word {
  color: rgba(20, 17, 15, 0.18);
  transition: color 0.35s ease;
}
.sobre__para .word.is-bold { color: var(--ink-soft); }

@media (max-width: 1366px) {
  .sobre__text { font-size: clamp(14px, 1.4vw, 20px); max-width: 560px; }
}
@media (max-width: 600px) {
  .sobre__track { height: 120vh; }
  .sobre__text { font-size: clamp(14px, 4vw, 17px); }
}

/* removed obsolete .sobre__media / .pill styles */

/* ========== GALERIA - ACORDEÓN HORIZONTAL ========== */
.galeria { background: var(--ink); }

.gallery-wrap {
  padding: 0 clamp(16px, 3vw, 40px);
}

.accordion {
  display: flex;
  gap: 8px;
  height: clamp(440px, 68vh, 680px);
  position: relative;
}

.acc-card {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 2px;
  isolation: isolate;
}
.acc-card.is-active {
  flex: 4.2;
  cursor: zoom-in;
}

.acc-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s ease, filter 0.6s ease;
  filter: grayscale(0.4) brightness(0.65) saturate(0.9);
}
.acc-card.is-active .acc-card__bg {
  filter: grayscale(0) brightness(0.92) saturate(1);
  transform: scale(1.03);
}

.acc-card__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,17,15,0.25) 0%, rgba(20,17,15,0) 35%, rgba(20,17,15,0.85) 100%);
  transition: opacity 0.5s;
}

.acc-card__progress {
  display: none;
}

.acc-card__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: clamp(20px, 2.6vw, 36px);
  color: var(--cream);
}

.acc-card__top {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.acc-card__index {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.7);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
}

.acc-card__title {
  position: absolute;
  bottom: clamp(20px, 2.6vw, 36px);
  left: clamp(20px, 2.6vw, 36px);
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.015em;
  white-space: nowrap;
  color: var(--cream);
  /* Pivot around the first letter (bottom-left). Inactive cards
     rotate the text 90° upward — the "E" stays anchored, the rest
     sweeps vertical. Active cards rotate it back to horizontal. */
  transform-origin: 0 100%;
  transform: rotate(-90deg);
  transition: transform 0.65s cubic-bezier(0.32, 0.72, 0.16, 1);
  will-change: transform;
}
.acc-card.is-active .acc-card__title {
  transform: rotate(0);
}

@media (max-width: 760px) {
  .accordion {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }
  .acc-card {
    flex: none;
    width: 100%;
    height: 130px;
    transition: height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .acc-card.is-active {
    flex: none;
    height: 380px;
  }
  .acc-card__title {
    transform: rotate(0);
    font-size: 22px;
  }
  .acc-card.is-active .acc-card__title { font-size: 30px; }
}

.gallery-hint {
  margin-top: 28px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.55);
}

/* ========== CONTACTO ========== */
.contacto { background: var(--cream); }
.grid-2--contact { align-items: start; gap: clamp(40px, 8vw, 120px); }

.big-mail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s, color 0.2s;
}
.big-mail:hover { padding-left: 12px; color: var(--accent); }
.big-mail__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 16px;
  white-space: nowrap;
}
.big-mail__addr {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.01em;
  flex: 1;
}
.big-mail .ic { transition: transform 0.3s; }
.big-mail:hover .ic { transform: translateX(6px); }

.contacto__social {
  margin-top: 32px;
  display: flex;
  gap: 12px;
}
.contacto__social a {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.contacto__social a:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-3px);
}
.contacto__social .ic { width: 18px; height: 18px; }

/* form */
.form {
  background: var(--cream-light);
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--line);
  position: relative;
}
.form::before {
  content: "Formulario";
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--cream);
  padding: 0 8px;
}
.form__row {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.form__row label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.form input,
.form textarea {
  font: inherit;
  font-family: var(--body);
  font-size: 16px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  padding: 10px 0;
  color: var(--ink);
  border-radius: 0;
  resize: vertical;
  transition: border-color 0.2s;
}
.form input::placeholder,
.form textarea::placeholder {
  color: rgba(20, 17, 15, 0.32);
  font-style: italic;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.form input.is-error,
.form textarea.is-error {
  border-bottom-color: #b8341f;
}

.form__actions { margin-top: 8px; }
.form__hint {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.form__success {
  margin-top: 18px;
  padding: 16px 20px;
  background: var(--cream-deep);
  border-left: 2px solid var(--accent);
  font-size: 14px;
  color: var(--ink-soft);
}

/* honeypot anti-spam: fuera de pantalla, no visible ni enfocable */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ========== FOOTER ========== */
.footer {
  padding: clamp(70px, 9vw, 120px) 0 32px;
  background: var(--ink);
  color: var(--cream);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(32px, 6vw, 80px);
  margin-bottom: 72px;
}
.footer__logo {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.footer__brand p {
  font-size: 15px;
  color: rgba(240, 233, 220, 0.6);
  max-width: 32ch;
  font-weight: 300;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-content: end;
}
.footer__cols > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.footer__cols a {
  color: rgba(240, 233, 220, 0.75);
  transition: color 0.2s;
}
.footer__cols a:hover { color: var(--accent-warm); }
.footer__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.45);
  margin-bottom: 8px;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer__social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(240, 233, 220, 0.2);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background 0.2s, transform 0.2s, border-color 0.2s, color 0.2s;
}
.footer__social a:hover {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.footer__social .ic { width: 16px; height: 16px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(240, 233, 220, 0.12);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(240, 233, 220, 0.5);
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 11, 9, 0.96);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  overflow: hidden;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 128px);
  max-height: calc(100vh - 128px);
  max-height: calc(100svh - 128px);
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: grid; place-items: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.lightbox__close:hover, .lightbox__nav:hover {
  background: rgba(255,255,255,0.18);
  transform: scale(1.08);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

@media (max-width: 600px) {
  .lightbox { padding: 16px; }
  .lightbox__img {
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
    max-height: calc(100svh - 32px);
  }
  .lightbox__close { top: 12px; right: 12px; width: 44px; height: 44px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(.2,.6,.2,1), transform 1s cubic-bezier(.2,.6,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero .reveal:nth-child(1) { transition-delay: 0.1s; }
.hero .reveal:nth-child(2) { transition-delay: 0.3s; }
.hero .reveal:nth-child(3) { transition-delay: 0.5s; }
.hero .reveal:nth-child(4) { transition-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero__media img, .ticker__track, .acc-card__progress span {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  html { scroll-behavior: auto; }
}
