/* ===================================================
   Pitchside Lens — Landing Page
   Mobile-first, dark hero, editorial tone
   =================================================== */

:root {
  --bg: #f5f3f1;
  --bg-dark: #0c0c0e;
  --panel: #ffffff;
  --text: #1e1e22;
  --text-light: #ebebeb;
  --muted: #6e6e73;
  --muted-light: #9a9a9f;
  --border: #ddd7d2;
  --border-dark: #2a2a2e;
  --accent: #8f2628;
  --accent-hover: #7b2022;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --max-width: 860px;
  --max-width-wide: 1080px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Utilities ---- */

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.wrap--wide {
  max-width: var(--max-width-wide);
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  line-height: 1.2;
}

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s, opacity 0.2s;
  cursor: pointer;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--accent {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn--accent:hover {
  background: var(--accent);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* ===================================================
   1. Hero
   =================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  /* Dark gradient — swap to background-image when design is ready */
  background:
    radial-gradient(ellipse at 30% 20%, rgba(143, 38, 40, 0.15) 0%, transparent 60%),
    linear-gradient(175deg, #111113 0%, #0c0c0e 40%, #161618 100%);
  color: var(--text-light);
}

.hero__wrap {
  max-width: 720px;
}

.hero__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
  opacity: 0.9;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-light);
  margin: 0 0 20px;
}

.hero__headline {
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 20px;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--muted-light);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.hero__tertiary {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--muted-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.hero__tertiary:hover {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ===================================================
   2. Credibility Strip
   =================================================== */

.strip {
  background: var(--bg-dark);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid var(--border-dark);
}

.strip__text {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--muted-light);
  letter-spacing: -0.01em;
}

/* ===================================================
   3. What Lens Is
   =================================================== */

.about {
  padding: 80px 0;
}

.about__copy {
  max-width: 640px;
}

.about__copy p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.about__emphasis {
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  margin-top: 24px;
}

/* ===================================================
   4. Gallery Preview
   =================================================== */

.preview {
  padding: 80px 0 60px;
  background: #faf8f7;
}

.preview__intro {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 28px;
}

.preview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.preview__card {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

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

.preview__overlay {
  position: relative;
  margin-top: -80px;
  padding-top: 80px;
  background: linear-gradient(to bottom, transparent 0%, #faf8f7 60%);
  text-align: center;
  padding-bottom: 20px;
}

.preview__lock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.preview__lock svg {
  opacity: 0.5;
}

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

/* ===================================================
   5. Why Join Lens
   =================================================== */

.value {
  padding: 80px 0;
}

.value__grid {
  display: grid;
  gap: 20px;
}

.value__card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.value__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}

.value__card-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===================================================
   6. Editorial Feed
   =================================================== */

.feed {
  padding: 80px 0;
  background: #faf8f7;
}

.feed__grid {
  display: grid;
  gap: 16px;
}

.feed__card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feed__card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(143, 38, 40, 0.08);
}

.feed__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 8px;
}

.feed__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.4;
}

.feed__date {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ===================================================
   7. For Photographers
   =================================================== */

.photographers {
  padding: 80px 0;
}

.photographers__copy {
  max-width: 600px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

.photographers__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.photographers__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.photographers__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.photographers__cta {
  margin-top: 8px;
}

.photographers .btn--ghost {
  color: var(--text);
  border-color: var(--border);
}

.photographers .btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(143, 38, 40, 0.04);
}

/* ===================================================
   8. Final CTA
   =================================================== */

.final {
  padding: 100px 20px;
  text-align: center;
  background:
    radial-gradient(ellipse at 70% 80%, rgba(143, 38, 40, 0.12) 0%, transparent 60%),
    linear-gradient(175deg, #111113 0%, #0c0c0e 40%, #161618 100%);
  color: var(--text-light);
}

.final__headline {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  line-height: 1.1;
}

.final__sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--muted-light);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.final .btn--accent {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.3);
}

.final .btn--accent:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ===================================================
   9. Footer
   =================================================== */

.footer {
  padding: 32px 20px;
  text-align: center;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
}

.footer p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted-light);
}

.footer a {
  color: var(--muted-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--text-light);
}

/* ===================================================
   Responsive — Tablet+
   =================================================== */

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

  .value__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feed__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 860px) {
  .preview__grid {
    gap: 12px;
  }

  .preview__card {
    border-radius: 8px;
  }
}
