/* Persianas Exclusivas Tony — identidad real de marca (azul marino + azul cielo) */

:root {
  --navy-deep: #0e1730;
  --navy: #16213f;
  --navy-2: #223361;
  --blue: #2c86c9;
  --blue-2: #1f6fb0;
  --sky: #4fabdd;
  --sky-light: #eaf4fb;
  --ink: #16213f;
  --ink-dim: #4c5875;
  --paper: #f6f8fb;
  --paper-2: #ffffff;
  --line: rgba(22, 33, 63, 0.12);
  --line-soft: rgba(22, 33, 63, 0.07);
  --shadow: 0 18px 40px -20px rgba(14, 23, 48, 0.35);
  --shadow-sm: 0 8px 20px -12px rgba(14, 23, 48, 0.3);
  --display: "Poppins", "Segoe UI", sans-serif;
  --body: "Inter", "Segoe UI", sans-serif;
  --script: "Dancing Script", cursive;
  --maxw: 1240px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
#enrollables, #sheer, #proceso, #contacto { scroll-margin-top: 76px; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--paper);
  color: var(--ink-dim);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { text-wrap: balance; font-family: var(--display); color: var(--ink); margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.8rem 1.2rem;
  z-index: 999;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ---------- buttons ---------- */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(100deg, var(--blue) 0%, var(--sky) 100%);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(44, 134, 201, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 28px -10px rgba(44, 134, 201, 0.6); }
.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-ghost:hover { border-color: var(--blue); background: var(--sky-light); }
.btn-ghost-light { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-small { padding: 0.6rem 1.1rem; font-size: 0.72rem; }

.eyebrow {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin: 0 0 0.8rem;
}
.eyebrow-light { color: var(--sky); }

/* ---------- header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem clamp(1.25rem, 5vw, 3.5rem);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(15, 23, 48, 0.0);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px -14px rgba(14, 23, 48, 0.35);
  padding: 0.45rem clamp(1.25rem, 5vw, 3.5rem);
}
.brand img { height: 52px; width: auto; transition: height 0.3s ease; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }
.site-header.is-scrolled .brand img { height: 42px; filter: none; }
.navlinks {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2rem);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease;
}
.site-header.is-scrolled .navlinks { color: var(--ink); }
.navlinks a { position: relative; padding: 0.3rem 0; white-space: nowrap; }
.navlinks a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--sky);
  transition: right 0.25s ease;
}
.navlinks a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(100deg, var(--blue) 0%, var(--sky) 100%);
  padding: 0.6rem 1.05rem;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none; border: none;
}
.menu-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: background 0.3s ease; }
.site-header.is-scrolled .menu-toggle span { background: var(--ink); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  font-family: var(--display);
  font-size: 1.3rem;
  color: #fff;
}
.mobile-nav[hidden] { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding: 6rem clamp(1.25rem, 5vw, 4.5rem) 5rem;
}
.hero-inner { max-width: 640px; }
.headline {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 1.3rem;
}
.dek {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 34em;
  margin-bottom: 2.2rem;
}
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- trust strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.4rem;
  justify-content: center;
  padding: 1.3rem clamp(1.25rem, 5vw, 3.5rem);
  background: var(--navy);
  color: #dbe6f5;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
}
.trust-strip strong { color: var(--sky); font-weight: 700; }

/* ---------- intro catalogo ---------- */
.intro-catalogo {
  max-width: 760px;
  margin: 0 auto;
  padding: 4.5rem clamp(1.25rem, 5vw, 3.5rem) 2.5rem;
  text-align: center;
}
.intro-catalogo h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 1rem; }
.intro-copy { font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.collection-tabs { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.collection-tabs a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--sky-light);
  border: 1.5px solid var(--line);
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.collection-tabs a span { font-size: 0.72rem; color: var(--ink-dim); font-weight: 500; font-family: var(--body); }
.collection-tabs a:hover { background: #fff; border-color: var(--blue); transform: translateY(-2px); }

/* ---------- section head ---------- */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem clamp(1.25rem, 5vw, 3.5rem) 2rem;
}
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 0.7rem; }
.section-copy { font-size: 0.98rem; line-height: 1.65; max-width: 46em; margin-bottom: 1.6rem; }

.section-head-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.5rem clamp(1.25rem, 5vw, 3.5rem) 1rem;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 2.8rem;
  align-items: center;
}
.section-head-grid .section-head { max-width: none; margin: 0; padding: 0; }
.section-head-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}
.section-head-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .section-head-grid { grid-template-columns: 1fr; padding-top: 1.5rem; }
  .section-head-media { aspect-ratio: 16 / 8; }
}

