/* ============================================================
   BLVDCHRG — public brand site
   Editorial, chaptered, grand. Light gallery-page base, charcoal
   acts, brand green + a restrained gold thread.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --black: #0a0a0b;
  --charcoal: #141416;
  --charcoal-2: #1d1d20;
  --ivory: #f6f4ee;
  --ivory-2: #edeae2;
  --green: #8bd014;
  --green-dim: #659c11;
  --gold: #c9a35c;
  --gold-deep: #a98336;
  --white: #ffffff;

  --t-dark: #f2f1ec;
  --t-dark-dim: #a7a6a0;
  --t-light: #131417;
  --t-light-dim: #595b60;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.16,.8,.24,1);
}

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

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  background: var(--ivory);
  color: var(--t-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.015em;
}
p { line-height: 1.75; margin: 0; }

.wrap { padding-left: var(--gutter); padding-right: var(--gutter); }
.measure { max-width: 62ch; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 26px;
}
.act-dark .eyebrow, .act-black .eyebrow, .on-media .eyebrow { color: var(--green); }
.hero .eyebrow, .chapter .eyebrow {
  color: var(--green);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-shadow: 0 1px 22px rgba(0,0,0,0.75), 0 0 2px rgba(0,0,0,0.5);
}

/* ---------- Display type scale ---------- */
.display-1 { font-size: clamp(52px, 10vw, 150px); }
.display-2 { font-size: clamp(40px, 6.6vw, 96px); }
.display-3 { font-size: clamp(30px, 4vw, 54px); }
.lede { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-solid { background: var(--green); color: #0c0d0a; }
.btn-solid:hover { background: var(--gold); }
.btn-line { border-color: rgba(242,241,236,0.4); color: var(--t-dark); }
.btn-line:hover { border-color: var(--green); color: var(--green); }
.btn-line-dark { border-color: rgba(19,20,23,0.35); color: var(--t-light); }
.btn-line-dark:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.arrow-link {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 21px);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: color .3s, gap .3s var(--ease);
}
.arrow-link:hover { gap: 16px; }
.act-dark .arrow-link:hover, .on-media .arrow-link:hover { color: var(--green); }
.act-light .arrow-link:hover { color: var(--gold-deep); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 26px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .45s var(--ease), padding .45s var(--ease);
}
.nav.scrolled {
  background: rgba(10,10,11,0.9);
  backdrop-filter: blur(12px);
  padding: 15px var(--gutter);
}
.nav-logo { display: flex; align-items: center; gap: 22px; margin-top: 14px; transition: margin .4s var(--ease); }
.nav-logo img { transition: height .4s var(--ease); }
.nav-logo .nav-icon { height: 92px; width: auto; }
.nav-logo .nav-word { height: 34px; width: auto; }
.nav.scrolled .nav-logo { margin-top: 0; }
.nav.scrolled .nav-logo .nav-icon { height: 56px; }
.nav.scrolled .nav-logo .nav-word { height: 21px; }
@media (max-width: 700px) {
  .nav-logo { gap: 14px; margin-top: 10px; }
  .nav-logo .nav-icon { height: 64px; }
  .nav-logo .nav-word { height: 23px; }
  .nav.scrolled .nav-logo .nav-icon { height: 44px; }
  .nav.scrolled .nav-logo .nav-word { height: 16px; }
}

.nav-links { display: none; align-items: center; gap: 44px; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-links a {
  color: var(--t-dark-dim);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color .25s;
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--green);
}
.nav-cta { display: none; }
@media (min-width: 960px) { .nav-cta { display: inline-flex; padding: 12px 26px; } }

.nav-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
  padding: 4px 8px;
}
@media (min-width: 960px) { .nav-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  gap: 8px;
  transform: translateY(-102%);
  transition: transform .6s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(38px, 9vw, 64px);
  line-height: 1.3;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
}
.mobile-menu a em { font-style: normal; color: var(--green); }
.mobile-close {
  position: absolute;
  top: 24px; right: var(--gutter);
  background: none; border: none;
  color: var(--white);
  font-size: 34px;
  cursor: pointer;
}

