/* =============================================
   PHINEAS JACK PRODUCTIONS — Main Stylesheet
   ============================================= */

:root {
  --black:      #080808;
  --black-soft: #111111;
  --gray-dark:  #1a1a1a;
  --gray-mid:   #2c2c2c;
  --gray-light: #666;
  --white:      #f4f1eb;
  --white-dim:  #b8b4ac;
  --gold:       #c8a44a;
  --gold-light: #e8c97a;
  --gold-dim:   #7a6228;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-mono:    'DM Mono', monospace;
  --font-body:    'DM Sans', sans-serif;

  --nav-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section-dark { background: var(--black-soft); }

.section-label-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 300;
}
.section-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(200,164,74,0.3), transparent);
}
.section-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  transition: color 0.2s;
  white-space: nowrap;
}
.section-link:hover { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,164,74,0.1);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.nav-logo-pj {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--white);
}
.nav-logo-prod {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link-cta {
  color: var(--gold) !important;
  border: 1px solid rgba(200,164,74,0.4);
  padding: 8px 18px;
  border-radius: 1px;
}
.nav-link-cta::after { display: none; }
.nav-link-cta:hover { background: rgba(200,164,74,0.1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: var(--nav-h) 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,164,74,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 90%, rgba(200,164,74,0.04) 0%, transparent 50%),
    var(--black);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  animation: heroIn 1.2s var(--ease) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 300;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 13vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}

.hero-title-line {
  display: block;
  animation: lineIn 0.9s var(--ease) both;
}
.hero-title-line:nth-child(1) { animation-delay: 0.1s; }
.hero-title-line:nth-child(2) { animation-delay: 0.2s; }
.hero-title-line:nth-child(3) { animation-delay: 0.3s; }

@keyframes lineIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-title-accent {
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(70px, 11vw, 140px);
  font-weight: 300;
}

.hero-sub {
  font-size: 16px;
  color: var(--white-dim);
  margin-bottom: 44px;
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
  animation: heroIn 1s var(--ease) 0.5s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroIn 1s var(--ease) 0.65s both;
}

.hero-scroll {
  position: absolute;
  bottom: 120px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

.hero-stat-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(200,164,74,0.07);
  border-top: 1px solid rgba(200,164,74,0.2);
  padding: 20px 0;
  z-index: 2;
  margin-top: auto;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 4px;
}
.hero-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(200,164,74,0.2);
}

/* =============================================
   SERVICES INTRO
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,164,74,0.12);
  border: 1px solid rgba(200,164,74,0.12);
}

.service-card {
  background: var(--black);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--gray-dark); }

.service-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
}
.service-card-desc {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.7;
  flex: 1;
}
.service-card-arrow {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s;
}
.service-card:hover .service-card-arrow { transform: translateX(6px); }

/* =============================================
   WORK GRID
   ============================================= */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.work-card { display: flex; flex-direction: column; gap: 14px; }

.work-embed {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--gray-dark);
  overflow: hidden;
}
.work-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.work-card-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.work-card-artist {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}
.work-card-type {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold);
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust { text-align: center; }
.client-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.client-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
}
.client-dot {
  color: var(--gold);
  font-size: 18px;
}
.trust-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gray-light);
  line-height: 1.9;
  max-width: 800px;
  margin: 0 auto;
}

/* =============================================
   CALLOUT
   ============================================= */
.callout {
  background: var(--gold);
  padding: 80px 0;
}
.callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.callout-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 12px;
}
.callout-attr {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--black);
  opacity: 0.6;
  text-transform: uppercase;
}
.callout .btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  white-space: nowrap;
}
.callout .btn-primary:hover {
  background: var(--gray-dark);
  border-color: var(--gray-dark);
}

