/* Alejo Photo — blanco y negro, títulos serif, CTAs sutiles. */

/* ---------- Paleta monocromática por modo ---------- */

html[data-ps-scheme="dark"],
html:not([data-ps-scheme]) {
  --ps-primary: #f2f2f0;
  --ps-accent: #f2f2f0;
  --ps-on-primary: #121212;
  --ps-bg: #121212;
  --ps-bg-soft: #181818;
  --ps-text: #d9d9d6;
  --ps-heading: #f7f7f5;
  --ps-muted: #9a9a97;
  --ps-border: rgba(255, 255, 255, 0.1);
  --ps-glass: rgba(255, 255, 255, 0.05);
  --ps-header-fill: rgba(18, 18, 18, 0.86);
  --ps-nav: rgba(247, 247, 245, 0.72);
  --ps-nav-hover: #f7f7f5;
  --ps-cta-text: #f7f7f5;
  --ps-line: rgba(255, 255, 255, 0.16);
}

html[data-ps-scheme="light"] {
  --ps-primary: #141414;
  --ps-accent: #141414;
  --ps-on-primary: #ffffff;
  --ps-bg: #fafafa;
  --ps-bg-soft: #f1f1f0;
  --ps-text: #2a2a2a;
  --ps-heading: #0f0f0f;
  --ps-muted: #666664;
  --ps-border: rgba(0, 0, 0, 0.1);
  --ps-glass: rgba(255, 255, 255, 0.6);
  --ps-header-fill: rgba(250, 250, 250, 0.88);
  --ps-nav: rgba(15, 15, 15, 0.68);
  --ps-nav-hover: #0f0f0f;
  --ps-cta-text: #0f0f0f;
  --ps-line: rgba(0, 0, 0, 0.16);
}

:root {
  --ps-radius-sm: 2px;
  --ps-radius-md: 3px;
  --ps-radius-lg: 4px;
  --ps-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ps-track: 0.2em;
}