/* ---------- Acts (page bands) ---------- */
.act-dark { background: var(--charcoal); color: var(--t-dark); }
.act-black { background: var(--black); color: var(--t-dark); }
.act-light { background: var(--ivory); color: var(--t-light); }
.act-dark p, .act-black p { color: var(--t-dark-dim); }
.act-light p { color: var(--t-light-dim); }

/* ---------- Hero (full-bleed media) ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  color: var(--t-dark);
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero-media.show { opacity: 1; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,9,0.5) 0%, rgba(8,8,9,0.08) 34%, rgba(8,8,9,0.34) 58%, rgba(8,8,9,0.94) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) clamp(56px, 9vh, 110px);
}
.hero h1 { color: var(--white); max-width: 10ch; }
.hero h1 em { font-style: italic; color: var(--green); }
.hero .lede { margin-top: 30px; max-width: 46ch; color: var(--t-dark-dim); }
.hero-actions { margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-link {
  margin-top: 42px;
  color: var(--white);
  font-size: clamp(18px, 1.7vw, 23px);
}

.hero-page { height: 72vh; min-height: 480px; }

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--t-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.scroll-cue .chev {
  width: 18px; height: 18px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  animation: cue-bounce 1.8s infinite;
}
@keyframes cue-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
  50% { transform: rotate(45deg) translate(7px, 7px); opacity: 0.35; }
}

/* ---------- Statement band ---------- */
.statement {
  padding: clamp(110px, 16vh, 190px) var(--gutter);
  text-align: center;
}
.statement blockquote {
  margin: 0 auto;
  max-width: 21ch;
  font-family: var(--serif);
  font-size: clamp(30px, 4.6vw, 62px);
  line-height: 1.22;
}
.statement .accent { color: var(--green); font-style: italic; }
.statement cite {
  display: block;
  margin-top: 34px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--t-dark-dim);
}

/* ---------- Chapter panels (full-bleed image + caption) ---------- */
.chapter {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  color: var(--t-dark);
}
.chapter-media {
  position: absolute;
  inset: -6% 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}
.chapter::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(8,8,9,0.16) 30%, rgba(8,8,9,0.78) 100%);
}
.chapter-num {
  position: absolute;
  top: clamp(70px, 11vh, 130px);
  right: var(--gutter);
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(90px, 16vw, 240px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246,244,238,0.34);
}
.chapter-caption {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(48px, 8vh, 96px);
  max-width: 720px;
}
.chapter-caption h2, .chapter-caption h3 { color: var(--white); }
.chapter-caption .lede { margin-top: 24px; color: rgba(242,241,236,0.82); }
.chapter-caption .arrow-link { margin-top: 34px; color: var(--white); }

/* ---------- Editorial split rows ---------- */
.ed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
  padding: clamp(100px, 15vh, 190px) var(--gutter);
}
@media (min-width: 960px) { .ed-grid { grid-template-columns: 1.05fr 0.95fr; } .ed-grid.flip .ed-media { order: 2; } }
.ed-media { overflow: hidden; }
.ed-media img, .ed-media video { width: 100%; height: 100%; object-fit: cover; }
.ed-media.tall { aspect-ratio: 4/5; }
.ed-media.wide { aspect-ratio: 16/10; }
.ed-copy h2, .ed-copy h3 { max-width: 14ch; }
.ed-copy .lede { margin-top: 28px; }
.ed-copy p + p { margin-top: 18px; }
.ed-copy .arrow-link { margin-top: 36px; }

