/* Photography page */
.photo-page .mainHeading {
  background-image: none;
  min-height: auto;
}

.photo-page .site-nav a.active {
  background: var(--fast-gradient);
  color: #fff;
  border-color: var(--fast-accent);
}

.photo-hero {
  padding: 120px 0 56px;
}

.photo-hero__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.photo-hero__label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7c3aed;
}

.photo-hero__title {
  margin: 0 0 14px;
  font-family: 'Outfit', 'Righteous', sans-serif;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.05;
  font-weight: 800;
  color: #111827;
}

.photo-hero__sub {
  margin: 0 0 22px;
  max-width: 48ch;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(17, 24, 39, 0.68);
}

.photo-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.photo-hero__cta--center {
  justify-content: center;
  margin-top: 8px;
}

.photo-hero__visual img {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.16);
}

.photo-gallery {
  padding: 24px 0 64px;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-template-rows: 180px 140px 180px;
  gap: 12px;
}

.photo-slot {
  display: block;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(124, 58, 237, 0.16), rgba(56, 189, 248, 0.08) 55%, rgba(17, 24, 39, 0.06));
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.12);
}

.photo-slot--tall { grid-row: span 2; }
.photo-slot--wide { grid-column: span 2; }

.photo-shoots {
  padding: 20px 0 64px;
}

.photo-packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.photo-pack {
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.14);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
}

.photo-pack h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.photo-pack__price {
  margin: 0 0 10px;
  font-weight: 800;
  color: #7c3aed;
}

.photo-pack p {
  margin: 0;
  color: rgba(17, 24, 39, 0.66);
  line-height: 1.55;
}

.photo-pack--on {
  background: linear-gradient(165deg, #f5f3ff, #fff);
  border-color: rgba(124, 58, 237, 0.28);
}

.photo-note {
  text-align: center;
  margin: 22px 0 10px;
  color: rgba(17, 24, 39, 0.6);
}

.photo-pickup {
  padding: 10px 0 80px;
}

.photo-pickup__card {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 28px;
  border-radius: 28px;
  background:
    radial-gradient(220px 120px at 100% 0%, rgba(124, 58, 237, 0.16), transparent 70%),
    #111827;
  color: #fff;
}

.photo-pickup__card h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 34px);
}

.photo-pickup__card > p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.photo-pickup__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.photo-pickup__form input {
  flex: 1 1 180px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 0;
  font: inherit;
}

.photo-pickup__msg {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: #fde68a;
}

.photo-pickup__msg.is-ok { color: #86efac; }
.photo-pickup__msg.is-err { color: #fca5a5; }

.photo-pickup__go {
  display: inline-flex;
  margin-top: 14px;
}

.photo-pickup__fine {
  margin: 16px 0 0 !important;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5) !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 769px) {
  .photo-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .photo-packages {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 110px 140px;
  }
}
