/* =============================================================
   PHOTOSHOOT (Exterior & Studio) — Shared styles
   ============================================================= */
:root {
  --psh-ink: #1a1614;
  --psh-ink-soft: #4a3f38;
  --psh-mute: rgba(26, 22, 20, 0.55);
  --psh-line: rgba(26, 22, 20, 0.10);
  --psh-cream: #efe6dc;
  --psh-cream-soft: #f5ecde;
  --psh-ivory: #fbf6ed;
  --psh-beige: #e8d9bf;
  --psh-white: #ffffff;
  --psh-gold: #b89968;
  --psh-gold-soft: #d4b78a;
  --psh-gold-deep: #9a7d52;
  --psh-display: 'Space Grotesk', system-ui, sans-serif;
  --psh-cormo: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --psh-script: 'Allura', cursive;
  --psh-mono: 'JetBrains Mono', monospace;
}

.psh-page { background: var(--psh-ivory); margin: 0; font-family: var(--psh-display); color: var(--psh-ink); -webkit-font-smoothing: antialiased; }
em { font-family: var(--psh-cormo); font-style: italic; font-weight: 400; color: var(--psh-gold); }
.psh-script { font-family: var(--psh-script); }

/* Shared eyebrow */
.psh-eye {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--psh-mono); font-size: 11px;
  letter-spacing: 0.22em; color: var(--psh-gold-deep);
  text-transform: uppercase;
}

/* =============================================================
   HERO — full-bleed photo + cursive title
   ============================================================= */
.psh-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.psh-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.75) saturate(1.05);
  animation: psh-zoom 18s ease-in-out infinite alternate;
}
@keyframes psh-zoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.psh-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.18) 40%, rgba(0,0,0,0.55) 100%),
    radial-gradient(ellipse 80% 60% at 50% 60%, transparent, rgba(0,0,0,0.42));
}
/* Studio variant — slightly cooler tone */
.psh-hero--std .psh-hero__overlay {
  background:
    linear-gradient(180deg, rgba(15,12,10,0.60) 0%, rgba(15,12,10,0.25) 40%, rgba(15,12,10,0.65) 100%),
    radial-gradient(ellipse 80% 60% at 50% 60%, transparent, rgba(0,0,0,0.50));
}
.psh-hero__content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 60px 40px;
  color: var(--psh-white);
}
.psh-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--psh-mono);
  font-size: 12px; letter-spacing: 0.30em;
  color: var(--psh-gold-soft);
  margin-bottom: 18px;
}
.psh-hero__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--psh-gold-soft);
  box-shadow: 0 0 0 4px rgba(212,183,138,0.20);
  animation: psh-pulse 2.4s ease-in-out infinite;
}
@keyframes psh-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.65; transform: scale(1.15); } }
.psh-hero__title {
  font-family: var(--psh-script);
  font-weight: 400;
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.85;
  letter-spacing: 0;
  color: var(--psh-white);
  margin: 0 0 14px;
  text-shadow: 0 8px 32px rgba(0,0,0,0.55);
}
.psh-hero__sub {
  font-family: var(--psh-cormo);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  color: var(--psh-gold-soft);
  margin: 0 0 24px;
}
.psh-hero__sub em { font-family: var(--psh-cormo); color: var(--psh-white); }
.psh-hero__lede {
  font-family: var(--psh-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 32px;
}
.psh-hero__lede strong { color: var(--psh-gold-soft); font-weight: 600; }
.psh-hero__actions {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.psh-hero__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--psh-white);
  color: var(--psh-ink);
  border-radius: 999px;
  font-family: var(--psh-display);
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.psh-hero__cta:hover {
  transform: translateY(-2px);
  background: var(--psh-gold-soft);
  box-shadow: 0 18px 40px -16px rgba(212,183,138,0.55);
}
.psh-hero__alt {
  font-family: var(--psh-cormo);
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color .2s;
}
.psh-hero__alt:hover { color: var(--psh-gold-soft); }
.psh-hero__scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.55);
  font-family: var(--psh-mono);
  font-size: 10px; letter-spacing: 0.30em;
  z-index: 2;
}
.psh-hero__scrollLine {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.4);
  animation: psh-scroll 2s ease-in-out infinite;
}
@keyframes psh-scroll { 0%, 100% { transform: scaleX(0.4); } 50% { transform: scaleX(1); } }

