/* Portfolio Shoot page.
   Sits on top of site.css and artists.css — this file only adds what is new to
   this page. Same rules as the rest of the site: brand tokens only, gold as
   structure, no shadows, mobile checked at 375px. */

/* ---------- the package: one big frame, the offer beside it ---------- */

.ps-package-grid{
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(2.5rem,6vw,5.5rem); align-items:center;
  max-width:var(--max); margin:0 auto;
}
.ps-package-photo{ margin:0; }
.ps-package-photo img{
  width:100%; height:auto; aspect-ratio:2/3; object-fit:cover;
  border-radius:16px; background:var(--ivory-deep);
}
.ps-package-copy h2{ font-size:var(--step-3); margin-bottom:1.3rem; }
.ps-lead{
  color:var(--ink-soft); font-size:calc(var(--step-0) * 1.08);
  max-width:42ch; margin-bottom:2rem;
}
.ps-list{ list-style:none; margin:0 0 2.4rem; padding:0; }
.ps-list li{
  position:relative; padding-left:2rem; margin-bottom:1rem;
  color:var(--ink-soft); font-size:var(--step-0);
}
.ps-list li strong{ font-weight:500; color:var(--ink); }
.ps-list li::before{
  content:""; position:absolute; left:0; top:.72em;
  width:1.1rem; height:1px; background:var(--gold);
}

/* ---------- three steps ---------- */

.ps-steps{ background:var(--ivory-deep); }
.ps-step-grid{
  list-style:none; margin:0 auto; padding:0; max-width:var(--max);
  display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(2rem,4vw,3.5rem);
}
.ps-step-num{
  display:block; font-family:var(--serif); font-size:var(--step-3);
  line-height:1; color:var(--gold); margin-bottom:1rem;
}
.ps-step-grid h3{
  font-size:var(--step-1); letter-spacing:.14em; text-transform:uppercase; margin-bottom:.8rem;
}
.ps-step-grid p{ color:var(--ink-soft); font-size:var(--step-0); }

/* ---------- the two looks ---------- */

.ps-look-grid{
  display:grid; grid-template-columns:1fr 1.35fr;
  gap:clamp(2.5rem,5vw,5rem); align-items:center; max-width:var(--max); margin:0 auto;
}
.ps-look-copy h2{ font-size:var(--step-3); margin-bottom:1.4rem; }
.ps-look-copy p{ color:var(--ink-soft); font-size:calc(var(--step-0) * 1.08); max-width:44ch; }
.ps-look-photos{
  display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(.7rem,1.6vw,1.1rem);
}
.ps-look-photos figure{ margin:0; }
.ps-look-photos img{
  width:100%; height:auto; aspect-ratio:2/3; object-fit:cover; border-radius:12px;
  background:var(--ivory-deep);
}
/* the middle frame drops, so a row of three reads as a set rather than a strip.
   With more than three the grid speaks for itself and the offset just looks off. */
.ps-look-photos:not(:has(figure:nth-child(4))) figure:nth-child(2){ transform:translateY(1.6rem); }
.ps-look-alt{ background:var(--ivory-deep); }
.ps-look-alt .ps-look-grid{ direction:rtl; }      /* photos left, copy right */
.ps-look-alt .ps-look-grid > *{ direction:ltr; }

/* ---------- gallery ---------- */

.ps-grid{
  list-style:none; margin:0 auto; padding:0; max-width:var(--max);
  display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(.7rem,1.6vw,1.1rem);
}
.ps-grid img{
  width:100%; height:auto; aspect-ratio:2/3; object-fit:cover; border-radius:12px;
  background:var(--ivory-deep); display:block;
}

/* ---------- mobile ---------- */

