@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy:  #0B1D35;
  --green: #1A6B4A;
  --green-mid: #2D8A5E;
  --cream: #F6F3EE;
  --cream-dark: #EAE6DE;
  --white: #FFFFFF;
  --gray:  #6E7A8A;
  --font:  'Space Grotesk', sans-serif;
  --nav-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}

.wordmark {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  width: 120px;
}

.wordmark .w-steve,
.wordmark .w-barry {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.wordmark i { font-style: normal; }

.wordmark .w-steve { color: var(--navy); }

.wordmark .w-barry {
  color: var(--green);
  border-bottom: 2.5px solid var(--green);
  padding-bottom: 3px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--green);
}

/* ── Page wrapper ── */
.page {
  padding-top: var(--nav-h);
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 100px 48px 80px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-sub {
  margin-top: 48px;
  max-width: 520px;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.75;
}

/* ── Section base ── */
section { padding: 100px 48px; }

.section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--green);
}

/* ── About section (Home) ── */
.about {
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.about-top {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 60px;
  align-items: start;
}
.about-photo img {
  width: 240px;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-intro {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.about-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3A4A5C;
  margin-bottom: 24px;
}

.about-body p:last-child { margin-bottom: 0; }


.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
  margin-top: 32px;
  transition: gap 0.2s;
}

.cta-link:hover { gap: 14px; }
.cta-link .arrow { font-size: 1rem; }

/* ── Agencies section (Home) ── */
.agencies {
  background: var(--navy);
  padding: 80px 48px;
}

.agencies .section-label { color: var(--green); }
.agencies .section-label::after { background: var(--green); }

.agency-roll {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.agency-roll li {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.agency-num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--green);
  flex-shrink: 0;
  width: 24px;
}

.agency-nm {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1;
  transition: color 0.2s;
}

.agency-roll li:hover .agency-nm { color: var(--green); }

/* ── Work section (Home) ── */
.work {
  background: var(--cream);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--cream-dark);
}

.work-category {
  padding: 48px 0;
  border-bottom: 1px solid var(--cream-dark);
  padding-right: 40px;
}

.work-category:not(:nth-child(3n)) {
  border-right: 1px solid var(--cream-dark);
  padding-right: 40px;
  margin-right: 0;
}

.work-category:nth-child(3n+2),
.work-category:nth-child(3n+3) {
  padding-left: 40px;
}

.work-cat-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.work-clients {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.work-clients li {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  transition: color 0.2s;
}

.work-clients li:hover { color: var(--green); }

/* ── Portfolio page ── */
.pf-category {
  background: var(--white);
  padding: 80px 48px;
  border-top: 1px solid var(--cream-dark);
}

.pf-alt { background: var(--cream); }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 48px;
  margin-top: 48px;
}

.brand-block {
  min-width: 0;
}

.brand-block:first-of-type { border-top: none; padding-top: 0; }

.brand-name {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 20px;
}

.brand-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: #3A4A5C;
  max-width: 680px;
}

.brand-quote {
  margin-top: 32px;
  padding: 28px 32px;
  border-left: 4px solid var(--green);
  background: var(--cream);
  font-size: 1rem;
  line-height: 1.7;
  color: #3A4A5C;
  font-style: italic;
  max-width: 680px;
}

.brand-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.brand-also {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
}

.brand-also-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  flex-shrink: 0;
}

.brand-also ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.brand-also li {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── YouTube facade ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.yt-facade, .vimeo-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  overflow: hidden;
  background: var(--navy);
}

.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s, transform 0.25s;
}

.yt-facade:hover img {
  opacity: 0.7;
  transform: scale(1.02);
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: var(--green);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  pointer-events: none;
}

.yt-facade:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--navy);
}

.play-icon {
  display: block;
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #fff;
  margin-left: 4px;
}

.yt-facade.playing { cursor: default; }

.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.lightbox[aria-hidden="false"] {
  pointer-events: all;
  opacity: 1;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
}
.lightbox-frame {
  position: relative;
  width: min(90vw, 1100px);
  z-index: 1;
}
.lightbox-video {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.lightbox-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ── Dark CTA strip ── */
.cta-strip {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-strip h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 22ch;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid var(--green);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: transparent;
  color: var(--green);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: transparent;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid var(--cream);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--navy);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 48px 72px;
}

