/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 4rem; background: linear-gradient(to bottom, 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 var(--border); }
.nav-logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; letter-spacing: 0.05em; color: var(--text); text-decoration: none; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 4rem 6rem; position: relative; overflow: hidden; background: var(--bg); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: opacity 0.6s ease; }
.hero-bg { position: absolute; inset: 0; background: rgba(10,10,10,0.5); z-index: 1; }
.hero-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; position: relative; z-index: 2; }
.hero-title { font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 400; line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 2rem; max-width: 900px; position: relative; z-index: 2; }
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; position: relative; z-index: 2; }
.hero-desc { font-size: 0.9rem; color: var(--muted); max-width: 400px; line-height: 1.7; }
.hero-scroll { display: flex; align-items: center; gap: 0.75rem; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); text-decoration: none; margin-left: auto; transition: color 0.2s; }
.hero-scroll:hover { color: var(--text); }
.scroll-line { width: 40px; height: 1px; background: var(--muted); transition: width 0.2s; }
.hero-scroll:hover .scroll-line { width: 60px; background: var(--text); }

/* ── REEL ── */
.reel-section { background: #000; padding: 0; position: relative; }
.reel-title-bar { display: flex; align-items: center; justify-content: space-between; padding: 2rem 4rem; border-bottom: 1px solid var(--border); }
.reel-title-bar span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.reel-embed { width: 100%; aspect-ratio: 16/9; max-height: calc(100vh - 10rem); max-width: calc((100vh - 10rem) * 1.7778); margin: 0 auto; background: #000; }
.reel-embed iframe { width: 100%; height: 100%; display: block; border: none; }

/* ── ABOUT ── */
.about-section { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.about-photo-col { display: flex; flex-direction: column; gap: 0.5rem; }
.about-photo-main { aspect-ratio: 1/1; overflow: hidden; }
.about-photo-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.about-photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.about-photo-small { aspect-ratio: 1; overflow: hidden; }
.about-photo-small img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.about-content { padding-top: 1rem; }
.about-content p { font-size: 0.95rem; color: rgba(240,237,232,0.75); line-height: 1.9; margin-bottom: 1.5rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 400; color: var(--accent); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.tag { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--border); padding: 0.35rem 0.75rem; }

/* ── CONTACT ── */
.contact-section { padding: 6rem 4rem 5rem; }
.contact-inner { max-width: 700px; }
.contact-email { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; font-style: italic; color: var(--text); text-decoration: none; display: inline-block; margin-bottom: 3rem; border-bottom: 1px solid var(--border); padding-bottom: 0.25rem; transition: color 0.2s, border-color 0.2s; }
.contact-email:hover { color: var(--accent); border-color: var(--accent); }
.contact-socials { display: flex; gap: 2rem; flex-wrap: wrap; }
.social-link { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.social-link:hover { color: var(--text); }
.social-link::before { content: ''; display: inline-block; width: 16px; height: 1px; background: currentColor; }

/* ── FOOTER ── */
footer { padding: 2rem 4rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
footer p { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.05em; }