@media (max-width:840px){
  .ps-includes{ grid-template-columns:1fr 1fr; }
  .ps-step-grid{ grid-template-columns:1fr; gap:2.5rem; }
  .ps-look-grid{ grid-template-columns:1fr; }
  .ps-look-alt .ps-look-grid{ direction:ltr; }
  .ps-grid{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:520px){
  .ps-includes{ grid-template-columns:1fr; }
  .ps-grid{ grid-template-columns:1fr 1fr; }
  /* the drop reads as misalignment once the row is only three narrow frames */
  .ps-look-photos figure:nth-child(2){ transform:none; }
}

/* ---------- Look 3: the films ---------- */

.ps-reel{ background:var(--ivory-deep); }
.ps-reel-grid{
  display:grid; grid-template-columns:1fr 1.15fr;
  gap:clamp(2.5rem,5vw,5rem); align-items:center; max-width:var(--max); margin:0 auto;
}
.ps-reel-copy h2{ font-size:var(--step-3); margin-bottom:1.4rem; }
.ps-reel-copy p{ color:var(--ink-soft); font-size:calc(var(--step-0) * 1.08); max-width:44ch; }
.ps-reel-note{ margin-top:1.1rem; font-style:italic; }
.ps-reel-films{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(1rem,2.5vw,1.6rem); }
.ps-film{ position:relative; margin:0; }
.ps-film video{
  display:block; width:100%; height:auto; aspect-ratio:9/16; object-fit:cover;
  border-radius:14px; background:var(--ink);
}
.ps-play{ border-radius:14px; }
.ps-play[hidden]{ display:none; }
.ps-film figcaption{
  font-family:var(--sans); font-weight:300; font-size:.66rem;
  letter-spacing:.24em; text-transform:uppercase; color:var(--ink-soft);
  margin-top:.8rem; text-align:center;
}

@media (max-width:840px){
  .ps-package-grid{ grid-template-columns:1fr; }
  .ps-package-photo{ max-width:26rem; margin:0 auto; }
  .ps-reel-grid{ grid-template-columns:1fr; }
}

/* ---------- booking ----------
   Three days side by side, five slots each. A slot with the `disabled`
   attribute greys out and shows "Booked" instead of being selectable. */

.ps-form{ max-width:56rem; margin:0 auto; text-align:center; }
.slot-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:clamp(1.2rem,3vw,2.4rem); margin-bottom:clamp(2.5rem,5vw,3.5rem);
}
.slot-day{ border:0; margin:0; padding:0; }
.slot-day legend{
  font-family:var(--sans); font-weight:300; font-size:.72rem;
  letter-spacing:.24em; text-transform:uppercase; color:var(--ink);
  padding:0 0 1rem; width:100%; text-align:center;
  border-bottom:1px solid var(--gold-pale); margin-bottom:1rem;
}
.slot{ display:block; margin-bottom:.5rem; cursor:pointer; }
.slot input{
  position:absolute; opacity:0; width:1px; height:1px;  /* focusable, not visible */
}
.slot span{
  display:block; padding:.72rem .6rem;
  font-family:var(--sans); font-weight:300; font-size:.8rem; letter-spacing:.06em;
  color:var(--ink); background:var(--ivory);
  border:1px solid var(--gold-pale); border-radius:999px;
  transition:background .15s ease, border-color .15s ease;
}
.slot:hover span{ border-color:var(--gold); }
.slot input:checked + span{
  background:var(--gold); border-color:var(--gold); color:var(--ink); font-weight:400;
}
.slot input:focus-visible + span{ outline:2px solid var(--ink); outline-offset:2px; }
/* taken */
.slot input:disabled + span{
  color:var(--ink-soft); background:transparent; border-style:dashed;
  text-decoration:line-through; opacity:.55; cursor:not-allowed;
}
.slot input:disabled + span::after{
  content:" · booked"; text-decoration:none; letter-spacing:.16em; font-size:.62rem;
  text-transform:uppercase;
}
.slot:has(input:disabled){ cursor:not-allowed; }

/* the fields borrow the artists-page form treatment, which is scoped to .art-form */
.ps-form input[type="text"],
.ps-form input[type="email"],
.ps-form input[type="tel"],
.ps-form textarea{
  width:100%; display:block;
  font-family:var(--serif); font-size:var(--step-0); line-height:1.5;
  color:var(--ink); background:var(--ivory-deep);
  border:1px solid transparent; border-radius:10px;
  padding:.75rem .9rem;
}
.ps-form input:focus, .ps-form textarea:focus{
  outline:none; border-color:var(--gold); background:var(--ivory);
}
.ps-form textarea{ resize:vertical; }
.ps-form .art-field{ margin-bottom:1.15rem; }
.ps-form .art-field label{
  display:block; font-family:var(--sans); font-weight:300; font-size:.68rem;
  letter-spacing:.24em; text-transform:uppercase; color:var(--ink-soft);
  margin-bottom:.5rem;
}
.ps-form .art-hp{ position:absolute; left:-9999px; }

