/* ─────────────────────────────────────────────
   Sara Solorzano — Portfolio
   styles.css
   ───────────────────────────────────────────── */

/* ── Tokens ── */
:root {
  --bg:        #FAFAF8;
  --ink:       #0E0E0C;
  --muted:     #7A7874;
  --hint:      #B0ACA8;
  --border:    rgba(14, 14, 12, 0.08);
  --border-md: rgba(14, 14, 12, 0.14);
  --card:      #EEEEF6;
  --acc:       #6B5FA6;
  --acc-bg:    #E6E6FA;
  --acc-bd:    #C4C4EE;
  --ff:        'DM Sans', system-ui, sans-serif;
  --radius:    4px;
  --max-w:     1200px;
  --gutter:    48px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}


img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--ff); cursor: pointer; }

/* ── Layout helpers ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}


.divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 0 var(--gutter);
}

/* ─────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--gutter);
  border-bottom: 0.5px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__logo {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.nav__links {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
}
.nav__links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--ink); }
.nav__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acc);
  display: inline-block;
}

/* ─────────────────────────────────────────────
   HERO  (homepage — split layout)
   ───────────────────────────────────────────── */
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hint);
  margin-bottom: 20px;
}
.hero__bio {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero__bio strong { color: var(--ink); font-weight: 500; }

/* Split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 520px;
  padding: 0 0 0 var(--gutter);
  overflow: hidden;
}
.hero-split__left {
  padding: 72px 48px 72px 0;
  max-width: 520px;
}
.hero-split__headline {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -2.5px;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-split__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  display: block;
}

/* CTA buttons */
.hero-split__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--ff);
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.15s, background 0.15s;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--acc-bg);
  color: var(--acc);
  border-color: var(--acc-bd);
}
.btn--primary:hover { background: var(--acc); color: #fff; border-color: var(--acc); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-md);
}
.btn--outline:hover { border-color: var(--ink); }

/* Right side — blob + photo */
.hero-split__right {
  position: relative;
  height: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-split__blob {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* Placeholder shown until real photo is added */
.hero-split__photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 40px;
}
.hero-split__photo-placeholder span {
  font-size: 13px;
  color: var(--acc);
  font-weight: 500;
}
.hero-split__photo-placeholder small {
  font-size: 11px;
  color: var(--hint);
  font-family: monospace;
}

/* ─────────────────────────────────────────────
   WORK LIST  (homepage)
   ───────────────────────────────────────────── */
.work-section { padding: 56px var(--gutter); }
.work-section__inner {
  max-width: 860px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hint);
  margin-bottom: 44px;
}
.company-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  padding: 32px 0;
  border-top: 0.5px solid var(--border);
  cursor: pointer;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: none;
}
.company-row:last-child { border-bottom: 0.5px solid var(--border); }
.company-row:hover .company-row__name { letter-spacing: -1.8px; }
.company-row:hover .company-row__arrow { opacity: 1; transform: translateX(0); }

.company-row__left { display: flex; flex-direction: column; gap: 16px; }
.company-row__index {
  font-size: 11px;
  color: var(--hint);
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.company-row__name {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -1.4px;
  color: var(--ink);
  line-height: 1.0;
  transition: letter-spacing 0.2s ease;
}
.company-row__sub {
  font-size: 11px;
  color: var(--hint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}
.company-row__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}
.company-row__pills { display: flex; gap: 6px; flex-wrap: wrap; }
.pill {
  font-size: 11px;
  padding: 3px 11px;
  border-radius: 4px;
  border: 0.5px solid var(--border-md);
  color: var(--muted);
}
.company-row__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-top: 4px;
}
.company-row__year { font-size: 12px; color: var(--hint); }
.company-row__arrow {
  font-size: 17px;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

/* ─────────────────────────────────────────────
   COMPANY PAGE
   ───────────────────────────────────────────── */
.co-hero {
  padding: 64px var(--gutter) 48px;
  border-bottom: 0.5px solid var(--border);
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.co-hero__body {
  width: 100%;
}
.co-hero__logo {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 28px;
}
.co-hero__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hint);
  margin-bottom: 12px;
}
.co-hero__name {
  font-size: 50px;
  font-weight: 500;
  letter-spacing: -1.8px;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 18px;
}
.co-hero__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}
.co-meta {
  display: flex;
  gap: 44px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.co-meta__item label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hint);
  display: block;
  margin-bottom: 5px;
}
.co-meta__item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