body.ps-photo-site {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

.ps-photo-site h1,
.ps-photo-site h2,
.ps-photo-site h3,
.ps-photo-site h4 {
  color: var(--ps-heading);
  font-weight: 400;
  letter-spacing: 0;
}

.ps-photo-site h1,
.ps-photo-site h2,
.ps-photo-site h3,
.ps-photo-site h4,
.ps-photo-site summary,
.ps-price-teaser__price,
.ps-package__price,
.ps-price-list__price,
.ps-step__number {
  font-variant-numeric: lining-nums;
}

.ps-photo-site strong,
.ps-photo-site b {
  font-weight: 500;
}

.ps-photo-site .ps-sec__eyebrow,
.ps-photo-site .ps-page-hero .ps-sec__eyebrow,
.ps-photo-site .psc-contact__eyebrow {
  color: var(--ps-muted);
  font-family: var(--ps-font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
}

.ps-photo-site .ps-sec__title {
  font-weight: 400;
  letter-spacing: 0;
}

.ps-photo-site .ps-sec {
  padding: clamp(80px, 10vw, 130px) 24px;
}

.ps-photo-site a:hover {
  text-decoration: none;
}

/* ---------- Header ---------- */

.ps-photo-site .ps-site-header-wrap::before {
  background: var(--ps-header-fill);
  backdrop-filter: blur(22px) saturate(0.6);
  -webkit-backdrop-filter: blur(22px) saturate(0.6);
  box-shadow: none;
}

.ps-photo-site .ps-site-header__menu > li > a {
  font-size: 11.5px !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.ps-photo-site .ps-site-header__menu .sub-menu {
  border-radius: 2px;
  background: color-mix(in srgb, var(--ps-bg) 96%, transparent);
}

.ps-photo-site .ps-site-header__menu .sub-menu a {
  border-radius: 0;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ps-photo-site .ps-site-header__menu .sub-menu a:hover,
.ps-photo-site .ps-site-header__menu .sub-menu a:focus-visible {
  background: transparent;
}

.ps-photo-site .ps-site-header__cta {
  min-height: 38px;
  padding: 0 20px;
  border: 1px solid var(--ps-line);
  border-radius: 0;
  background: transparent;
  color: var(--ps-heading) !important;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.ps-photo-site .ps-site-header__cta:hover {
  border-color: var(--ps-heading);
  background: transparent;
}

.ps-photo-site .ps-site-header__logo-img {
  max-height: 46px;
}

/* ---------- Enlace sutil (CTA) ---------- */

.ps-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  color: var(--ps-heading);
  font-family: var(--ps-font);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: var(--ps-track);
  text-transform: uppercase;
  text-decoration: none !important;
}

.ps-link > span:first-child {
  background: linear-gradient(currentColor, currentColor) left bottom / 100% 1px no-repeat;
  padding-bottom: 4px;
  transition: background-size 0.45s var(--ps-ease);
}

.ps-link__arrow {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 0.45s var(--ps-ease);
}

a.ps-link:hover > span:first-child,
a.ps-link:focus-visible > span:first-child,
.ps-photo-card:hover .ps-link > span:first-child {
  background-size: 30% 1px;
}

a.ps-link:hover .ps-link__arrow,
a.ps-link:focus-visible .ps-link__arrow,
.ps-photo-card:hover .ps-link__arrow {
  transform: translateX(6px);
}

.ps-center-link {
  margin-top: clamp(40px, 6vw, 64px);
  text-align: center;
}

/* ---------- Cabecera de sección centrada ---------- */

.ps-head {
  max-width: 720px;
  margin: 0 auto clamp(44px, 6vw, 72px);
}

.ps-head--center {
  text-align: center;
}

.ps-head__title {
  margin: 0 0 18px;
  color: var(--ps-heading);
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 400;
  line-height: 1.08;
}

.ps-head__text {
  max-width: 600px;
  margin: 0 auto;
  color: var(--ps-muted);
  font-size: 16.5px;
  line-height: 1.8;
}

.ps-head--left .ps-head__text {
  margin-left: 0;
}

.ps-head:last-child {
  margin-bottom: 0;
}

/* ---------- Cabecera interna ---------- */

.ps-photo-site .ps-page-hero {
  height: auto;
  min-height: 0;
  padding: clamp(96px, 13vw, 170px) 0 clamp(56px, 7vw, 90px);
}

.ps-photo-site .ps-page-hero--plain {
  background: var(--ps-bg);
  color: var(--ps-heading);
  border-bottom: 1px solid var(--ps-border);
}

.ps-photo-site .ps-page-hero--image {
  min-height: 420px;
  color: #f7f7f5;
}

.ps-photo-site .ps-page-hero--image .ps-sec__eyebrow {
  color: rgba(247, 247, 245, 0.75);
}

.ps-photo-site .ps-page-hero__inner {
  max-width: 820px;
}

.ps-photo-site .ps-page-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(44px, 6.4vw, 84px);
  font-weight: 400;
  line-height: 1.02;
}

.ps-photo-site .ps-page-hero--plain .ps-page-hero__inner > p:not(.ps-sec__eyebrow) {
  color: var(--ps-muted);
  font-size: 17px;
}

/* ---------- Hero de inicio ---------- */

.ps-home-hero.ps-sec {
  padding-top: clamp(56px, 8vw, 110px);
  padding-bottom: clamp(80px, 10vw, 130px);
  overflow: hidden;
}

.ps-home-hero .ps-sec__inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.ps-home-hero__title {
  margin: 0 0 26px;
  font-size: clamp(46px, 6vw, 88px);
  line-height: 0.98;
}

.ps-home-hero__text {
  max-width: 440px;
  margin: 0 0 40px;
  color: var(--ps-muted);
  font-size: 17px;
  line-height: 1.8;
}

.ps-home-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
}

.ps-home-hero__collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
  align-items: start;
}

.ps-home-hero__collage--1 {
  grid-template-columns: minmax(0, 1fr);
  max-width: 460px;
  margin-left: auto;
}

.ps-home-hero__collage--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ps-home-hero__frame {
  margin: 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--ps-bg-soft);
  animation: ps-rise 1.2s var(--ps-ease) both;
}

.ps-home-hero__collage--3 .ps-home-hero__frame:nth-child(1) {
  margin-top: 18%;
}

.ps-home-hero__collage--3 .ps-home-hero__frame:nth-child(2) {
  animation-delay: 0.12s;
}

.ps-home-hero__collage--3 .ps-home-hero__frame:nth-child(3) {
  margin-top: 36%;
  animation-delay: 0.24s;
}

.ps-home-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes ps-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Frase centrada ---------- */

.ps-statement .ps-head {
  max-width: 820px;
}

.ps-statement .ps-head__title {
  font-size: clamp(30px, 3.6vw, 46px);
  font-style: italic;
  line-height: 1.25;
}

