/* =====================================================
   BASS PORTFOLIO · CSS
   Dark editorial · Playfair Display + Source Sans 3
   ===================================================== */

:root {
  --bg:         #0e0c0a;
  --bg-alt:     #141210;
  --amber:      #d4852a;
  --amber-dim:  #a86520;
  --text:       #e2dbd2;
  --text-muted: #7a7060;
  --rule:       #2a2520;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', sans-serif;
  --max-w:      960px;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }

/* LANGUAGE BAR */
.lang-bar {
  position: fixed;
  top: 0; right: 0;
  z-index: 100;
  padding: 0.6rem 1.4rem;
}

.lang-switch {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  border: 1px solid var(--rule);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.lang-switch:hover {
  color: var(--amber);
  border-color: var(--amber);
  text-decoration: none;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

/* Subtle noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-photo {
  flex-shrink: 0;
  width: 220px;
  height: 280px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.05);
  border: 1px solid var(--rule);
}

.hero-pre {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.6rem;
}

.genre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.4rem;
}

.pill {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--rule);
  padding: 0.25rem 0.8rem;
  border-radius: 1px;
}

/* CTA BUTTON */
.btn-cta {
  display: inline-block;
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-cta:hover {
  background: var(--amber-dim);
  text-decoration: none;
  color: var(--bg);
}

/* SECTIONS */
.section {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--rule);
}

.section-dark {
  background: var(--bg-alt);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}

/* BIO */
.bio-text {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text);
  max-width: 680px;
}

/* VIDEOS */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.video-wrap {
  position: relative;
  padding-top: 56.25%;
  background: #0a0806;
  border: 1px solid var(--rule);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.video-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.video-note {
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* GEAR */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.gear-cat-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.gear-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gear-list li {
  font-size: 0.95rem;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
}

.gear-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* CONTACT FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

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

.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--rule);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--amber);
}

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

.form-success {
  color: var(--amber);
  font-size: 1rem;
  padding: 1.5rem 0;
}

.contact-direct {
  font-size: 0.95rem;
  color: var(--text);
  margin-top: 1rem;
}

/* FOOTER */
.footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 680px) {
  .hero-inner {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-photo {
    width: 160px;
    height: 200px;
  }

  .genre-pills {
    justify-content: center;
  }

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

  .video-meta {
    flex-direction: column;
    gap: 0.2rem;
  }
}

/* PAGE LOAD FADE */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text { animation: fadeUp 0.7s ease both; }
.hero-photo { animation: fadeUp 0.7s 0.15s ease both; }