/* ─────────────────────────────────────────────
   PROJECT GRID  (company page)
   ───────────────────────────────────────────── */
.team-section { padding: 48px var(--gutter); }
.team-block { margin-bottom: 56px; }
.team-header { margin-bottom: 28px; }
.team-header .co-hero__logo { margin-bottom: 16px; }
.team-header__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hint);
  margin-bottom: 4px;
}
.team-header__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 500px;
  margin-top: 4px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
}

.project-card {
  background: var(--card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.project-card:hover { background: #E2E2F0; }
.project-card:hover .project-card__cta {
  background: var(--acc);
  color: #fff;
  border-color: var(--acc);
}

.project-card__num { display: none; }
.project-card__arrow { display: none; }

.project-card__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 0;
}
.project-card__label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hint);
}
.project-card__label--accent { color: var(--acc); }
.project-card__title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--ink);
  line-height: 1.2;
}
.project-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.project-card__tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 4px; }
.project-card__tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  border: 0.5px solid var(--border-md);
  color: var(--muted);
}
.project-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--acc);
  padding: 8px 14px;
  border: 0.5px solid var(--acc-bd);
  border-radius: 100px;
  background: var(--acc-bg);
  width: fit-content;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.project-card__img {
  width: 100%;
  height: 180px;
  background: var(--acc-bg);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: none;
}
.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-card__img-ph {
  font-size: 11px;
  color: var(--acc);
  text-align: center;
  padding: 16px;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   CASE STUDY PAGE
   ───────────────────────────────────────────── */
.case-hero {
  border-bottom: 0.5px solid var(--border);
}
.case-hero__inner {
  padding: 64px var(--gutter) 48px;
  max-width: 860px;
  margin: 0 auto;
}
.case-hero__breadcrumb {
  font-size: 12px;
  color: var(--hint);
  margin-bottom: 16px;
}
.case-hero__breadcrumb a { color: var(--hint); transition: color 0.15s; }
.case-hero__breadcrumb a:hover { color: var(--ink); }
.case-hero__breadcrumb span { color: var(--ink); }
.case-hero__title {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -1.4px;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 860px;
}
.case-hero__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 720px;
}
.case-meta {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.case-meta__item label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hint);
  display: block;
  margin-bottom: 5px;
}
.case-meta__item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

/* Image gallery */
.case-gallery {
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.case-gallery__main {
  background: var(--card);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-gallery__main img {
  max-height: 480px;
  width: 100%;
  object-fit: contain;
}
.case-gallery__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 48px;
  text-align: center;
}
.case-gallery__placeholder p {
  font-size: 12px;
  color: var(--hint);
  line-height: 1.6;
}
.case-gallery__label-bar {
  background: var(--card);
  border-top: 0.5px solid var(--border);
  padding: 10px 20px;
  font-size: 11px;
  color: var(--hint);
}
.case-gallery__thumbs {
  display: flex;
  gap: 2px;
  background: rgba(107, 95, 166, 0.08);
  overflow-x: auto;
  padding-bottom: 2px;
}
.case-gallery__thumb {
  flex: 0 0 auto;
  width: 120px;
  height: 72px;
  background: var(--card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--hint);
  text-align: center;
  padding: 8px;
  border: 2px solid transparent;
  transition: border-color 0.15s;
  line-height: 1.4;
  overflow: hidden;
}
.case-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-gallery__thumb.active { border-color: var(--acc); color: var(--acc); }

/* Case study body */
.case-body {
  padding: 64px var(--gutter);
  max-width: 860px;
  margin: 0 auto;
}
.case-body h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
  margin-top: 56px;
  letter-spacing: -0.4px;
}
.case-body h2:first-child { margin-top: 0; }
.case-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
}
.case-body p:last-child { margin-bottom: 0; }