/* ---------- Tarjetas con foto ---------- */

.ps-photo-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

.ps-photo-card {
  position: relative;
}

.ps-photo-card__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ps-bg-soft);
}

.ps-photo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ps-ease), filter 0.6s ease;
}

.ps-photo-card:hover .ps-photo-card__media img {
  transform: scale(1.04);
}

.ps-photo-card__body {
  padding-top: 24px;
  text-align: center;
}

.ps-photo-card__index {
  display: block;
  margin-bottom: 8px;
  color: var(--ps-muted);
  font-size: 11px;
  letter-spacing: var(--ps-track);
}

.ps-photo-card__title {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.4vw, 32px);
}

.ps-photo-card__title a {
  color: inherit;
}

.ps-photo-card__title a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ps-photo-card__body p {
  max-width: 320px;
  margin: 0 auto 18px;
  color: var(--ps-muted);
  font-size: 15px;
}

/* ---------- Mosaico + galerías ---------- */

.ps-gallery {
  columns: 3;
  column-gap: clamp(10px, 1.2vw, 16px);
}

.ps-gallery__item {
  position: relative;
  display: block;
  margin-bottom: clamp(10px, 1.2vw, 16px);
  overflow: hidden;
  break-inside: avoid;
  background: var(--ps-bg-soft);
  cursor: zoom-in;
}

.ps-gallery__item img {
  width: 100%;
  height: auto;
  transition: transform 1s var(--ps-ease), opacity 0.4s ease;
}

.ps-gallery__item:hover img {
  transform: scale(1.03);
  opacity: 0.88;
}

.ps-gallery-sec.ps-sec {
  padding-top: clamp(48px, 6vw, 80px);
}

.ps-gallery-sec__intro {
  margin-bottom: clamp(40px, 5vw, 64px);
  text-align: center;
}

.ps-gallery-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 48px;
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 40px;
  border-top: 1px solid var(--ps-border);
}

/* ---------- Foto + texto ---------- */

.ps-split-photo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}

.ps-split-photo__media {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ps-bg-soft);
}

.ps-split-photo__media--wide {
  aspect-ratio: 3 / 2;
}

.ps-split-photo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-split-photo--reverse .ps-split-photo__media {
  order: 2;
}

.ps-split-photo--solo {
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
  text-align: center;
}

.ps-split-photo__content {
  max-width: 500px;
}

.ps-split-photo--solo .ps-split-photo__content {
  max-width: none;
}

.ps-split-photo__subtitle {
  margin: -6px 0 22px;
  color: var(--ps-muted);
  font-size: 12px;
  letter-spacing: var(--ps-track);
  text-transform: uppercase;
}

.ps-split-photo__text {
  margin: 0 0 20px;
  color: var(--ps-text);
  font-size: 16.5px;
  line-height: 1.85;
}

.ps-split-photo__content .ps-link {
  margin-top: 16px;
}

/* ---------- Precios (inicio) ---------- */

.ps-price-teaser {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ps-border);
  border-bottom: 1px solid var(--ps-border);
}

.ps-price-teaser__item {
  padding: clamp(32px, 4vw, 52px) clamp(20px, 3vw, 40px);
  text-align: center;
}

.ps-price-teaser__item + .ps-price-teaser__item {
  border-left: 1px solid var(--ps-border);
}

.ps-price-teaser__item h3 {
  margin: 0 0 6px;
  color: var(--ps-muted);
  font-family: var(--ps-font);
  font-size: 11.5px;
  letter-spacing: var(--ps-track);
  text-transform: uppercase;
}

.ps-price-teaser__price {
  margin: 0 0 14px;
  color: var(--ps-heading);
  font-family: var(--ps-font-heading);
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.1;
}

.ps-price-teaser__item p:last-child {
  max-width: 280px;
  margin: 0 auto;
  color: var(--ps-muted);
  font-size: 15px;
}

/* ---------- Paquetes ---------- */

.ps-packages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--ps-border);
  background: var(--ps-border);
}

.ps-package {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 40px) clamp(22px, 2.4vw, 32px);
  background: var(--ps-bg);
  transition: background 0.4s ease;
}

.ps-sec--soft .ps-package {
  background: var(--ps-bg-soft);
}

.ps-package:hover {
  background: color-mix(in srgb, var(--ps-bg) 92%, var(--ps-heading));
}