/* =============================================================
   PARA QUIÉN ES
   ============================================================= */
.psh-for {
  padding: clamp(80px,12vh,140px) 32px;
  background: var(--psh-ivory);
}
.psh-for__container { max-width: 1200px; margin: 0 auto; }
.psh-for__head { text-align: center; max-width: 720px; margin: 0 auto clamp(48px, 7vh, 72px); }
.psh-for__head .psh-eye { margin-bottom: 20px; }
.psh-for__title {
  font-family: var(--psh-display); font-weight: 300;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--psh-ink); margin: 0 0 18px;
}
.psh-for__title em { font-family: var(--psh-cormo); font-style: italic; color: var(--psh-gold); font-weight: 400; }
.psh-for__lede {
  font-family: var(--psh-display); font-weight: 300;
  font-size: 16px; line-height: 1.65;
  color: var(--psh-ink-soft); margin: 0;
}

.psh-for__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.psh-target {
  padding: 28px 24px;
  background: var(--psh-white);
  border: 1px solid rgba(184,153,104,0.20);
  border-radius: 16px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.psh-target:hover {
  transform: translateY(-4px);
  border-color: rgba(184,153,104,0.45);
  box-shadow: 0 24px 60px -28px rgba(184,153,104,0.30);
}
.psh-target__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(184,153,104,0.12);
  border: 1px solid rgba(184,153,104,0.25);
  color: var(--psh-gold);
}
.psh-target h3 {
  font-family: var(--psh-display); font-weight: 500;
  font-size: 17px; letter-spacing: -0.01em;
  color: var(--psh-ink); margin: 0;
}
.psh-target p {
  font-family: var(--psh-display); font-weight: 300;
  font-size: 14px; line-height: 1.55;
  color: var(--psh-ink-soft); margin: 0;
}

/* =============================================================
   LA EXPERIENCIA — 4 pasos
   ============================================================= */
.psh-flow {
  padding: clamp(80px,12vh,140px) 32px;
  background: var(--psh-cream-soft);
  border-top: 1px solid var(--psh-line);
}
.psh-flow__container { max-width: 1200px; margin: 0 auto; }
.psh-flow__head { text-align: center; max-width: 720px; margin: 0 auto clamp(48px, 7vh, 72px); }
.psh-flow__head .psh-eye { margin-bottom: 20px; }
.psh-flow__title {
  font-family: var(--psh-display); font-weight: 300;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--psh-ink); margin: 0 0 18px;
}
.psh-flow__title em { font-family: var(--psh-cormo); font-style: italic; color: var(--psh-gold); font-weight: 400; }
.psh-flow__lede {
  font-family: var(--psh-display); font-weight: 300;
  font-size: 16px; line-height: 1.65;
  color: var(--psh-ink-soft); margin: 0;
}

