/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #c9c9c9;
  color: #1a1a1a;
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { display: block; max-width: 100%; height: auto; }

/* Screen-reader-only — visually hidden, available to crawlers / a11y */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.65; transition: opacity 0.2s; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

/* ---------- Layout ---------- */
.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 36px 24px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

/* ---------- Top bar (gallery / inner pages) ---------- */
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-bottom: 28px;
}
.topbar .nav-left,
.topbar .nav-right {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.topbar .nav-right { justify-content: flex-end; }
.topbar .nav a.is-active { font-weight: 700; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.32em;
  font-size: 18px;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  width: 56px;
  height: 1px;
  background: #1a1a1a;
}

/* ---------- Homepage hero ---------- */
.hero-page { padding: 24px 36px; }
.hero-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.hero-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.hero-name .small {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.45em;
  margin-bottom: 6px;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 6px;
  display: inline-block;
  width: fit-content;
}
.hero-name .big {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: 0.04em;
}
.hero-tag {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-top: 14px;
}
.hero-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #2a2a2a;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-caption {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #2a2a2a;
}

/* ---------- Gallery photo frame ---------- */
.work-frame {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0 12px;
  position: relative;
}
.work-photo {
  max-width: min(1100px, 100%);
  max-height: 72vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.work-caption {
  align-self: flex-start;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #2a2a2a;
}

/* ---------- Gallery navigation arrows ---------- */
.work-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #1a1a1a;
  border-radius: 50%;
  background: rgba(201,201,201,0.7);
  backdrop-filter: blur(2px);
  font-size: 18px;
  z-index: 5;
}
.work-nav.prev { left: 24px; }
.work-nav.next { right: 24px; }
.work-counter {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #2a2a2a;
}

/* ---------- Footer mark ---------- */
.footmark {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid #1a1a1a;
  margin-top: 18px;
}
.footmark .s-logo {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #cf2c2c;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0;
  border-radius: 3px;
}

/* ---------- About / Bio ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  padding: 32px 0 16px;
}
.bio-headshot { width: 100%; }
.bio-text { font-size: 15px; line-height: 1.7; max-width: 56ch; }
.bio-text p + p { margin-top: 1em; }
.bio-text h2 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 6px;
  display: inline-block;
}
.bio-loft {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.bio-loft img { aspect-ratio: 1 / 1; object-fit: cover; }

/* ---------- Contact ---------- */
.contact-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 0;
}
.contact-wrap h1 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact-wrap a.email {
  font-size: clamp(22px, 3.6vw, 38px);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 4px;
}
.contact-wrap p {
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Apply CTA — small button + end-of-page band ---------- */
.apply-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  border: 1px solid #1a1a1a;
  background: transparent; color: #1a1a1a;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700;
  transition: background .2s, color .2s, opacity .2s;
  text-decoration: none;
}
.apply-cta:hover { background: #1a1a1a; color: #efece6; opacity: 1; }
.apply-cta::after { content: "→"; letter-spacing: 0; font-weight: 400; }

.apply-block {
  text-align: center; margin: 36px auto 4px;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 26px 16px;
  max-width: 920px;
}
.apply-block .micro {
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic; font-size: clamp(15px, 1.4vw, 17px); color: #1a1a1a;
  margin-bottom: 14px; letter-spacing: 0.01em; line-height: 1.4;
  max-width: 50ch; margin-left: auto; margin-right: auto;
}

/* Apply page — form */
.apply-form {
  max-width: 720px; margin: 0 auto;
  display: grid; gap: 14px;
  font-size: 14px;
}
.apply-form .row { display: grid; gap: 6px; }
.apply-form label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
}
.apply-form .req::after { content: " *"; color: #cf2c2c; font-weight: 400; }
.apply-form input,
.apply-form select,
.apply-form textarea {
  font: inherit; color: inherit;
  background: rgba(255,255,255,0.5);
  border: 1px solid #1a1a1a;
  padding: 10px 12px;
  border-radius: 0;
  width: 100%;
}
.apply-form textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.apply-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.apply-form button {
  margin-top: 4px;
  align-self: start;
  padding: 14px 28px;
  background: #1a1a1a; color: #efece6;
  border: 1px solid #1a1a1a;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700;
  transition: background .2s, color .2s;
}
.apply-form button:hover { background: transparent; color: #1a1a1a; }
.apply-form .help { font-size: 12px; color: #2a2a2a; line-height: 1.5; }
@media (max-width: 540px) {
  .apply-form .row-2 { grid-template-columns: 1fr; }
}

/* ---------- Lightbox (work page) ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.96);
  display: none;
  align-items: center; justify-content: center;
  z-index: 60;
  padding: 56px 18px 56px;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox .lb-image {
  max-width: min(98vw, 1800px);
  max-height: 88vh;
  object-fit: contain;
  cursor: default;
  box-shadow: 0 6px 60px rgba(0,0,0,0.5);
}
body.has-lightbox { overflow: hidden; }

.lightbox button {
  position: absolute;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  color: #f1ede4;
  border: 1px solid rgba(255,255,255,0.35);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: background .15s, border-color .15s, opacity .15s;
}
.lightbox button:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.7); }
.lightbox .lb-close { top: 18px;  right: 18px; }
.lightbox .lb-prev  { top: 50%; left: 18px;  transform: translateY(-50%); }
.lightbox .lb-next  { top: 50%; right: 18px; transform: translateY(-50%); }

.lightbox .lb-caption,
.lightbox .lb-counter {
  position: absolute; bottom: 18px;
  color: #f1ede4;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.85;
}
.lightbox .lb-caption { left: 28px; }
.lightbox .lb-counter { right: 28px; }

.work-grid figure { cursor: zoom-in; }
.work-photo { cursor: zoom-in; }

@media (max-width: 540px) {
  .lightbox { padding: 60px 6px; }
  .lightbox .lb-prev { left: 6px; }
  .lightbox .lb-next { right: 6px; }
  .lightbox .lb-caption, .lightbox .lb-counter { font-size: 10px; }
}

/* ---------- Social row — SVG icon links (footer of every page) ---------- */
.social {
  display: flex; gap: 22px; justify-content: center; align-items: center; flex-wrap: wrap;
  margin: 18px 0 4px;
}
.social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  color: #1a1a1a;
  transition: opacity .2s, transform .2s;
  border-radius: 4px;
}
.social a:hover { opacity: 1; color: #1a1a1a; transform: translateY(-1px); }
.social svg { width: 22px; height: 22px; display: block; fill: currentColor; }

/* ---------- TL;DR / speakable / byline (SEO+AEO+GEO helpers) ---------- */
.tldr {
  font-size: 13px;
  letter-spacing: 0.02em;
  background: rgba(0,0,0,0.06);
  border-left: 3px solid #1a1a1a;
  padding: 14px 18px;
  margin: 0 0 24px;
  font-style: italic;
  max-width: 70ch;
}
.tldr strong { font-weight: 800; font-style: normal; letter-spacing: 0.06em; }
.byline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2a2a2a;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid #1a1a1a;
  padding-top: 14px;
  margin-top: 28px;
}

/* ---------- Section title (used on genre/city/faq pages) ---------- */
.section-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 6px;
  display: inline-block;
}
.h1-serif {
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
  max-width: 22ch;
}

/* ---------- Highlights row (homepage curated 3-up) ---------- */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.highlights a {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #1a1a1a;
  display: block;
}
.highlights img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.highlights a:hover img { transform: scale(1.04); opacity: 1; }
.highlights .label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 14px; color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: baseline;
}

