/* =========================================================
   Brooklyn Brijbag — Official Actress Site
   Light, modern & bold theatrical theme
   ========================================================= */

:root {
  --bg:        #faf7f2;
  --bg-2:      #f2ece2;
  --surface:   #ffffff;
  --surface-2: #f7f2ea;
  --line:      rgba(31,27,22,0.12);
  --text:      #1f1b16;
  --muted:     #6f685e;
  --rose:      #e2596b;   /* primary accent */
  --rose-deep: #c8455a;
  --gold:      #d39a36;   /* secondary accent */
  --gold-deep: #b97f1f;
  --radius:    16px;
  --maxw:      1180px;
  --shadow:    0 18px 44px rgba(31,27,22,0.12);
  --shadow-sm: 0 8px 22px rgba(31,27,22,0.08);
  --font-head: "Bebas Neue", "Oswald", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1,h2,h3 { font-family: var(--font-head); font-weight: 400; letter-spacing: 1px; line-height: 1.02; margin: 0; }
.eyebrow {
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 4px;
  font-size: 12px; font-weight: 700; color: var(--rose); margin-bottom: 14px;
}
.section-title { font-size: clamp(38px, 6vw, 76px); text-transform: uppercase; }
.lead { font-size: 19px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 15px 30px; border-radius: 100px; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--rose), var(--rose-deep)); color: #fff; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(226,89,107,0.35); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,242,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { font-family: var(--font-head); font-size: 26px; letter-spacing: 2px; }
.brand span { color: var(--rose); }
.nav-links { display: flex; gap: 34px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); position: relative; padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--rose);
}
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text); margin: 5px 0; transition: .3s; }

/* ---------- Hero (split layout) ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 55%; height: 130%;
  background: radial-gradient(closest-side, rgba(226,89,107,0.10), rgba(226,89,107,0) 70%);
  z-index: 0; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center;
  min-height: calc(100vh - 74px); padding: 60px 0;
}
.hero-tag {
  display: inline-block; margin-bottom: 18px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; font-size: 13px; color: var(--gold-deep);
}
.hero h1 { font-size: clamp(56px, 9vw, 124px); text-transform: uppercase; }
.hero h1 .l2 { color: var(--rose); display: block; }
.hero-sub { max-width: 520px; margin: 22px 0 34px; font-size: 19px; color: var(--muted); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; border-radius: 22px; box-shadow: var(--shadow);
  aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%;
}
.hero-photo::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border-radius: 22px; background: linear-gradient(135deg, var(--gold), var(--rose));
  z-index: -1; opacity: .9;
}

/* ---------- Sections ---------- */
section.block { padding: 110px 0; }
.block.alt { background: var(--bg-2); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 22px; text-align: center; box-shadow: var(--shadow-sm); }
.stat .num { font-family: var(--font-head); font-size: 56px; color: var(--rose); line-height: 1; }
.stat .lbl { text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px; color: var(--muted); margin-top: 10px; }

/* About */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-photo::before {
  content: ""; position: absolute; inset: -16px -16px 16px 16px; border: 2px solid var(--rose);
  border-radius: var(--radius); z-index: -1;
}
.about-text p { color: #4a443c; }
.about-text p + p { margin-top: 18px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-6px); border-color: var(--rose); box-shadow: var(--shadow); }
.card .yr { color: var(--gold-deep); font-weight: 700; letter-spacing: 1px; font-size: 13px; }
.card h3 { font-family: var(--font-body); font-weight: 700; font-size: 19px; margin: 10px 0 8px; letter-spacing: 0; }
.card p { color: var(--muted); font-size: 15px; margin: 0; }

/* CTA banner */
.cta-banner { text-align: center; }
.cta-banner h2 { font-size: clamp(34px,5vw,60px); text-transform: uppercase; margin-bottom: 18px; }

