/* DatingShootPhoto — original landing design */
:root {
  --bg: #08080c;
  --bg-elevated: #12121a;
  --bg-card: #181822;
  --text: #f4f0eb;
  --text-muted: #9b9590;
  --accent: #ff5c8d;
  --accent-soft: #ff8eb3;
  --violet: #8b7cf8;
  --mint: #5eead4;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(255, 92, 141, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(139, 124, 248, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(94, 234, 212, 0.06), transparent 45%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(8, 8, 12, 0.75);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 36px;
  height: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #e84a7a);
  color: #fff;
  box-shadow: 0 8px 32px -8px rgba(255, 92, 141, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -6px rgba(255, 92, 141, 0.65);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 599px) {
  .hero-stack {
    display: none;
  }

  .hero-thumb {
    width: 52px;
    height: 52px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-soft);
  background: rgba(255, 92, 141, 0.1);
  border: 1px solid rgba(255, 92, 141, 0.2);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-soft);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 0 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-tag {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.price-tag span {
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: line-through;
  margin-right: 0.35rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.photo-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 24px 80px -24px rgba(0, 0, 0, 0.7);
}

.photo-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.photo-col .label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.photo-col.before .label {
  color: #a8a29e;
}

.photo-col.after .label {
  color: var(--mint);
}

.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-elevated);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-col.before .photo-frame {
  filter: saturate(0.85) contrast(0.95);
}

.hero-float {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.hero-visual--rich {
  min-height: 420px;
}

.hero-collage {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px -24px rgba(0, 0, 0, 0.7);
}

.hero-collage-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-thumb {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--bg-card);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  filter: saturate(0.9);
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-thumb--tl {
  top: 12px;
  left: 12px;
}

.hero-thumb--tr {
  top: 12px;
  right: 12px;
}

.hero-stack {
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: min(48%, 200px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.hero-stack img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-proof p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

/* Trust strip */
.trust-strip {
  padding: 2rem 0;
  border-block: 1px solid var(--border);
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Steps */
.section {
  padding: 5rem 0;
}

.section--tight {
  padding-top: 3rem;
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.steps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(139, 124, 248, 0.15);
  color: var(--violet);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.step-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Before / after transforms */
.transform-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .transform-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.transform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.25rem;
  overflow: hidden;
}

.transform-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.transform-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.transform-tag--before {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
}

.transform-tag--after {
  color: var(--mint);
  background: rgba(94, 234, 212, 0.12);
}

.transform-arrow {
  color: var(--accent);
  font-weight: 700;
}

.transform-photos {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0.75rem;
  align-items: stretch;
}

.transform-before {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.transform-before img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  filter: saturate(0.85);
}

.transform-after {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.transform-after img {
  width: 100%;
  flex: 1;
  min-height: 0;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Gallery collage (legacy-style wall) */
.gallery-stage {
  padding-bottom: 2rem;
}

.gallery-stage .section-head {
  margin-bottom: 2rem;
}

.gallery-collage {
  display: flex;
  gap: 6px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  height: min(72vh, 720px);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  position: relative;
}

.gallery-collage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(8, 8, 12, 0.45) 100%);
  border-radius: inherit;
}

.gallery-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.gallery-cell {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-cell--tall {
  flex: 2;
}

.gallery-cell--mid {
  flex: 1.3;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hide-sm {
  display: none;
}

@media (min-width: 640px) {
  .hide-sm {
    display: block;
  }
}

.hide-md {
  display: none;
}

@media (min-width: 768px) {
  .hide-md {
    display: flex;
  }
}

/* Marquee */
.marquee-section {
  overflow: hidden;
  padding: 2rem 0;
  border-block: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-group {
  display: flex;
  gap: 0.75rem;
  padding-right: 0.75rem;
}

.marquee-group img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .marquee-group img {
    width: 260px;
    height: 260px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Photoshoot grid */
.photoshoot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.photoshoot-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.35s ease;
}

.photoshoot-grid img:hover {
  transform: scale(1.03);
}

.diversity-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.diversity-row img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.app-icon {
  opacity: 0.9;
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(255, 92, 141, 0.12), rgba(139, 124, 248, 0.08));
  border-block: 1px solid var(--border);
}

.cta-band-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}


.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.cta-band p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

.cta-figure {
  margin: 0;
  flex-shrink: 0;
  line-height: 0;
}

@media (min-width: 768px) {
  .cta-band-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
  }

  .cta-figure {
    margin: 0;
  }
}

.cta-portrait {
  display: block;
  width: min(260px, 70vw);
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* Apps */
.apps-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.app-pill {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

/* Pricing */
.pricing-section {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 2.5rem;
  text-align: center;
  background: linear-gradient(160deg, rgba(255, 92, 141, 0.08), rgba(139, 124, 248, 0.06));
  border: 1px solid rgba(255, 92, 141, 0.25);
  border-radius: calc(var(--radius) + 8px);
}

.pricing-card .price {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 500;
  margin: 0.5rem 0;
  line-height: 1;
}

.pricing-card .price-was {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  text-align: left;
}

.pricing-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-fine {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ */
.faq {
  max-width: 640px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.site-footer p {
  margin: 0.25rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--accent-soft);
}

.site-footer a:hover {
  text-decoration: underline;
}