/* ---------- Genre / City landing pages ---------- */
.lede {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 24px;
}
.lede aside p { font-size: 14px; max-width: 50ch; line-height: 1.65; color: #2a2a2a; }
.facts-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0 4px;
}
.facts-row .stat { background: rgba(0,0,0,0.06); padding: 14px 16px; }
.facts-row .stat strong {
  display: block;
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.facts-row .stat span {
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #2a2a2a;
  display: block; margin-top: 6px;
}

/* Photo strip (genre / city pages) */
.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: 24px 0;
}
.strip figure { display: flex; flex-direction: column; }
.strip .frame { aspect-ratio: 4/5; overflow: hidden; background: #1a1a1a; }
.strip img { width: 100%; height: 100%; object-fit: cover; }
.strip figcaption {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 6px; color: #2a2a2a;
}

/* ---------- Comparison table ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 18px 0;
}
.compare-table th, .compare-table td {
  text-align: left; padding: 12px 14px; border-bottom: 1px solid #1a1a1a;
}
.compare-table th {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  background: #1a1a1a; color: #efece6;
}

/* ---------- FAQ ---------- */
.faq details {
  border-bottom: 1px solid #1a1a1a; padding: 14px 0;
}
.faq summary {
  cursor: pointer; font-weight: 700; font-size: 16px; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; }
.faq details[open] summary::after { content: "−"; }
.faq .a {
  margin-top: 10px; font-size: 14px; line-height: 1.7;
  max-width: 70ch; color: #1a1a1a;
}

/* ---------- Work page: grid view + toggle ---------- */
.view-toggle {
  display: flex; gap: 16px; align-items: center;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 14px;
}
.view-toggle button {
  border-bottom: 1px solid transparent; padding-bottom: 3px;
  letter-spacing: 0.18em; text-transform: uppercase; font-size: 11px;
}
.view-toggle button.is-active { border-color: #1a1a1a; font-weight: 700; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px 14px;
  width: 100%;
}
.work-grid figure { display: flex; flex-direction: column; }
.work-grid .frame {
  aspect-ratio: 4/5; overflow: hidden; background: #1a1a1a;
  transition: transform .25s;
}
.work-grid .frame:hover { transform: scale(1.005); }
.work-grid img { width: 100%; height: 100%; object-fit: cover; }
.work-grid figcaption {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  margin-top: 6px; color: #2a2a2a;
  text-align: left;
}

.is-hidden { display: none !important; }

/* Long-form prose helper */
.prose { max-width: 60ch; font-size: 15px; line-height: 1.75; }
.prose p + p { margin-top: 1em; }
.prose .pull {
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic; font-size: clamp(20px, 2.4vw, 28px);
  border-left: 3px solid #cf2c2c; padding: 6px 18px; margin: 22px 0;
  line-height: 1.4; color: #1a1a1a;
}
.prose .pull cite {
  display: block; font-style: normal; font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px; letter-spacing: 0.22em; margin-top: 8px; color: #555;
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .page, .hero-page { padding: 20px 18px; }
  .topbar { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .topbar .nav-left, .topbar .nav-right { justify-content: center; gap: 18px; }
  .brand-mark::before, .brand-mark::after { width: 30px; }
  .hero-head { flex-direction: column; gap: 8px; }
  .hero-image { aspect-ratio: 4 / 3; }
  .work-nav.prev { left: 8px; }
  .work-nav.next { right: 8px; }
  .work-photo { max-height: 60vh; }
  .bio-grid { grid-template-columns: 1fr; gap: 24px; }
  .bio-loft { grid-template-columns: repeat(2, 1fr); }
  .lede { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr; }
  .facts-row { grid-template-columns: repeat(2, 1fr); }
}