.ps-sec--soft .ps-package:hover {
  background: color-mix(in srgb, var(--ps-bg-soft) 92%, var(--ps-heading));
}

.ps-package__head {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ps-border);
  text-align: center;
}

.ps-package {
  position: relative;
}

.ps-package__head {
  padding-top: 26px;
}

.ps-package__badge {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 4px 10px;
  border: 1px solid var(--ps-line);
  color: var(--ps-heading);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ps-package__name {
  margin: 0 0 6px;
  font-size: clamp(26px, 2.2vw, 30px);
}

.ps-package__price {
  margin: 0;
  color: var(--ps-heading);
  font-family: var(--ps-font-heading);
  font-size: clamp(38px, 3.4vw, 48px);
  line-height: 1.1;
}

.ps-package__list {
  flex: 1;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.ps-package__list li {
  position: relative;
  padding: 7px 0 7px 20px;
  color: var(--ps-text);
  font-size: 14.5px;
  line-height: 1.55;
}

.ps-package__list li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 2px;
  width: 8px;
  height: 1px;
  background: var(--ps-muted);
}

.ps-package__link {
  align-self: center;
}

.ps-packages--sessions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ---------- Lista de adicionales ---------- */

.ps-price-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.ps-price-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0;
  padding: 9px 0;
  line-height: 1.4;
}

.ps-price-list__name {
  color: var(--ps-text);
}

.ps-price-list__dots {
  flex: 1;
  min-width: 24px;
  border-bottom: 1px dotted var(--ps-line);
  transform: translateY(-4px);
}

.ps-price-list__price {
  color: var(--ps-heading);
  font-family: var(--ps-font-heading);
  font-size: 22px;
  white-space: nowrap;
}

/* ---------- Pasos ---------- */

.ps-steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.ps-step {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--ps-line);
  text-align: center;
}

.ps-step__number {
  display: block;
  margin-bottom: 14px;
  color: var(--ps-muted);
  font-family: var(--ps-font-heading);
  font-size: 44px;
  font-style: italic;
  line-height: 1;
}

.ps-step__title {
  margin: 0 0 10px;
  font-size: 26px;
}

.ps-step p {
  max-width: 320px;
  margin: 0 auto;
  color: var(--ps-muted);
  font-size: 15px;
}

.ps-note {
  max-width: 640px;
  margin: clamp(40px, 5vw, 60px) auto 0;
  color: var(--ps-muted);
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

/* ---------- Destacados (sobre mí) ---------- */

.ps-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
}

.ps-feature {
  text-align: center;
}

.ps-feature h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.ps-feature p {
  max-width: 320px;
  margin: 0 auto;
  color: var(--ps-muted);
  font-size: 15px;
}

/* ---------- Preguntas frecuentes ---------- */

.ps-faq {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--ps-border);
}

.ps-faq__item {
  border-bottom: 1px solid var(--ps-border);
}

.ps-faq__item summary {
  position: relative;
  padding: 26px 48px 26px 0;
  color: var(--ps-heading);
  font-family: var(--ps-font-heading);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.ps-faq__item summary::-webkit-details-marker {
  display: none;
}

.ps-faq__item summary::before,
.ps-faq__item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 14px;
  height: 1px;
  background: var(--ps-heading);
  transition: transform 0.35s var(--ps-ease);
}

.ps-faq__item summary::after {
  transform: rotate(90deg);
}

.ps-faq__item[open] summary::after {
  transform: rotate(0deg);
}

.ps-faq__item p {
  max-width: 700px;
  margin: 0;
  padding: 0 0 28px;
  color: var(--ps-muted);
  font-size: 15.5px;
}

/* ---------- Cierre sutil ---------- */

.ps-cta-soft.ps-sec {
  padding-block: clamp(90px, 11vw, 140px);
  border-top: 1px solid var(--ps-border);
  text-align: center;
}

.ps-cta-soft .ps-head {
  margin-bottom: 36px;
}

.ps-cta-soft .ps-head__title {
  font-size: clamp(34px, 4vw, 50px);
}

.ps-cta-soft__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 48px;
}

/* ---------- Contacto (Admin Core) ---------- */

.ps-photo-site .psc-contact__header {
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  text-align: center;
}

.ps-photo-site .psc-contact__field > label,
.ps-photo-site .psc-contact__item-value,
.ps-photo-site .psc-contact__response {
  font-weight: 400;
}

.ps-photo-site .psc-contact__item-label {
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--ps-muted);
}