/* ---------- Pillar line (experience) ---------- */
.pillar-line {
  padding: clamp(90px, 13vh, 160px) var(--gutter);
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .pillar-line { grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 3vw, 56px); } }
.pillar-item { border-top: 1px solid rgba(246,244,238,0.16); padding-top: 26px; }
.act-light .pillar-item { border-top-color: rgba(19,20,23,0.18); }
.pillar-item .num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--green);
  letter-spacing: 0.08em;
}
.pillar-item h3 { font-size: clamp(24px, 2.2vw, 32px); margin-top: 16px; }
.pillar-item p { margin-top: 14px; font-size: 15px; }

/* ---------- Image strip ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.4vw, 22px);
  padding: 0 var(--gutter) clamp(100px, 15vh, 180px);
}
@media (max-width: 760px) { .strip { grid-template-columns: 1fr; } }
.strip-item { position: relative; overflow: hidden; aspect-ratio: 4/5; }
@media (max-width: 760px) { .strip-item { aspect-ratio: 16/10; } }
.strip-item img, .strip-item video { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.strip-item:hover img { transform: scale(1.045); }
.strip-item .tag {
  position: absolute;
  left: 20px; bottom: 18px;
  z-index: 2;
  color: var(--white);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.strip-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(8,8,9,0.72) 100%);
}
.strip-item.focus-left img, .strip-item.focus-left video { object-position: 28% center; }

/* ---------- Manifesto (vision) ---------- */
.manifesto {
  padding: clamp(110px, 16vh, 200px) var(--gutter);
}
.manifesto .measure { max-width: 34ch; }
.manifesto h2 { font-size: clamp(38px, 5.8vw, 84px); }
.manifesto .lede { margin-top: 34px; max-width: 58ch; }
.manifesto p + p { margin-top: 20px; }

/* ---------- Page intro head ---------- */
.page-head {
  padding: clamp(150px, 24vh, 260px) var(--gutter) clamp(70px, 10vh, 130px);
}
.page-head h1 { max-width: 12ch; }
.page-head .lede { margin-top: 30px; max-width: 52ch; }

/* ---------- CTA band ---------- */
.cta-band {
  padding: clamp(110px, 16vh, 190px) var(--gutter);
  text-align: center;
}
.cta-band h2 { max-width: 16ch; margin: 0 auto; }
.cta-band .btn { margin-top: 46px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 110px);
  padding: 0 var(--gutter) clamp(100px, 15vh, 180px);
}
@media (min-width: 1000px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.contact-points { margin-top: 44px; display: grid; gap: 26px; }
.contact-point { border-top: 1px solid rgba(19,20,23,0.16); padding-top: 20px; }
.contact-point b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--t-light);
}
.contact-point p { font-size: 15px; }

.contact-form {
  background: var(--white);
  border: 1px solid rgba(19,20,23,0.1);
  padding: clamp(28px, 3.4vw, 52px);
}
.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--t-light-dim);
  margin-bottom: 10px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(19,20,23,0.18);
  font-family: var(--sans);
  font-size: 15px;
  background: var(--ivory);
  color: var(--t-light);
  transition: border-color .25s;
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.form-msg { margin-top: 18px; font-size: 14px; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { color: var(--green-dim); }
.form-msg.err { color: #b3432b; }

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--t-dark-dim);
  padding: clamp(80px, 12vh, 150px) var(--gutter) 36px;
}
.footer-word {
  width: min(680px, 88%);
  height: auto;
  margin-bottom: clamp(48px, 8vh, 90px);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-tag {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 26px);
  color: var(--t-dark);
  max-width: 24ch;
  line-height: 1.4;
}
.footer-cols { display: flex; gap: clamp(40px, 6vw, 100px); }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--t-dark);
  margin: 0 0 16px;
}
.footer-col a { display: block; font-size: 14px; padding: 5px 0; color: var(--t-dark-dim); transition: color .25s; }
.footer-col a:hover { color: var(--green); }
.footer-base {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .chapter-media { inset: 0; height: 100%; }
  html { scroll-behavior: auto; }
}