.filter-pills { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.pill {
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-dim);
  background: var(--paper-2);
  border: 1.5px solid var(--line);
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.pill:hover { border-color: var(--blue); color: var(--blue-2); }
.pill.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- collection / swatch grid ---------- */
.collection { padding-bottom: 1rem; }
.collection-alt { background: var(--sky-light); padding-top: 0.5rem; padding-bottom: 4rem; }
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.4rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem) 1rem;
}
#grid-sheer { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.swatchcard {
  background: var(--paper-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.swatchcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.swatchcard[data-hidden] { display: none; }

.swatchcard-hero {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0; border: none; background: var(--line-soft);
  position: relative;
  overflow: hidden;
}
.swatchcard-hero img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.swatchcard-hero:hover img { transform: scale(1.06); }
.swatchcard-hero::after {
  content: "Ver de cerca";
  position: absolute; left: 0.7rem; bottom: 0.7rem;
  font-family: var(--display); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #fff; background: rgba(14,23,48,0.55);
  padding: 0.35rem 0.7rem; border-radius: 999px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(4px);
}
.swatchcard-hero:hover::after { opacity: 1; transform: translateY(0); }

/* Sheer Elegance: la tela tiene bandas que corren horizontales al instalarse,
   así que su tarjeta usa una franja 3:2 en vez del cuadro parejo de Enrollables. */
.swatchcard--sheer .swatchcard-hero { aspect-ratio: 3 / 2; }

.swatchcard-body { padding: 1.1rem 1.15rem 1.3rem; display: flex; flex-direction: column; gap: 0.3rem; flex: 1; }
.swatchcard-body .cat {
  font-family: var(--display); font-size: 0.62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue-2);
}
.swatchcard-body .pname { font-size: 1.08rem; font-weight: 600; margin-bottom: 0.1rem; }
.swatchcard-body .pspec { font-size: 0.78rem; color: var(--ink-dim); margin-bottom: 0.7rem; }

.chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.chip {
  width: 30px; height: 30px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  padding: 0;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.chip:hover { transform: scale(1.18); box-shadow: 0 4px 10px -2px rgba(14,23,48,0.35); z-index: 2; }
.swatchcard--sheer .chip { width: 44px; height: 29px; border-radius: 5px; }
.chip-more { display: flex; align-items: center; justify-content: center; }
.chip-more::before { content: ""; position: absolute; inset: 0; background: rgba(14,23,48,0.55); border-radius: 7px; }
.chip-more::after {
  content: attr(data-more);
  position: relative;
  color: #fff; font-family: var(--display); font-size: 0.6rem; font-weight: 700;
}

.card-cta {
  margin-top: auto;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--blue-2);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.card-cta::after { content: "\2192"; transition: transform 0.2s ease; }
.card-cta:hover::after { transform: translateX(3px); }

/* ---------- divider photo (Sheer intro) ---------- */
.divider-photo {
  background-size: cover;
  background-position: center;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.divider-inner { max-width: 620px; }
.divider-title { color: #fff; font-size: clamp(2rem, 4.6vw, 3rem); margin-bottom: 1rem; }
.divider-copy { color: rgba(255,255,255,0.88); font-size: 1rem; line-height: 1.7; }

/* ---------- process ---------- */
.process { padding: 4.5rem 0 3rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem);
}
.process-steps li { display: flex; flex-direction: column; gap: 0.5rem; }
.step-num {
  font-family: var(--display); font-weight: 700; font-size: 1.6rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--sky);
  letter-spacing: 0.02em;
}
.process-steps h3 { font-size: 1.05rem; }
.process-steps p { font-size: 0.88rem; line-height: 1.6; }

/* ---------- más líneas: carrusel de categorías ---------- */
.mas-lineas { padding: 1rem 0 4rem; }
.cat-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem);
}
.cat-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.3rem 0.1rem 1rem;
  flex: 1;
  scrollbar-width: thin;
}
.cat-card {
  flex: 0 0 auto;
  width: clamp(170px, 22vw, 230px);
  aspect-ratio: 4 / 5;
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line-soft);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  text-align: left;
}
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 0.9rem 0.8rem;
  background: linear-gradient(180deg, transparent, rgba(14,23,48,0.82));
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
}
.cat-card--kids .cat-card-label {
  background: linear-gradient(90deg, #ff5f7e, #ffb14e, #4fabdd, #8c6bff);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.cat-carousel-arrow {
  flex: 0 0 auto;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--paper-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 640px) { .cat-carousel-arrow { display: none; } }

/* ---------- cta final ---------- */
.cta-final {
  background: radial-gradient(120% 140% at 15% 20%, var(--navy-2) 0%, var(--navy-deep) 70%);
  padding: 5rem clamp(1.25rem, 5vw, 3.5rem);
  text-align: center;
}
.cta-final-inner { max-width: 700px; margin: 0 auto; }
.cta-final h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 1.6rem; line-height: 1.2; }
.cta-final-note { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin: -0.8rem 0 1.8rem; }
.cta-final .cta-row { justify-content: center; }