/* Callout / highlight block */
.callout {
  background: var(--acc-bg);
  border: 0.5px solid var(--acc-bd);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: var(--radius);
}
.callout__label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 6px;
}
.callout__text {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.65;
}

/* Quote block */
.blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 2px solid var(--acc);
  background: var(--acc-bg);
}
.blockquote__text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 8px;
}
.blockquote__attr {
  font-size: 11px;
  color: var(--acc);
  letter-spacing: 0.04em;
}

/* Stat grid */
.stat-grid {
  display: grid;
  gap: 2px;
  margin: 28px 0;
}
.stat-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stat-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stat-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat-card { background: var(--card); padding: 22px; }
.stat-card__label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hint);
  margin-bottom: 7px;
}
.stat-card__value {
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: 5px;
  line-height: 1.0;
}
.stat-card__sub {
  font-size: 11px;
  color: var(--hint);
  margin-bottom: 4px;
}
.stat-card__desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* External link */
.ext-link {
  font-size: 13px;
  color: var(--acc);
  border-bottom: 0.5px solid var(--acc-bd);
  padding-bottom: 2px;
  margin-top: 10px;
  margin-right: 16px;
  display: inline-block;
  transition: border-color 0.15s;
}
.ext-link:hover { border-color: var(--acc); }

/* ─────────────────────────────────────────────
   PASSWORD PAGE
   ───────────────────────────────────────────── */
.password-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px var(--gutter);
}
.password-card {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.password-card__eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hint);
}
.password-card__title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.8px;
  color: var(--ink);
  line-height: 1.1;
}
.password-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.password-card__form { display: flex; flex-direction: column; gap: 12px; }
.password-card__input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--ff);
  background: var(--card);
  border: 0.5px solid var(--border-md);
  border-radius: var(--radius);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.password-card__input:focus { border-color: var(--acc); }
.password-card__input::placeholder { color: var(--hint); }
.password-card__input--error { border-color: #C0392B; }
.password-card__btn {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--ff);
  background: var(--acc);
  color: #fff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.password-card__btn:hover { opacity: 0.88; }
.password-card__error {
  font-size: 12px;
  color: #C0392B;
  display: none;
}
.password-card__error.visible { display: block; }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.footer {
  padding: 32px var(--gutter);
  border-top: 0.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy { font-size: 12px; color: var(--hint); }
.footer__links { display: flex; gap: 20px; }
.footer__links a {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--ink); }

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --gutter: 28px; }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-split { grid-template-columns: 1fr; padding: 0 var(--gutter); }
  .hero-split__left { padding: 56px 0 40px; max-width: 100%; }
  .hero-split__right { min-height: 340px; }
  .hero-split__headline { font-size: 40px; }
  .co-hero__name { font-size: 40px; }
  .case-hero__title { font-size: 32px; }
}
@media (max-width: 600px) {
  :root { --gutter: 20px; }
  .project-grid { grid-template-columns: 1fr; }
  .stat-grid--2,
  .stat-grid--3,
  .stat-grid--4 { grid-template-columns: 1fr; }
  .hero-split__headline { font-size: 32px; letter-spacing: -1.2px; }
  .hero-split__right { min-height: 260px; }
  .hero-split__blob { border-radius: 50% 50% 0 0; }
  .company-row__name { font-size: 28px; }
  .co-meta,
  .case-meta { flex-direction: column; gap: 20px; }
}

/* ─────────────────────────────────────────────
   ABOUT SECTION  (homepage)
   ───────────────────────────────────────────── */
.about-section {
  padding: 72px var(--gutter);
}
.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.about-section__left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-section__bio {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 20px;
}
.about-section__bio:first-of-type { margin-top: 24px; }

