*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #090909;
  --bg2: #111111;
  --fg: #e8e4dc;
  --fg2: #7a7570;
  --accent: #c8a96e;
  --serif: 'Instrument Serif', Georgia, serif;
  --mono: 'Space Mono', monospace;
  --border: rgba(200,169,110,0.15);
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--mono); font-size: 13px; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2.5rem; mix-blend-mode: difference; }
.nav-logo { font-family: var(--serif); font-size: 1.1rem; color: var(--fg); text-decoration: none; letter-spacing: 0.02em; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--fg2); text-decoration: none; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 8rem 2.5rem 4rem; position: relative; overflow: hidden; }
.hero.compact { min-height: 72vh; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 40%, rgba(200,169,110,0.06) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.02) 0%, transparent 50%); }
.hero > *:not(.hero-bg) { position: relative; z-index: 1; }
.hero-eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; }
.hero-title { font-family: var(--serif); font-size: clamp(4rem, 12vw, 11rem); line-height: 0.9; font-weight: 400; letter-spacing: 0; margin-bottom: 2.5rem; max-width: 1100px; }
.hero-title em { font-style: italic; color: var(--accent); }
.hero-copy { color: var(--fg2); max-width: 620px; font-size: 13px; line-height: 1.9; margin: -1rem 0 2.5rem; }
.hero-meta { display: flex; align-items: center; gap: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.hero-meta-item { color: var(--fg2); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-meta-item span { display: block; color: var(--fg); margin-top: 0.3rem; font-size: 12px; }
.hero-scroll { margin-left: auto; display: flex; align-items: center; gap: 0.8rem; color: var(--fg2); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.scroll-line { width: 40px; height: 1px; background: var(--fg2); animation: scrollline 2s ease-in-out infinite; }
@keyframes scrollline { 0%,100%{transform:scaleX(1);opacity:0.4} 50%{transform:scaleX(1.6);opacity:1} }
.section-header { display: flex; align-items: baseline; justify-content: space-between; padding: 5rem 2.5rem 2.5rem; border-top: 1px solid var(--border); gap: 2rem; }
.section-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.section-title { font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 400; line-height: 1; margin-top: 0.5rem; color: var(--fg); }
.section-copy { color: var(--fg2); max-width: 560px; margin-top: 1rem; line-height: 1.9; font-size: 12px; }
.section-count { font-size: 11px; color: var(--fg2); letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.photo-grid { padding: 0 2.5rem 6rem; column-count: 4; column-gap: 12px; }
.photo-grid[data-gallery-layout="single"] { columns: 1; max-width: 980px; margin: 0 auto; }
.photo-item, .design-item, .lane-card { position: relative; overflow: hidden; background: var(--bg2); }
.photo-item img, .design-item img, .lane-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s, opacity 0.4s; opacity: 0; }
.photo-item { display: block; width: 100%; margin: 0 0 12px; break-inside: avoid; cursor: zoom-in; aspect-ratio: auto !important; }
.photo-item img { height: auto; object-fit: initial; filter: none; transition: opacity 0.4s ease; }
.photo-item img.loaded, .design-item img.loaded, .lane-card img.loaded { opacity: 1; }
.photo-item:hover img { transform: none; filter: none; }
.lane-card:hover img { transform: scale(1.04); }
.photo-overlay, .design-overlay, .lane-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,9,9,0.78) 0%, rgba(9,9,9,0.12) 55%, transparent 100%); opacity: 0; transition: opacity 0.4s; display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; }
.photo-overlay, .design-overlay { display: none; }
.photo-item:hover .photo-overlay, .design-item:hover .design-overlay, .lane-card:hover .lane-overlay { opacity: 1; }
.photo-meta, .design-type, .lane-meta { font-size: 10px; color: var(--accent); letter-spacing: 0.15em; text-transform: uppercase; }
.design-grid { padding: 0 2.5rem 6rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.design-item { aspect-ratio: 1; }
.design-item:hover img { transform: scale(1.06); }
.motion-header { padding-top: 2.5rem; }
.video-grid { padding: 0 2.5rem 6rem; display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-start; }
.video-grid[data-gallery-layout="single"] { display: block; max-width: min(520px, calc(100vw - 5rem)); margin: 0 auto; }
.film-card { display: block; width: 100%; position: relative; background: var(--bg2); }
.video-grid .film-card { flex: 0 0 auto; }
.video-grid .film-card[data-video-shape="portrait"] { width: min(220px, calc(50vw - 3rem)); }
.video-grid .film-card[data-video-shape="landscape"] { width: min(420px, calc(100vw - 5rem)); }
.video-grid[data-gallery-layout="single"] .film-card { width: 100%; margin-bottom: 12px; }
.film-stage { position: relative; background: #000; border-radius: 2px; overflow: hidden; }
.film-stage .plyr { width: 100%; --plyr-color-main: var(--accent); --plyr-control-radius: 0; --plyr-control-icon-size: 14px; --plyr-control-spacing: 8px; --plyr-menu-radius: 0; --plyr-range-thumb-height: 12px; --plyr-range-thumb-shadow: none; --plyr-tooltip-background: var(--bg2); --plyr-tooltip-color: var(--fg); }
.film-stage .plyr video { width: 100%; height: auto; object-fit: contain; display: block; background: #000; }
.video-grid[data-gallery-layout="single"] .film-stage .plyr video { max-height: min(68vh, 620px); }
.film-stage .plyr--video .plyr__controls { background: linear-gradient(to top, rgba(9,9,9,0.92) 0%, rgba(9,9,9,0.28) 100%); padding: 10px 12px 12px; }
.film-stage .plyr__control:hover { background: rgba(200,169,110,0.14); }
.film-stage .plyr__control--overlaid { border-radius: 50%; background: rgba(9,9,9,0.74); border: 1px solid rgba(232,228,220,0.32); box-shadow: none; }
.film-stage .plyr__control--overlaid:hover { background: rgba(200,169,110,0.16); }
.film-stage .plyr__progress__buffer { color: rgba(232,228,220,0.15); }
.film-stage .plyr__progress input[type=range] { --plyr-range-fill-background: var(--accent); }
.film-stage .plyr__time { color: var(--fg2); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.film-play, .film-play-btn, .film-controls, .film-control-button, .film-control-icon, .film-timeline, .film-time { display: none; }
.film-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.2rem; background: linear-gradient(to top, rgba(9,9,9,0.85) 0%, transparent 100%); }
.film-title { font-family: var(--serif); font-size: 1rem; color: var(--fg); }
.film-type { font-size: 10px; color: var(--accent); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.2rem; }
.hint-line { flex: 1; height: 1px; background: var(--border); }
.about, .split-section { padding: 5rem 2.5rem; border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-statement { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1.25; font-weight: 400; color: var(--fg); margin-top: 1.5rem; }
.about-statement em { color: var(--accent); font-style: italic; }
.about-right { padding-top: 4.5rem; }
.about-body, .body-copy { color: var(--fg2); line-height: 1.9; font-size: 12px; }
.about-tags, .tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2rem; }
.tag { border: 1px solid var(--border); color: var(--fg2); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 12px; transition: border-color 0.2s, color 0.2s; }
.tag:hover { border-color: var(--accent); color: var(--accent); }
.sound-section { padding: 5rem 2.5rem; border-top: 1px solid var(--border); }
.sound-link, .text-link { display: inline-flex; align-items: center; gap: 1rem; margin-top: 2rem; text-decoration: none; color: var(--fg); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.2s; }
.sound-link:hover, .text-link:hover { color: var(--accent); }
.sound-arrow { width: 32px; height: 1px; background: currentColor; position: relative; transition: width 0.3s; }
.sound-arrow::after { content:''; position:absolute; right:0; top:-3px; width:7px; height:7px; border-right:1px solid currentColor; border-top:1px solid currentColor; transform:rotate(45deg); }
.sound-link:hover .sound-arrow, .text-link:hover .sound-arrow { width: 56px; }
.landing-lanes { border-top: 1px solid var(--border); padding: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lane-card { display: block; min-height: 58vh; text-decoration: none; color: var(--fg); }
.lane-card img { position: absolute; inset: 0; filter: none; }
.lane-overlay { opacity: 1; padding: 1.4rem; }
.lane-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); font-weight: 400; line-height: 1; margin-top: 0.5rem; }
.lane-copy { color: var(--fg2); max-width: 320px; margin-top: 1rem; font-size: 12px; line-height: 1.8; }
.shoot-list { border-top: 1px solid var(--border); padding: 0 2.5rem 5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.shoot-link { min-height: 230px; padding: 1.2rem; background: var(--bg2); border: 1px solid var(--border); text-decoration: none; color: var(--fg); display: flex; flex-direction: column; justify-content: flex-end; transition: border-color 0.2s, color 0.2s; position: relative; overflow: hidden; }
.shoot-link::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,9,9,0.86), rgba(9,9,9,0.18) 62%, rgba(9,9,9,0.05)); z-index: 1; }
.shoot-link img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.4s ease, transform 0.5s ease; }
.shoot-link img.loaded { opacity: 1; }
.shoot-link:hover img { transform: scale(1.04); }
.shoot-link:hover { border-color: var(--accent); color: var(--accent); }
.shoot-link span, .shoot-link strong { position: relative; z-index: 2; }
.shoot-link span { color: var(--fg2); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.4rem; }
.shoot-link strong { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 400; line-height: 1; color: inherit; }
.gallery-toolbar { padding: 0 2.5rem 1rem; display: flex; justify-content: flex-end; gap: 0; }
.gallery-view-button { border: 1px solid var(--border); border-right: 0; background: transparent; color: var(--fg2); font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.45rem 0.8rem; cursor: pointer; transition: color 0.2s, border-color 0.2s, background 0.2s; }
.gallery-view-button:first-child { border-radius: 999px 0 0 999px; }
.gallery-view-button:last-child { border-right: 1px solid var(--border); border-radius: 0 999px 999px 0; }
.gallery-view-button:hover, .gallery-view-button.active { color: var(--fg); border-color: var(--accent); background: rgba(200,169,110,0.08); }
.full-gallery { padding: 0 2.5rem 6rem; column-count: 4; column-gap: 12px; }
.full-gallery[data-gallery-layout="single"] { columns: 1; max-width: 980px; margin: 0 auto; }
.gallery-image { display: block; width: 100%; margin: 0 0 12px; padding: 0; border: 0; background: transparent; cursor: zoom-in; break-inside: avoid; }
.gallery-image img { display: block; width: 100%; height: auto; opacity: 0; transition: opacity 0.4s ease; }
.gallery-image img.loaded { opacity: 1; }
.private-gallery-panel { border-top: 1px solid var(--border); }
.locked-gallery-shell { position: relative; margin: 0 2.5rem 5rem; min-height: 430px; overflow: hidden; border: 1px solid var(--border); background: var(--bg2); }
.locked-gallery-preview { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 12px; filter: blur(16px); transform: scale(1.04); opacity: 0.78; }
.locked-gallery-tile { min-height: 210px; background: radial-gradient(ellipse at 30% 20%, rgba(232,228,220,0.18), transparent 45%), radial-gradient(ellipse at 75% 80%, rgba(200,169,110,0.16), transparent 50%), linear-gradient(135deg, rgba(39,39,38,0.98), rgba(8,8,8,0.96)); }
.locked-gallery-shell::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(9,9,9,0.36), rgba(9,9,9,0.76)); }
.private-gallery-form { position: relative; z-index: 1; width: min(520px, calc(100% - 2rem)); margin: 4rem auto 0; padding: 1.4rem; border: 1px solid var(--border); background: rgba(9,9,9,0.72); backdrop-filter: blur(18px); }
.private-gallery-heading { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; color: var(--fg); margin-bottom: 1.2rem; }
.private-gallery-label { display: block; color: var(--accent); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.75rem; }
.private-gallery-controls { display: flex; gap: 8px; }
.private-gallery-input { flex: 1; min-width: 0; border: 1px solid var(--border); background: var(--bg2); color: var(--fg); font: inherit; padding: 0.8rem 0.9rem; outline: none; }
.private-gallery-input:focus { border-color: var(--accent); }
.private-gallery-button { border: 1px solid var(--accent); background: rgba(200,169,110,0.08); color: var(--fg); font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; padding: 0 1.1rem; cursor: pointer; transition: background 0.2s, color 0.2s; }
.private-gallery-button:hover { background: var(--accent); color: var(--bg); }
.private-gallery-message { min-height: 1.4rem; margin-top: 0.8rem; color: var(--fg2); font-size: 11px; }
.private-gallery-download { display: block; width: min(520px, calc(100% - 2rem)); margin: 0 auto 1rem; border: 1px solid var(--accent); background: rgba(200,169,110,0.08); color: var(--fg); font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.9rem 1.1rem; cursor: pointer; transition: background 0.2s, color 0.2s; }
.private-gallery-download:hover { background: var(--accent); color: var(--bg); }
.private-gallery-download-message { width: min(520px, calc(100% - 2rem)); margin: 0 auto 1.2rem; text-align: center; }
.lightbox { position: fixed; inset: 0; z-index: 500; display: none; align-items: center; justify-content: center; padding: 8vh 15vw; background: rgba(5,5,5,0.92); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 84vh; width: auto; height: auto; object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,0.45); }
.lightbox-close { position: fixed; top: 1.4rem; right: 1.6rem; border: 0; background: transparent; color: var(--fg2); font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; }
.lightbox-close:hover { color: var(--fg); }
.lightbox-lock { overflow: hidden; }
.contact { padding: 5rem 2.5rem 4rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; }
.contact-cta { font-family: var(--serif); font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 400; line-height: 1.1; color: var(--fg); }
.contact-cta em { color: var(--accent); font-style: italic; }
.contact-right { text-align: right; }
.contact-email { display: block; color: var(--fg2); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: color 0.2s; margin-top: 0.8rem; }
.contact-email:hover { color: var(--accent); }
.contact-social { display: flex; gap: 1.5rem; margin-top: 1rem; justify-content: flex-end; }
.contact-social a { color: var(--fg2); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; transition: color 0.2s; }
.contact-social a:hover { color: var(--fg); }
footer { padding: 1.5rem 2.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; color: var(--fg2); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
body::before { content:''; position:fixed; inset:0; opacity:0.025; pointer-events:none; z-index:200; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size:200px 200px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) {
  .nav-links { gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
  .nav-links a { font-size: 10px; }
  nav { padding: 1.2rem 1.5rem; align-items: flex-start; }
  .hero { min-height: 92vh; padding: 8rem 1.5rem 3rem; }
  .hero.compact { min-height: 70vh; }
  .hero-title { font-size: clamp(3.4rem, 18vw, 6rem); margin-bottom: 2rem; }
  .hero-meta { align-items: flex-start; flex-wrap: wrap; gap: 1.3rem; }
  .hero-scroll { margin-left: 0; width: 100%; }
  .section-header { display: block; padding: 4rem 1.5rem 2rem; }
  .section-count { display: block; margin-top: 1rem; }
  .photo-grid { columns: 2 140px; column-gap: 8px; padding: 0 1.2rem 4rem; }
  .photo-grid[data-gallery-layout="single"] { columns: 1; max-width: none; }
  .photo-item { grid-column: auto !important; grid-row: auto !important; margin-bottom: 8px; }
  .design-grid { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 1.2rem 4rem; }
  .video-grid { gap: 8px; padding: 0 1.2rem 4rem; }
  .video-grid .film-card[data-video-shape="portrait"] { width: calc(50vw - 1.6rem); }
  .video-grid .film-card[data-video-shape="landscape"] { width: calc(100vw - 2.4rem); }
  .video-grid[data-gallery-layout="single"] { max-width: none; }
  .video-grid[data-gallery-layout="single"] .film-stage .plyr video { max-height: min(68vh, 620px); }
  .about, .split-section { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; }
  .about-right { padding-top: 0; }
  .sound-section { padding: 4rem 1.5rem; }
  .landing-lanes { grid-template-columns: 1fr; padding: 1.2rem; }
  .lane-card { min-height: 42vh; }
  .shoot-list { grid-template-columns: 1fr; padding: 0 1.2rem 4rem; }
  .gallery-toolbar { padding: 0 1.2rem 1rem; justify-content: flex-start; }
  .full-gallery { padding: 0 1.2rem 4rem; columns: 2 140px; column-gap: 8px; }
  .full-gallery[data-gallery-layout="single"] { columns: 1; max-width: none; }
  .gallery-image { margin-bottom: 8px; }
  .locked-gallery-shell { margin: 0 1.2rem 4rem; min-height: 380px; }
  .locked-gallery-preview { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 8px; }
  .locked-gallery-tile { min-height: 170px; }
  .private-gallery-form { margin-top: 2rem; padding: 1rem; }
  .private-gallery-controls { display: block; }
  .private-gallery-input, .private-gallery-button { width: 100%; }
  .private-gallery-button { margin-top: 8px; min-height: 42px; }
  .private-gallery-download, .private-gallery-download-message { width: calc(100% - 2.4rem); }
  .lightbox { padding: 8vh 7vw; }
  .lightbox img { max-height: 82vh; }
  .contact { flex-direction: column; align-items: flex-start; padding: 4rem 1.5rem; }
  .contact-right { text-align: left; }
  .contact-social { justify-content: flex-start; }
  footer { padding: 1.2rem 1.5rem; gap: 1rem; flex-wrap: wrap; }
}