.ps-fields{
  display:grid; grid-template-columns:1fr 1fr; gap:0 1.4rem;
  text-align:left; margin-bottom:1.8rem;
}
.art-field-wide{ grid-column:1 / -1; }
.ps-submit{ cursor:pointer; }
.ps-form-foot{
  margin-top:2.6rem; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:1rem;
  padding-bottom:3.5rem;   /* room for the number to open into */
}
.ps-form-foot p{ color:var(--ink-soft); font-size:calc(var(--step-0) * 1.02); }

@media (max-width:840px){
  .slot-grid{ grid-template-columns:1fr; gap:2rem; }
  /* the fields borrow the artists-page form treatment, which is scoped to .art-form */
.ps-form input[type="text"],
.ps-form input[type="email"],
.ps-form input[type="tel"],
.ps-form textarea{
  width:100%; display:block;
  font-family:var(--serif); font-size:var(--step-0); line-height:1.5;
  color:var(--ink); background:var(--ivory-deep);
  border:1px solid transparent; border-radius:10px;
  padding:.75rem .9rem;
}
.ps-form input:focus, .ps-form textarea:focus{
  outline:none; border-color:var(--gold); background:var(--ivory);
}
.ps-form textarea{ resize:vertical; }
.ps-form .art-field{ margin-bottom:1.15rem; }
.ps-form .art-field label{
  display:block; font-family:var(--sans); font-weight:300; font-size:.68rem;
  letter-spacing:.24em; text-transform:uppercase; color:var(--ink-soft);
  margin-bottom:.5rem;
}
.ps-form .art-hp{ position:absolute; left:-9999px; }

.ps-fields{ grid-template-columns:1fr; }
}

/* ---------- price ----------
   The brand book allows numbers to be gold and large; this is the one place on
   the page where that is true. Everything else stays quiet around it. */

.ps-price{ background:var(--ink); color:var(--ivory); text-align:center; }
.ps-price-inner{ max-width:38rem; margin:0 auto; }
.ps-price .eyebrow{ color:var(--gold-light); }
.ps-price .eyebrow::before{ background:var(--gold-light); }
.ps-was{
  font-size:var(--step-0); color:rgba(250,248,244,.6);
  text-decoration:line-through; margin-bottom:.6rem;
}
.ps-now{
  font-family:var(--serif); color:var(--gold-light);
  font-size:clamp(3rem, 9vw, 5.5rem); line-height:1; margin-bottom:.9rem;
}
.ps-now span{ font-size:.34em; letter-spacing:.14em; vertical-align:.85em; margin-right:.15em; }
.ps-now .ps-cents{ font-size:.46em; vertical-align:.9em; margin:0 0 0 .04em; letter-spacing:0; }
.ps-off{
  font-family:var(--sans); font-weight:300; font-size:.72rem;
  letter-spacing:.22em; text-transform:uppercase; color:var(--ivory);
  margin-bottom:2.2rem;
}
.ps-price-list{
  list-style:none; margin:0 0 2.6rem; padding:0;
  display:flex; flex-wrap:wrap; justify-content:center; gap:.6rem 2rem;
}
.ps-price-list li{
  color:rgba(250,248,244,.82); font-size:var(--step-0);
  position:relative; padding-left:1.6rem;
}
.ps-price-list li::before{
  content:""; position:absolute; left:0; top:.72em;
  width:.9rem; height:1px; background:var(--gold-light);
}

@media (max-width:640px){
  .ps-price-list{ flex-direction:column; align-items:center; gap:.5rem; }
  .ps-price-list li{ padding-left:0; }
  .ps-price-list li::before{ display:none; }
}