.about-section__quote {
  background: var(--card);
  padding: 32px;
  border-left: 2px solid var(--acc);
  margin: 0;
}
.about-section__quote blockquote {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}
.about-section__quote blockquote::before {
  content: '"';
  font-size: 40px;
  color: var(--acc-bd);
  line-height: 0;
  vertical-align: -16px;
  margin-right: 4px;
  font-style: normal;
}
.about-section__quote figcaption {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acc);
}

/* ─────────────────────────────────────────────
   CONTACT SECTION  (homepage)
   ───────────────────────────────────────────── */
.contact-section {
  padding: 72px var(--gutter) 80px;
}
.contact-section__heading {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -1.4px;
  color: var(--ink);
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.0;
}
.contact-section__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 32px;
}
.contact-section__btn {
  font-size: 15px;
  padding: 13px 28px;
}

/* ── Responsive additions ── */
@media (max-width: 900px) {
  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-section__heading { font-size: 32px; }
}

.about-section__title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.8px;
  color: var(--ink);
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.1;
}

/* ─────────────────────────────────────────────
   HERO PHOTO FRAME  (CSS decorations)
   ───────────────────────────────────────────── */
.hero-split__blob {
  background: transparent;
}

.hero-photo-frame {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

/* The photo — circular crop */
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 1;
}

/* Purple circle ring around the photo */
.hero-photo-frame__ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid var(--acc);
  z-index: 2;
  pointer-events: none;
}

/* + crosses top-right */
.hero-photo-frame__plus {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  pointer-events: none;
}
.hero-photo-frame__plus--tr {
  top: -12px;
  right: -20px;
}
.hero-photo-frame__plus span {
  font-size: 20px;
  font-weight: 300;
  color: var(--acc);
  line-height: 1;
  letter-spacing: -4px;
}
.hero-photo-frame__plus span:first-child {
  margin-left: 12px;
}

/* Diagonal lines bottom-left */
.hero-photo-frame__lines {
  position: absolute;
  bottom: 20px;
  left: -28px;
  display: flex;
  gap: 5px;
  align-items: flex-end;
  z-index: 3;
  pointer-events: none;
  transform: rotate(-15deg);
}
.hero-photo-frame__lines span {
  display: block;
  width: 3px;
  background: var(--acc);
  border-radius: 2px;
}
.hero-photo-frame__lines span:nth-child(1) { height: 20px; }
.hero-photo-frame__lines span:nth-child(2) { height: 28px; }
.hero-photo-frame__lines span:nth-child(3) { height: 20px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-photo-frame {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 600px) {
  .hero-photo-frame {
    width: 220px;
    height: 220px;
  }
}

.hero-photo {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.hero-split--single {
  grid-template-columns: 1fr;
  min-height: auto;
  padding: 80px var(--gutter) 64px;
}
.hero-split--single .hero-split__left {
  padding: 0;
  max-width: 680px;
}

/* ── Hero right column + photo ── */
.hero-split__right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.hero-photo {
  width: 60%;
  max-width: 480px;
  height: auto;
  display: block;
}

/* ── Project card image ── */
.project-card__img {
  width: 100%;
  height: 180px;
  background: var(--acc-bg);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-card__img-ph {
  font-size: 11px;
  color: var(--acc);
  text-align: center;
  padding: 16px;
  line-height: 1.5;
}

/* ── Company row logos ── */
.company-row__logo {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
}
img.company-row__logo[src*="prizepicks"] {
  height: 18px;
}
img.company-row__logo[src*="hillrom"] {
  height: 28px;
}
img.company-row__logo[src*="linkedin"] {
  height: 22px;
}
.company-row:hover .company-row__logo {
  opacity: 0.85;
  filter: grayscale(0%);
}
/* Per-logo sizing — all tuned to match PrizePicks visual width */
.company-row__logo--text {
  height: 22px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  border: 0.5px solid var(--border-md);
  border-radius: 4px;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.company-row:hover .company-row__logo--text {
  opacity: 0.85;
}
