@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Mono:ital,wght@0,300;0,400;1,300&display=swap');

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

:root {
  --teal:    #2ec4b6;
  --magenta: #f0127a;
  --shadow:  #0a3d2e;
  --bg:      #0e2e28;
  --bg2:     #0a2420;
  --cream:   #f0ede8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  min-height: 100vh;
}

/* ── ACCENT BAR ── */
.accent-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--magenta) 0%, var(--teal) 60%, transparent 100%);
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 36px;
  border-bottom: 0.5px solid rgba(46,196,182,0.2);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--magenta);
  text-shadow: 2px 2px 0 var(--shadow), 0 0 20px rgba(240,18,122,0.4);
  letter-spacing: 0.1em;
  text-decoration: none;
  line-height: 1;
}

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

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(46,196,182,0.6);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  padding: 8px 12px;
}

.nav-links a:hover  { color: var(--teal); background: rgba(46,196,182,0.06); }
.nav-links a.active { color: var(--magenta); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: saturate(0.3);
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,46,40,0.7) 0%, rgba(46,196,182,0.08) 100%);
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 50%);
}

.hero-text {
  position: relative;
  z-index: 1;
  padding: 24px 28px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.8;
  margin-bottom: 5px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 58px;
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--magenta);
  text-shadow: 3px 3px 0 var(--shadow);
}

.hero-clients {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  text-align: right;
  opacity: 0.65;
  line-height: 1.9;
}

/* ── SECTION HEADER ── */
.section-header {
  padding: 14px 28px 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(46,196,182,0.12);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--teal);
}

.section-count {
  display: none;
}

/* ── VIDEO GRID ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 2px;
  background: var(--shadow);
}

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg2);
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: saturate(0.6);
  transition: opacity 0.3s, transform 0.4s, filter 0.3s;
  display: block;
}

.video-card:hover img {
  opacity: 0.9;
  filter: saturate(1.1);
  transform: scale(1.04);
}

.video-card .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.video-card:hover .play-btn { opacity: 1; }

.play-circle {
  width: 36px;
  height: 36px;
  border: 2px solid var(--magenta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240,18,122,0.12);
}

.play-circle svg {
  width: 11px;
  height: 11px;
  fill: var(--magenta);
  margin-left: 2px;
}

.video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 10px 7px;
  background: linear-gradient(to top, rgba(10,30,25,0.92), transparent);
  font-size: 7px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0;
  transition: opacity 0.2s;
}

.video-card:hover .video-label { opacity: 1; }

/* ── VIDEO EMBED (modal-style iframe) ── */
.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,30,25,0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.video-modal-overlay.open {
  display: flex;
}

.video-modal-inner {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
}

.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.modal-close {
  position: absolute;
  top: -36px;
  right: 0;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.5);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Mono', monospace;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--magenta); }

/* ── TAB BAR ── */
.tab-bar {
  display: flex;
  padding: 0 28px;
  border-bottom: 1px solid rgba(46,196,182,0.12);
}

.tab {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 9px 14px;
  cursor: pointer;
  color: rgba(46,196,182,0.4);
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  font-family: 'DM Mono', monospace;
  transition: all 0.2s;
}

.tab.active  { color: var(--magenta); border-bottom: 2px solid var(--magenta); }
.tab:hover   { color: var(--teal); }

/* ── PHOTO GRID ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 2px;
  background: var(--shadow);
}

.photo-tile {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg2);
  display: block;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: saturate(0.7);
  transition: opacity 0.3s, transform 0.4s, filter 0.3s;
  display: block;
}

.photo-tile:hover img {
  opacity: 1;
  filter: saturate(1);
  transform: scale(1.04);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  letter-spacing: 0.2em;
  color: rgba(46,196,182,0.1);
  text-transform: uppercase;
}

/* ── ABOUT ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}

.about-img {
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: saturate(0.4);
  position: relative;
}

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,196,182,0.06) 0%, rgba(240,18,122,0.04) 100%);
}

.about-text {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(46,196,182,0.15);
}

.about-eyebrow {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  opacity: 0.7;
}

.about-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  color: var(--magenta);
  text-shadow: 3px 3px 0 var(--shadow);
}

.about-body {
  font-size: 11px;
  line-height: 1.9;
  color: rgba(240,237,232,0.55);
  margin-bottom: 24px;
  max-width: 280px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(46,196,182,0.4);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}

.cta-link:hover { color: var(--magenta); border-color: var(--magenta); }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid rgba(46,196,182,0.1);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}

.footer-email {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(46,196,182,0.35);
}

.social-row { display: flex; gap: 18px; }

.social-row a {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(46,196,182,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.social-row a:hover { color: var(--magenta); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .video-grid        { grid-template-columns: repeat(2, 1fr); }
  .photo-grid        { grid-template-columns: repeat(2, 1fr); }
  .about-layout      { grid-template-columns: 1fr; }
  .about-img         { height: 240px; }
  .hero-title        { font-size: 40px; }
  .hero-clients      { display: none; }
  .nav-links         { gap: 12px; }
}

@media (max-width: 480px) {
  .video-grid        { grid-template-columns: 1fr; }
  .nav-links a       { font-size: 8px; letter-spacing: 0.12em; }
}