.ps-photo-site .psc-contact__info-title {
  font-family: var(--ps-font-heading);
  font-size: 22px;
  font-weight: 400;
}

.ps-photo-site .psc-contact__title {
  font-family: var(--ps-font-heading);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  letter-spacing: 0;
}

.ps-photo-site .psc-contact__info-card,
.ps-photo-site .psc-contact__form-wrap {
  border-color: var(--ps-border);
  border-radius: 2px;
  background: var(--ps-bg-soft);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.ps-photo-site .psc-contact__response::before {
  background: var(--ps-heading);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--ps-heading) 12%, transparent);
}

.ps-photo-site .psc-contact__item-icon,
.ps-photo-site .psc-contact__social-link {
  border-radius: 0;
}

.ps-photo-site .psc-contact__field input,
.ps-photo-site .psc-contact__field select,
.ps-photo-site .psc-contact__field textarea {
  border-radius: 0;
}

.ps-photo-site .psc-contact__submit {
  border-radius: 0;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: var(--ps-track);
  text-transform: uppercase;
}

.ps-photo-site .ps-btn {
  border-radius: 0;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: var(--ps-track);
  text-transform: uppercase;
}

/* ---------- Footer ---------- */

.ps-photo-site .ps-site-footer {
  border-top: 1px solid var(--ps-border);
}

.ps-photo-site .ps-site-footer h2,
.ps-photo-site .ps-site-footer h3 {
  font-family: var(--ps-font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ---------- Visor ---------- */

.ps-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 14, 14, 0.97);
  color: #f7f7f5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.ps-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.ps-lightbox__figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 64px clamp(16px, 7vw, 96px);
}

.ps-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.35s ease, transform 0.5s var(--ps-ease);
  user-select: none;
}

.ps-lightbox__img.is-loaded {
  opacity: 1;
  transform: none;
}

.ps-lightbox__btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(247, 247, 245, 0.7);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.ps-lightbox__btn:hover,
.ps-lightbox__btn:focus-visible {
  color: #fff;
}

.ps-lightbox__btn:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.6);
  outline-offset: 0;
}

.ps-lightbox__close {
  top: 10px;
  right: 10px;
  font-size: 30px;
}

.ps-lightbox__prev {
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.ps-lightbox__next {
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.ps-lightbox__count {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(247, 247, 245, 0.6);
  font-size: 11px;
  letter-spacing: 0.24em;
}

.ps-lightbox.is-single .ps-lightbox__prev,
.ps-lightbox.is-single .ps-lightbox__next,
.ps-lightbox.is-single .ps-lightbox__count {
  display: none;
}

body.ps-lightbox-open {
  overflow: hidden;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .ps-packages,
  .ps-packages--sessions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ps-home-hero .ps-sec__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .ps-home-hero__content {
    text-align: center;
  }

  .ps-home-hero__text {
    margin-inline: auto;
  }

  .ps-home-hero__links {
    justify-content: center;
  }

  .ps-photo-cards,
  .ps-features,
  .ps-steps-row,
  .ps-price-teaser {
    grid-template-columns: minmax(0, 1fr);
  }

  .ps-photo-cards {
    max-width: 480px;
    margin-inline: auto;
    gap: 56px;
  }

  .ps-price-teaser__item + .ps-price-teaser__item {
    border-left: 0;
    border-top: 1px solid var(--ps-border);
  }

  .ps-split-photo {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .ps-split-photo--reverse .ps-split-photo__media {
    order: 0;
  }

  .ps-split-photo__media {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }

  .ps-split-photo__content {
    max-width: 600px;
    margin-inline: auto;
  }

  .ps-gallery {
    columns: 2;
  }
}

@media (max-width: 600px) {
  .ps-photo-site .ps-sec {
    padding-inline: 20px;
  }

  .ps-packages,
  .ps-packages--sessions {
    grid-template-columns: minmax(0, 1fr);
  }

  .ps-gallery {
    column-gap: 8px;
  }

  .ps-gallery__item {
    margin-bottom: 8px;
  }

  .ps-home-hero__collage {
    gap: 8px;
  }

  .ps-price-list li {
    flex-wrap: wrap;
  }

  .ps-lightbox__prev,
  .ps-lightbox__next {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ps-home-hero__frame {
    animation: none;
  }

  .ps-photo-card__media img,
  .ps-gallery__item img,
  .ps-lightbox__img {
    transition: none;
  }
}
