/* ================================================
   BRIAN PRICE PRODUCTIONS
   Full-bleed hero, pure black sections, light contact form,
   Bebas Neue display, bold Inter body, amber/gold accent
   ================================================ */

:root {
  --black:    #111111;
  --black-2:  #1a1a1a;
  --light:    #e8e4de;
  --white:    #ffffff;
  --muted:    #999999;
  --red:      #c9922a;
  --red-dark: #a8751a;
  --nav-h:    72px;
  --max-w:    1200px;
}

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

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

/* ── Nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(8px);
}

.nav-inner {
  width: min(calc(100% - 2rem), var(--max-w));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.15s;
}
.site-nav a:hover { opacity: 1; }

.nav-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  color: var(--white);
  opacity: 0.75;
  transition: opacity 0.15s;
  display: flex;
  align-items: center;
}
.social-link:hover { opacity: 1; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.2s;
}

.mobile-nav {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(17,17,17,0.98);
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 99;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: opacity 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { opacity: 1; }

/* ── Buttons ── */
.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 2px solid var(--red);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

.btn-solid {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--red);
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-solid:hover { background: var(--red-dark); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(30%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1rem;
}

.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.3em;
}

.name-white { color: var(--white); }
.name-red   { color: var(--red); }

.hero-sub {
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ── About ── */
.about-section {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-photo {
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-text {
  padding: 5rem 5rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
  color: var(--white);
}

.about-role {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}

.red { color: var(--red); }

blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  font-style: normal;
  font-weight: 400;
}

.about-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.7;
}

/* ── Services ── */
.services-section {
  background: var(--black-2);
  padding: 6rem 2rem;
  text-align: center;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.06em;
  margin: 0 0 3.5rem;
  color: var(--black);
}

.section-title.light {
  color: var(--white);
}

.services-section .section-title {
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin-inline: auto;
}

.service-card {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: left;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--red); }

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.7;
}

/* ── Portfolio ── */
.portfolio-section {
  background: var(--black);
  padding: 6rem 2rem;
  max-width: var(--max-w);
  margin-inline: auto;
}

.portfolio-section .section-title {
  color: var(--white);
  margin-bottom: 3rem;
}

.portfolio-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.portfolio-item:first-of-type { border-top: 1px solid rgba(255,255,255,0.08); }

.portfolio-art {
  width: 200px;
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.portfolio-art img { width: 100%; height: 100%; object-fit: cover; }

.p-artist {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.3rem;
}

.p-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.p-role {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.player {
  width: 100%;
  margin-bottom: 1rem;
  accent-color: var(--red);
}

.credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  margin: 0;
}
.credit a { color: rgba(255,255,255,0.4); text-decoration: underline; text-underline-offset: 2px; }
.credit a:hover { color: rgba(255,255,255,0.7); }

/* ── Contact ── */
.contact-section {
  background: var(--light);
  padding: 6rem 2rem;
  text-align: center;
}

.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: 0.04em;
  color: var(--black);
  margin: 0 0 3rem;
}

.contact-form {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row:has(input[type="email"]),
.form-row:has(textarea) {
  grid-template-columns: 1fr;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #d9d4cc;
  border: none;
  border-radius: 6px;
  padding: 1.1rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  outline: none;
  transition: background 0.15s;
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #999; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #ccc8c0;
}

.contact-form select {
  cursor: pointer;
  color: #999;
}

.contact-form select:valid { color: #555; }

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.45);
  margin: 0.5rem 0;
}

/* ── Footer ── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 0;
}

.footer-inner {
  width: min(calc(100% - 2rem), var(--max-w));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.site-footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 1.5rem;
}
.site-footer nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.site-footer nav a:hover { color: var(--white); }

/* ── Tablet ── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .about-section { grid-template-columns: 1fr; }
  .about-photo { max-height: 480px; }
  .about-text { padding: 3rem 2rem; }

  .site-nav { gap: 1.5rem; }
}

/* ── Mobile ── */
@media (max-width: 680px) {
  .site-nav { display: none; }
  .nav-social { display: none; }
  .menu-toggle { display: flex; }

  .hero-name { font-size: clamp(3rem, 16vw, 5rem); }

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

  .portfolio-item { grid-template-columns: 1fr; }
  .portfolio-art { width: 100%; max-width: 220px; aspect-ratio: 1; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }

  .about-text { padding: 2.5rem 1.5rem; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