/* ---------- footer ---------- */
.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding: 3.5rem clamp(1.25rem, 5vw, 3.5rem) 2.5rem;
  background: var(--navy-deep);
  color: #aab6cf;
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 0.9rem; filter: brightness(1.15); }
.footcol-title {
  font-family: var(--display); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-bottom: 0.8rem;
}
.footnote { font-size: 0.84rem; line-height: 1.7; margin: 0.25rem 0; color: #aab6cf; }
.footnote a:hover { color: var(--sky); }
.footer-col-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.copyright { font-size: 0.74rem; opacity: 0.7; }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; }
.lightbox[hidden] { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(10, 15, 30, 0.88); backdrop-filter: blur(4px); }
.lightbox-panel {
  position: relative;
  max-width: min(90vw, 640px);
  margin: 6vh auto 0;
  background: var(--paper-2);
  border-radius: 18px;
  padding: 1.2rem 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-panel img { width: 100%; max-height: 60vh; object-fit: contain; border-radius: 10px; background: var(--line-soft); }
.lightbox-close {
  position: absolute; top: -16px; right: -16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff; border: 3px solid var(--paper);
  font-size: 1.3rem; line-height: 1; display: flex; align-items: center; justify-content: center;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.lightbox-prev { left: -6px; }
.lightbox-next { right: -6px; }
.lightbox-caption { text-align: center; padding-top: 1rem; }
#lightbox-name { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
#lightbox-color { font-size: 0.85rem; color: var(--ink-dim); margin: 0.2rem 0 0.9rem; }

/* ---------- category modal (más que persianas) ---------- */
.cat-modal { position: fixed; inset: 0; z-index: 100; }
.cat-modal[hidden] { display: none; }
.cat-modal-backdrop { position: absolute; inset: 0; background: rgba(10, 15, 30, 0.88); backdrop-filter: blur(4px); }
.cat-modal-panel {
  position: relative;
  max-width: min(90vw, 560px);
  margin: 6vh auto 0;
  background: var(--paper-2);
  border-radius: 18px;
  padding: 1.2rem 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cat-modal-panel img { width: 100%; max-height: 55vh; object-fit: contain; border-radius: 10px; background: var(--line-soft); }
.cat-modal-close {
  position: absolute; top: -16px; right: -16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff; border: 3px solid var(--paper);
  font-size: 1.3rem; line-height: 1; display: flex; align-items: center; justify-content: center;
}
.cat-modal-caption { text-align: center; padding-top: 1rem; }
#cat-modal-title { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
#cat-modal-desc { font-size: 0.92rem; color: var(--ink-dim); line-height: 1.6; margin: 0.4rem 0 1rem; }

/* ---------- floating whatsapp ---------- */
.floating-wa {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(37, 211, 102, 0.65);
  transition: transform 0.2s ease;
}
.floating-wa:hover { transform: scale(1.08); }

/* ---------- motion: scroll-reveal ---------- */
/* Usa la propiedad `translate` (independiente de `transform`) para no chocar
   con el hover de las tarjetas, que sí usa `transform`. */
.reveal {
  opacity: 0;
  translate: 0 26px;
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
              translate 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate;
}
.reveal.is-revealed { opacity: 1; translate: 0 0; }

/* ---------- motion: parallax de fondo (escritorio, sin táctil) ---------- */
.section-head-media img { will-change: transform; }
@media (min-width: 820px) and (hover: hover) and (pointer: fine) {
  .hero, .divider-photo { background-attachment: fixed; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .navlinks { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: 88vh; padding: 5.5rem 1.25rem 3.5rem; align-items: center; }
  .trust-strip { text-align: left; justify-content: flex-start; }
  .site-footer { grid-template-columns: 1fr; }
  .lightbox-panel { margin-top: 12vh; padding: 1rem; }
  .lightbox-nav { width: 38px; height: 38px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .reveal { opacity: 1 !important; translate: 0 0 !important; }
  .hero, .divider-photo { background-attachment: scroll !important; }
}