.psh-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.psh-step {
  padding: 32px 24px 28px;
  background: var(--psh-white);
  border: 1px solid rgba(184,153,104,0.20);
  border-radius: 16px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.psh-step__num {
  font-family: var(--psh-cormo); font-style: italic;
  font-size: 56px; line-height: 1;
  color: var(--psh-gold-soft);
  font-weight: 300;
  margin-bottom: 4px;
}
.psh-step h3 {
  font-family: var(--psh-display); font-weight: 500;
  font-size: 18px; letter-spacing: -0.01em;
  color: var(--psh-ink); margin: 0;
}
.psh-step p {
  font-family: var(--psh-display); font-weight: 300;
  font-size: 14px; line-height: 1.6;
  color: var(--psh-ink-soft); margin: 0;
}
.psh-step p strong { color: var(--psh-ink); font-weight: 600; }

/* =============================================================
   PLANES
   ============================================================= */
.psh-plans {
  padding: clamp(80px,12vh,140px) 32px;
  background: var(--psh-ivory);
}
.psh-plans__container { max-width: 1280px; margin: 0 auto; }
.psh-plans__head { text-align: center; max-width: 720px; margin: 0 auto clamp(56px, 8vh, 88px); }
.psh-plans__head .psh-eye { margin-bottom: 20px; }
.psh-plans__title {
  font-family: var(--psh-display); font-weight: 300;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.02; letter-spacing: -0.025em;
  color: var(--psh-ink); margin: 0 0 18px;
}
.psh-plans__title em { font-family: var(--psh-cormo); font-style: italic; color: var(--psh-gold); font-weight: 400; }
.psh-plans__lede {
  font-family: var(--psh-display); font-weight: 300;
  font-size: 16px; line-height: 1.65;
  color: var(--psh-ink-soft); margin: 0;
}
.psh-plans__lede strong { color: var(--psh-ink); font-weight: 600; }

.psh-plans__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.psh-plan {
  position: relative;
  padding: 36px 30px 32px;
  background: var(--psh-white);
  border: 1px solid rgba(184,153,104,0.20);
  border-radius: 20px;
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.psh-plan:hover {
  transform: translateY(-4px);
  border-color: rgba(184,153,104,0.45);
  box-shadow: 0 32px 80px -32px rgba(184,153,104,0.30);
}
.psh-plan--featured {
  background: linear-gradient(160deg, var(--psh-ink) 0%, #2a221d 100%);
  border-color: rgba(184,153,104,0.40);
  color: var(--psh-white);
  box-shadow:
    0 32px 80px -24px rgba(26,22,20,0.40),
    0 0 0 1px rgba(184,153,104,0.30) inset;
  margin-top: -16px;
  margin-bottom: -16px;
}
.psh-plan--featured:hover {
  border-color: var(--psh-gold);
}
.psh-plan__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--psh-gold-soft), var(--psh-gold), var(--psh-gold-deep));
  color: var(--psh-white);
  font-family: var(--psh-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 24px -6px rgba(184,153,104,0.55);
  z-index: 2;
}
.psh-plan__badge--supremo {
  background: linear-gradient(135deg, #1a1614, #4a3f38);
  color: var(--psh-gold-soft);
  box-shadow: 0 8px 24px -6px rgba(26,22,20,0.55);
}

.psh-plan__head {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 18px;
}
.psh-plan__num {
  font-family: var(--psh-mono);
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--psh-gold);
  text-transform: uppercase;
}
.psh-plan--featured .psh-plan__num { color: var(--psh-gold-soft); }
.psh-plan__name {
  font-family: var(--psh-cormo); font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1;
  color: var(--psh-ink); margin: 0;
}
.psh-plan--featured .psh-plan__name { color: var(--psh-white); }

.psh-plan__price {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 14px 18px;
  background: rgba(184,153,104,0.10);
  border: 1px solid rgba(184,153,104,0.25);
  border-radius: 12px;
  align-self: flex-start;
  margin-bottom: 18px;
}
.psh-plan--featured .psh-plan__price {
  background: rgba(184,153,104,0.18);
  border-color: rgba(184,153,104,0.40);
}
.psh-plan__price strong {
  font-family: var(--psh-display); font-weight: 600;
  font-size: 30px; letter-spacing: -0.015em;
  color: var(--psh-ink); line-height: 1;
}
.psh-plan--featured .psh-plan__price strong { color: var(--psh-white); }
.psh-plan__price small {
  font-family: var(--psh-mono); font-size: 11px;
  letter-spacing: 0.10em; color: var(--psh-mute);
}
.psh-plan--featured .psh-plan__price small { color: rgba(255,255,255,0.55); }

.psh-plan__desc {
  font-family: var(--psh-display); font-weight: 300;
  font-size: 14.5px; line-height: 1.60;
  color: var(--psh-ink-soft); margin: 0 0 22px;
}
.psh-plan--featured .psh-plan__desc { color: rgba(255,255,255,0.78); }
.psh-plan__desc--italic {
  font-family: var(--psh-cormo);
  font-style: italic;
  font-size: 16px;
  color: var(--psh-gold-deep);
}

.psh-plan__features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.psh-plan__features li {
  position: relative;
  padding-left: 22px;
  font-family: var(--psh-display); font-weight: 300;
  font-size: 14px; line-height: 1.55;
  color: var(--psh-ink-soft);
}
.psh-plan__features li::before {
  content: '✓';
  position: absolute; left: 0; top: 1px;
  color: var(--psh-gold); font-weight: 600;
}
.psh-plan--featured .psh-plan__features li { color: rgba(255,255,255,0.82); }
.psh-plan--featured .psh-plan__features li::before { color: var(--psh-gold-soft); }
.psh-plan__features li strong { color: var(--psh-ink); font-weight: 600; }
.psh-plan--featured .psh-plan__features li strong { color: var(--psh-white); }
.psh-plan__features li em { font-family: var(--psh-cormo); font-style: italic; color: var(--psh-gold-deep); }
.psh-plan--featured .psh-plan__features li em { color: var(--psh-gold-soft); }

.psh-plan__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px;
  background: var(--psh-white);
  border: 1px solid var(--psh-ink);
  border-radius: 999px;
  font-family: var(--psh-display);
  font-size: 13.5px; font-weight: 500;
  color: var(--psh-ink); text-decoration: none;
  transition: background .25s, color .25s, transform .25s;
  margin-top: auto;
}
.psh-plan__btn:hover {
  background: var(--psh-ink); color: var(--psh-white);
  transform: translateY(-2px);
}
.psh-plan__btn--primary {
  background: linear-gradient(135deg, var(--psh-gold-soft), var(--psh-gold));
  color: var(--psh-ink);
  border-color: var(--psh-gold);
  box-shadow: 0 12px 28px -10px rgba(184,153,104,0.55);
}
.psh-plan__btn--primary:hover {
  background: linear-gradient(135deg, #e8d9bf, var(--psh-gold-soft));
  color: var(--psh-ink);
  border-color: var(--psh-gold-soft);
}

/* =============================================================
   NOTAS IMPORTANTES
   ============================================================= */
.psh-notes {
  padding: clamp(80px,12vh,140px) 32px;
  background: var(--psh-cream-soft);
  border-top: 1px solid var(--psh-line);
}
.psh-notes__container { max-width: 1180px; margin: 0 auto; }
.psh-notes__head { text-align: center; max-width: 660px; margin: 0 auto clamp(48px, 7vh, 72px); }
.psh-notes__head .psh-eye { margin-bottom: 18px; }
.psh-notes__title {
  font-family: var(--psh-display); font-weight: 300;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--psh-ink); margin: 0;
}