/* ---------- Resume page ---------- */
.page-head { padding: 80px 0 30px; border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(48px,8vw,96px); text-transform: uppercase; }
.casting { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip { border: 1px solid var(--line); background: var(--surface); border-radius: 100px; padding: 8px 18px; font-size: 13px; color: var(--muted); }
.chip b { color: var(--text); font-weight: 700; }

.resume-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 50px; }
.res-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.res-block.full { grid-column: 1 / -1; }
.res-block h2 { font-size: 28px; text-transform: uppercase; color: var(--text); letter-spacing: 1px; padding-bottom: 14px; margin-bottom: 6px; border-bottom: 2px solid var(--rose); display: inline-block; }
.res-list { list-style: none; margin: 14px 0 0; padding: 0; }
.res-list li { display: flex; justify-content: space-between; gap: 18px; align-items: baseline; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.res-list li:last-child { border-bottom: 0; }
.res-list .role { color: var(--muted); font-size: 14px; text-align: right; white-space: nowrap; }
.res-list .title { font-weight: 600; }
/* 3-column credits */
.credits { margin-top: 14px; }
.credit { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr; gap: 16px; padding: 11px 0; border-bottom: 1px dashed var(--line); align-items: baseline; }
.credit:last-child { border-bottom: 0; }
.credit.head { padding: 0 0 8px; border-bottom: 1px solid var(--line); }
.credit.head span { text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; font-weight: 700; color: var(--muted); }
.credit .c-title { font-weight: 600; }
.credit .c-role { color: var(--muted); font-size: 15px; }
.credit .c-meta { color: var(--muted); font-size: 14px; text-align: right; }
@media (max-width: 520px) {
  .credit { grid-template-columns: 1fr; gap: 2px; }
  .credit .c-meta { text-align: left; }
  .credit.head { display: none; }
}

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.skill { background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px; padding: 9px 14px; font-size: 14px; }
.award-line { padding: 14px 0; border-bottom: 1px dashed var(--line); }
.award-line:last-child { border-bottom: 0; }
.award-line .yr { color: var(--gold-deep); font-weight: 700; font-size: 13px; letter-spacing: 1px; }
.award-line .name { font-weight: 600; }
.award-line .meta { color: var(--muted); font-size: 14px; }

/* ---------- Gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 36px; }
.filter { background: var(--surface); border: 1px solid var(--line); color: var(--muted); border-radius: 100px; padding: 9px 20px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: .2s; }
.filter:hover { color: var(--text); border-color: var(--rose); }
.filter.active { background: var(--rose); color: #fff; border-color: var(--rose); }
.grid { columns: 3; column-gap: 16px; }
.grid .item { break-inside: avoid; margin-bottom: 16px; position: relative; cursor: zoom-in; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.grid .item img { width: 100%; transition: transform .5s ease; }
.grid .item:hover img { transform: scale(1.05); }
.grid .item .cap { position: absolute; inset: auto 0 0 0; padding: 28px 16px 14px; background: linear-gradient(0deg, rgba(0,0,0,0.78), transparent); color: #fff; font-size: 14px; font-weight: 600; opacity: 0; transition: opacity .3s ease; }
.grid .item:hover .cap { opacity: 1; }
.grid .item.hide { display: none; }

/* Lightbox */
.lb { position: fixed; inset: 0; background: rgba(28,24,20,0.92); z-index: 200; display: none; align-items: center; justify-content: center; }
.lb.open { display: flex; }
.lb img { max-width: 92vw; max-height: 84vh; border-radius: 8px; box-shadow: var(--shadow); }
.lb .lb-cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #f3eee6; font-size: 15px; }
.lb button { position: absolute; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.25); color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 22px; cursor: pointer; transition: .2s; }
.lb button:hover { background: var(--rose); border-color: var(--rose); color: #fff; }
.lb .lb-close { top: 22px; right: 22px; }
.lb .lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb .lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 46px; text-align: center; box-shadow: var(--shadow-sm); }
.contact-card .label { text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: var(--muted); }
.contact-card .email { font-family: var(--font-head); font-size: clamp(24px,3.4vw,40px); color: var(--rose); margin: 12px 0 26px; word-break: break-all; }
.contact-photo img { border-radius: var(--radius); box-shadow: var(--shadow); }
.rep-note { margin-top: 22px; color: var(--muted); font-size: 14px; }

/* ---------- Profile / social buttons ---------- */
.profiles { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }
.profile-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 100px; padding: 10px 20px;
  font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text); transition: .2s;
}
.profile-btn:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }
.profiles-label { text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: var(--muted); text-align: center; margin: 34px 0 0; }

.footer-social { display: flex; gap: 20px; list-style: none; padding: 0; margin: 0; }
.footer-social a { color: var(--muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.footer-social a:hover { color: var(--rose); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 50px 0; background: var(--bg-2); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-grid .brand { font-size: 22px; }
.footer-links { display: flex; gap: 24px; list-style: none; padding: 0; margin: 0; }
.footer-links a { color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links a:hover { color: var(--rose); }
.copy { color: var(--muted); font-size: 13px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; min-height: 0; text-align: center; }
  .hero-photo { max-width: 440px; margin: 0 auto; order: -1; }
  .hero-photo::before { inset: 14px -14px -14px 14px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .resume-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .cards { grid-template-columns: 1fr; }
  .grid { columns: 2; }
}
@media (max-width: 760px) {
  .nav-links { position: fixed; inset: 74px 0 auto 0; background: var(--bg-2); flex-direction: column; gap: 0; padding: 10px 0; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .35s ease; align-items: stretch; }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 16px 24px; }
  .nav-toggle { display: block; }
  section.block { padding: 72px 0; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}
@media (max-width: 520px) {
  .grid { columns: 1; }
  .stats { grid-template-columns: 1fr 1fr; }
}
