*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --gold: #C9A84C;
  --gold-light: #E8D08A;
  --gold-dark: #8B6914;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #242424;
  --mid: #3A3A3A;
  --light-text: #B8B8B8;
  --white: #F5F0E8;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); transition: transform 0.1s ease;
}
.cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%); transition: all 0.15s ease;
}
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 60px;
  background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, transparent 100%);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(10,10,10,0.97); border-bottom: 1px solid rgba(201,168,76,0.15); }
.nav-logo { font-family: var(--serif); font-size: 22px; font-weight: 600; letter-spacing: 0.15em; color: var(--white); text-decoration: none; text-transform: uppercase; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 44px; list-style: none; }
.nav-links a { font-family: var(--sans); font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light-text); text-decoration: none; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-decoration: none; border: 1px solid var(--gold); padding: 10px 24px; transition: all 0.3s; }
.nav-cta:hover { background: var(--gold); color: var(--black); }
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: flex-end; padding-bottom: 100px; overflow: hidden; background: var(--black); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,1) 30%, rgba(10,10,10,0.3) 70%, rgba(10,10,10,0.05) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; padding-left: 60px; max-width: 680px; }
.hero-eyebrow { font-family: var(--sans); font-size: 11px; font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; opacity: 0; animation: fadeUp 1s 0.2s forwards; }
.hero-title { font-family: var(--serif); font-size: clamp(56px, 7vw, 100px); font-weight: 300; line-height: 0.95; letter-spacing: -0.01em; color: var(--white); margin-bottom: 32px; opacity: 0; animation: fadeUp 1s 0.4s forwards; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { font-family: var(--sans); font-size: 14px; font-weight: 300; letter-spacing: 0.06em; line-height: 1.9; color: var(--light-text); max-width: 420px; margin-bottom: 52px; opacity: 0; animation: fadeUp 1s 0.6s forwards; }
.hero-actions { display: flex; gap: 24px; align-items: center; opacity: 0; animation: fadeUp 1s 0.8s forwards; }
.btn-primary { display: inline-block; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; background: var(--gold); color: var(--black); padding: 16px 40px; text-decoration: none; transition: all 0.3s; position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--white); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary span { position: relative; z-index: 1; }
.btn-secondary { font-family: var(--sans); font-size: 11px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--light-text); text-decoration: none; display: flex; align-items: center; gap: 12px; transition: color 0.3s; }
.btn-secondary::after { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); transition: width 0.3s; }
.btn-secondary:hover { color: var(--white); }
.btn-secondary:hover::after { width: 60px; }
.hero-scroll { position: absolute; bottom: 40px; left: 60px; z-index: 3; display: flex; align-items: center; gap: 16px; opacity: 0; animation: fadeUp 1s 1.2s forwards; }
.hero-scroll span { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mid); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(180deg, var(--gold) 0%, transparent 100%); animation: scrollPulse 2s infinite; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
.marquee-wrap { background: var(--gold); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 18s linear infinite; white-space: nowrap; }
.marquee-item { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--black); padding: 0 40px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.section-philosophy { padding: 140px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; max-width: 1400px; margin: 0 auto; }
.section-tag { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; display: flex; align-items: center; gap: 16px; }
.section-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.philosophy-title { font-family: var(--serif); font-size: clamp(40px, 4vw, 60px); font-weight: 300; line-height: 1.1; margin-bottom: 32px; }
.philosophy-title em { font-style: italic; color: var(--gold); }
.philosophy-text { font-size: 14px; font-weight: 300; line-height: 2; color: var(--light-text); margin-bottom: 24px; }
.philosophy-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px; }
.stat-num { font-family: var(--serif); font-size: 52px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 11px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(--light-text); }
.philosophy-visual { position: relative; }
.philosophy-frame { position: absolute; bottom: -20px; right: -20px; width: calc(100% - 40px); height: calc(100% - 40px); border: 1px solid rgba(201,168,76,0.3); pointer-events: none; }
.section-bikes { padding: 100px 0 140px; overflow: hidden; }
.bikes-header { padding: 0 60px 80px; display: flex; justify-content: space-between; align-items: flex-end; }
.bikes-title { font-family: var(--serif); font-size: clamp(36px, 4vw, 56px); font-weight: 300; line-height: 1.1; }
.bikes-title em { font-style: italic; color: var(--gold); }
.bikes-link { font-family: var(--sans); font-size: 11px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 16px; }
.bikes-link::after { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); transition: width 0.3s; }
.bikes-link:hover::after { width: 60px; }
.bikes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; padding: 0 60px; }
.bike-card { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--dark2); cursor: pointer; }
.bike-card-bg { position: absolute; inset: 0; transition: transform 0.7s ease; }
.bike-card:hover .bike-card-bg { transform: scale(1.06); }
.bike-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.9) 100%); transition: opacity 0.3s; }
.bike-card:hover .bike-card-overlay { opacity: 0.7; }
.bike-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 32px; z-index: 2; }
.bike-card-tag { font-size: 10px; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.bike-card-name { font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1.1; margin-bottom: 12px; }
.bike-card-desc { font-size: 12px; font-weight: 300; line-height: 1.8; color: var(--light-text); max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.bike-card:hover .bike-card-desc { max-height: 80px; }
.section-craft { padding: 140px 60px; background: var(--dark); position: relative; overflow: hidden; }
.craft-accent { position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.08); }
.craft-accent2 { position: absolute; bottom: -150px; left: -150px; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.06); }
.craft-inner { max-width: 1400px; margin: 0 auto; }
.craft-header { text-align: center; margin-bottom: 100px; }
.craft-title { font-family: var(--serif); font-size: clamp(44px, 5vw, 72px); font-weight: 300; line-height: 1.05; margin-bottom: 24px; }
.craft-title em { font-style: italic; color: var(--gold); }
.craft-subtitle { font-size: 13px; font-weight: 300; letter-spacing: 0.08em; color: var(--light-text); max-width: 500px; margin: 0 auto; line-height: 2; }
.craft-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.craft-step { background: var(--dark2); padding: 56px 40px; position: relative; transition: background 0.3s; }
.craft-step:hover { background: var(--dark3); }
.craft-step-num { font-family: var(--serif); font-size: 80px; font-weight: 300; color: rgba(201,168,76,0.1); line-height: 1; position: absolute; top: 24px; right: 24px; }
.craft-step-icon { margin-bottom: 24px; width: 48px; height: 2px; background: var(--gold); }
.craft-step-title { font-family: var(--serif); font-size: 24px; font-weight: 400; margin-bottom: 16px; }
.craft-step-text { font-size: 13px; font-weight: 300; line-height: 1.9; color: var(--light-text); }
.section-founders { padding: 140px 60px; max-width: 1400px; margin: 0 auto; }
.founders-header { margin-bottom: 80px; }
.founders-title { font-family: var(--serif); font-size: clamp(36px, 4vw, 56px); font-weight: 300; line-height: 1.1; margin-bottom: 16px; }
.founders-title em { font-style: italic; color: var(--gold); }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.founder-card { display: grid; grid-template-columns: 180px 1fr; gap: 40px; padding: 48px; border: 1px solid rgba(201,168,76,0.15); position: relative; transition: border-color 0.3s; }
.founder-card:hover { border-color: rgba(201,168,76,0.4); }
.founder-card::before { content: ''; position: absolute; top: -1px; left: 40px; width: 60px; height: 2px; background: var(--gold); }
.founder-portrait { width: 180px; height: 220px; display: block; background: var(--dark2); overflow: hidden; }
.founder-name { font-family: var(--serif); font-size: 30px; font-weight: 400; margin-bottom: 4px; }
.founder-role { font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.founder-bio { font-size: 13px; font-weight: 300; line-height: 1.9; color: var(--light-text); }
.section-terrain { position: relative; height: 600px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.terrain-bg { position: absolute; inset: 0; z-index: 0; }
.terrain-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.6); z-index: 1; }
.terrain-content { position: relative; z-index: 2; text-align: center; padding: 0 60px; }
.terrain-quote { font-family: var(--serif); font-size: clamp(32px, 4vw, 56px); font-weight: 300; font-style: italic; line-height: 1.3; max-width: 900px; margin: 0 auto 32px; }
.terrain-quote em { color: var(--gold); font-style: normal; }
.terrain-attr { font-size: 11px; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.section-contact { padding: 140px 60px; background: var(--dark); }
.contact-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.contact-title { font-family: var(--serif); font-size: clamp(40px, 4vw, 60px); font-weight: 300; line-height: 1.1; margin-bottom: 28px; }
.contact-title em { font-style: italic; color: var(--gold); }
.contact-text { font-size: 14px; font-weight: 300; line-height: 2; color: var(--light-text); margin-bottom: 48px; }
.contact-detail-item { display: flex; gap: 20px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.contact-detail-item:last-child { border-bottom: none; }
.contact-detail-label { font-size: 10px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); min-width: 80px; padding-top: 2px; }
.contact-detail-value { font-size: 15px; font-weight: 300; color: var(--white); }
.form-group { margin-bottom: 28px; }
.form-label { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--light-text); margin-bottom: 10px; }
.form-input, .form-textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 12px 0; font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--white); outline: none; transition: border-color 0.3s; }
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: none; height: 100px; }
.form-submit { width: 100%; background: transparent; border: 1px solid var(--gold); padding: 16px; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); cursor: pointer; transition: all 0.3s; }
.form-submit:hover { background: var(--gold); color: var(--black); }
footer { padding: 60px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-logo { font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 40px; list-style: none; }
.footer-links a { font-size: 11px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(--light-text); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; font-weight: 300; color: var(--mid); letter-spacing: 0.1em; }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