.psh-notes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.psh-note {
  display: flex; gap: 18px;
  padding: 24px 26px;
  background: var(--psh-white);
  border: 1px solid rgba(184,153,104,0.20);
  border-radius: 14px;
  transition: border-color .25s, box-shadow .25s;
}
.psh-note:hover {
  border-color: rgba(184,153,104,0.40);
  box-shadow: 0 16px 36px -20px rgba(184,153,104,0.30);
}
.psh-note--highlight {
  background: linear-gradient(135deg, #fdfaf3 0%, var(--psh-white) 100%);
  border-color: rgba(184,153,104,0.40);
}
.psh-note__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(184,153,104,0.12);
  border: 1px solid rgba(184,153,104,0.25);
  color: var(--psh-gold);
  flex-shrink: 0;
}
.psh-note h3 {
  font-family: var(--psh-display); font-weight: 500;
  font-size: 15.5px; letter-spacing: -0.01em;
  color: var(--psh-ink); margin: 0 0 6px;
}
.psh-note p {
  font-family: var(--psh-display); font-weight: 300;
  font-size: 13.5px; line-height: 1.60;
  color: var(--psh-ink-soft); margin: 0;
}
.psh-note p strong { color: var(--psh-ink); font-weight: 600; }
.psh-note p a {
  color: var(--psh-gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.psh-note p a:hover { color: var(--psh-gold); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  .psh-for__grid, .psh-flow__steps { grid-template-columns: repeat(2, 1fr); }
  .psh-plans__grid { grid-template-columns: 1fr; gap: 20px; }
  .psh-plan--featured { order: -1; margin-top: 0; margin-bottom: 0; }
  .psh-notes__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .psh-hero__content { padding: 60px 20px; }
  .psh-for, .psh-flow, .psh-plans, .psh-notes { padding-left: 20px; padding-right: 20px; }
  .psh-for__grid, .psh-flow__steps { grid-template-columns: 1fr; }
  .psh-plan { padding: 28px 22px 24px; }
  .psh-hero__actions { flex-direction: column; gap: 14px; }
}