/* =============================================
   WHY GRID
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 80px;
}
.why-icon {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 16px;
}
.why-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.why-desc {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.75;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(200,164,74,0.15);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 12px;
}
.footer-logo span {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gray-light);
  line-height: 1.9;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-email {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--gold-light); }
.footer-location {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gray-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray-light);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,164,74,0.3), transparent);
}
.page-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  letter-spacing: 0.03em;
  line-height: 0.9;
  margin-bottom: 24px;
}
.page-hero-sub {
  font-size: 16px;
  color: var(--white-dim);
  max-width: 540px;
  line-height: 1.7;
}
.page-hero-bg-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 220px;
  color: rgba(200,164,74,0.04);
  letter-spacing: 0.02em;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

/* =============================================
   WORK PAGE
   ============================================= */
.work-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 32px;
}
.work-full-grid .work-card-large { grid-column: span 2; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.service-block {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-block:last-child { border-bottom: none; }
.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-block-num {
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(200,164,74,0.08);
  line-height: 1;
  margin-bottom: -20px;
}
.service-block-title {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 24px;
}
.service-block-desc {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 32px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  padding-left: 20px;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* =============================================
   GEAR PAGE
   ============================================= */
.gear-intro {
  font-size: 16px;
  color: var(--white-dim);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 60px;
}
.gear-category { margin-bottom: 64px; }
.gear-category-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,164,74,0.2);
}
.gear-table { width: 100%; border-collapse: collapse; }
.gear-table tr { border-bottom: 1px solid rgba(255,255,255,0.04); }
.gear-table tr:hover td { background: rgba(200,164,74,0.03); }
.gear-table td { padding: 12px 0; vertical-align: top; font-size: 13px; line-height: 1.6; }
.gear-qty {
  width: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  padding-top: 14px;
}
.gear-name { width: 260px; color: var(--white); padding-right: 24px; font-weight: 400; }
.gear-desc { color: var(--gray-light); font-size: 12px; padding-top: 2px; }
.gear-note {
  background: rgba(200,164,74,0.06);
  border-left: 2px solid var(--gold-dim);
  padding: 12px 16px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--gray-light);
  line-height: 1.65;
  font-style: italic;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 100px;
  align-items: start;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  line-height: 1;
}
.about-text p {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-text p strong { color: var(--white); font-weight: 400; }
.about-photo {
  position: relative;
}
.about-photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--gray-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(200,164,74,0.15);
}
.about-photo-placeholder span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  text-transform: uppercase;
}
.about-photo-frame {
  position: absolute;
  top: 16px; left: 16px;
  right: -16px; bottom: -16px;
  border: 1px solid rgba(200,164,74,0.2);
  pointer-events: none;
}
.about-credentials {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.credential {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.credential-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  width: 100px;
  flex-shrink: 0;
  padding-top: 2px;
}
.credential-value {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.6;
}

/* =============================================
   IMAGE BAND (homepage)
   ============================================= */
.img-band {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.img-band-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.45);
}
.img-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.6) 0%, transparent 50%, rgba(8,8,8,0.6) 100%);
}
.img-band-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-band-text p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 4vw, 42px);
  color: var(--white);
  letter-spacing: 0.05em;
  text-align: center;
}


.service-img-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200,164,74,0.15);
}
.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.service-img-wrap:hover .service-img { transform: scale(1.03); }
.service-img-caption {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 12px;
  background: rgba(200,164,74,0.06);
  border-top: 1px solid rgba(200,164,74,0.15);
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 28px;
}
.contact-info p {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item { display: flex; flex-direction: column; gap: 4px; }
.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail-val {
  font-size: 14px;
  color: var(--white-dim);
}
.contact-detail-val a { color: var(--white-dim); transition: color 0.2s; }
.contact-detail-val a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-input, .form-select, .form-textarea {
  background: var(--gray-dark);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  border-radius: 1px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-select { cursor: pointer; appearance: none; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 998;
    margin: 0;
    padding: 0;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 14px; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 0 24px; }
  .hero-scroll { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-stat-bar { flex-wrap: wrap; }
  .hero-stat { padding: 12px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-block-inner { grid-template-columns: 1fr; gap: 40px; }
  .gear-name { width: 180px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .callout-inner { flex-direction: column; text-align: center; }
  .work-full-grid { grid-template-columns: 1fr; }
  .work-full-grid .work-card-large { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .img-band { height: 220px; }
}