.page-hero h1 {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.page-hero .subtitle {
  margin-top: 32px;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.65;
  max-width: 480px;
}

/* ── Resume page ── */
.resume-download {
  background: var(--white);
  padding: 80px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid var(--cream-dark);
}

.resume-download h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.resume-download p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-top: 8px;
}

.resume-body {
  background: var(--cream);
}

.resume-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 80px 48px;
}

.resume-section-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.agency-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.agency-item .agency-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.agency-item .agency-role {
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.agency-item .agency-brands {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 8px;
  line-height: 1.6;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 80px 48px;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
}

.tag {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ── Voiceover page ── */
.vo-player-section {
  background: var(--white);
  padding: 80px 48px;
}

.vo-player-wrap {
  max-width: 680px;
}

.vo-player-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

audio {
  width: 100%;
  margin-top: 4px;
  outline: none;
  accent-color: var(--green);
}

audio::-webkit-media-controls-panel {
  background: var(--cream);
}

.vo-bio {
  background: var(--cream);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.vo-bio-pull {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--navy);
}

.vo-bio-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3A4A5C;
  margin-bottom: 24px;
}

.vo-bio-text p:last-child { margin-bottom: 0; }

.vo-quote {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 48px;
}

.vo-quote blockquote {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  max-width: 36ch;
  border-left: 4px solid var(--green);
  padding-left: 32px;
}

.vo-clients {
  background: var(--white);
  padding: 80px 48px;
}

.vo-client-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

/* ── Contact page ── */
.contact-body {
  background: var(--white);
  padding: 100px 48px;
}

.contact-email {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  transition: color 0.2s;
  display: inline-block;
  border-bottom: 4px solid var(--green);
  padding-bottom: 4px;
  line-height: 1.1;
  margin-bottom: 64px;
}

.contact-email:hover { color: var(--green); }

.contact-info-row {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.contact-block h3 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.contact-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-block a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.contact-block a:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}

.contact-location {
  background: var(--cream);
  padding: 60px 48px;
  border-top: 1px solid var(--cream-dark);
}

.contact-location p {
  font-size: 1.05rem;
  color: var(--gray);
  font-weight: 400;
}

/* ── Footer ── */
footer {
  background: var(--navy);
  color: var(--cream);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-mark {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100px;
}

.footer-mark span {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.footer-mark i { font-style: normal; }

.footer-mark span:first-child { color: var(--cream); opacity: 0.45; }
.footer-mark span:last-child  { color: var(--green); border-bottom: 2px solid var(--green); padding-bottom: 2px; }

footer p {
  font-size: 0.7rem;
  opacity: 0.4;
  letter-spacing: 0.05em;
}

/* ── Divider line ── */
.rule {
  border: none;
  border-top: 1px solid var(--cream-dark);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 24px; }

  section { padding: 72px 24px; }

  .hero { padding: 72px 24px 64px; min-height: 70vh; }
  .page-hero { padding: 64px 24px 56px; }

  .about {
    gap: 32px;
    padding: 64px 24px;
  }
  .about-top {
    grid-template-columns: 1fr;
  }
  .about-photo img {
    width: 100%;
    height: 240px;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-category:nth-child(3n+2),
  .work-category:nth-child(3n+3) {
    padding-left: 0;
  }

  .work-category:nth-child(2n) {
    border-right: none;
    padding-right: 0;
    padding-left: 40px;
  }

  .cta-strip { flex-direction: column; align-items: flex-start; padding: 64px 24px; }

  .resume-download { flex-direction: column; align-items: flex-start; padding: 64px 24px; }
  .resume-grid { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px; }
  .resume-section-title { position: static; }
  .expertise-tags { padding: 64px 24px; }

  .vo-player-section { padding: 64px 24px; }
  .vo-bio { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px; }
  .vo-quote { padding: 64px 24px; }
  .vo-clients { padding: 64px 24px; }

  .contact-body { padding: 72px 24px; }
  .contact-email { font-size: clamp(1.6rem, 7vw, 3rem); }
  .contact-info-row { gap: 48px; }
  .contact-location { padding: 48px 24px; }

  footer { padding: 32px 24px; }
}

@media (max-width: 600px) {
  nav {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 12px;
    gap: 12px;
  }
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .nav-links a {
    font-size: 0.7rem;
  }
  .page, .hero, .page-hero { padding-top: calc(var(--nav-h) + 40px); }
  .work-grid { grid-template-columns: 1fr; }
  .work-category:nth-child(2n) { padding-left: 0; }
  .brand-grid { grid-template-columns: 1fr; }
}
