:root {
  --ink: #11110f;
  --paper: #f2efe7;
  --paper-deep: #e6dfd0;
  --yellow: #f5b800;
  --yellow-bright: #ffca18;
  --muted: #706d65;
  --line: rgba(17, 17, 15, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; width: 100%; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  color: white;
  background: linear-gradient(to bottom, rgba(8,8,7,.88), transparent);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
  transform: rotate(-6deg);
}
.brand > span:last-child { display: flex; flex-direction: column; line-height: .95; }
.brand strong { font-size: 14px; letter-spacing: .08em; }
.brand small { margin-top: 5px; color: var(--yellow); font-size: 10px; letter-spacing: .28em; }
nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 700; }
nav a { transition: color .2s; }
nav a:hover { color: var(--yellow); }
.nav-cta { padding: 11px 17px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 790px;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
  background: #12110e;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-banner.jpg");
  background-size: clamp(1200px, 75vw, 2600px) auto;
  background-position: right center;
  background-repeat: no-repeat;
  filter: saturate(.86) contrast(1.06);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,9,8,.97) 0%, rgba(9,9,8,.84) 34%, rgba(9,9,8,.25) 70%, rgba(9,9,8,.12)),
    linear-gradient(0deg, rgba(9,9,8,.85), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 88vw);
  margin-left: max(5vw, calc((100vw - 1320px) / 2));
  padding-top: 70px;
}
.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow span { width: 32px; height: 2px; background: var(--yellow); }
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.3vw, 102px);
  line-height: .93;
  letter-spacing: -.055em;
}
.hero h1 em, .contact h2 em { color: var(--yellow); font-weight: 400; }
.hero-copy {
  max-width: 560px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
}
.button.primary { color: #111; border-color: var(--yellow); background: var(--yellow); }
.button:hover { transform: translateY(-2px); }
.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  right: 5vw;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-cue i { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-style: normal; }

.manifesto {
  padding: 120px max(6vw, calc((100vw - 1180px) / 2));
  text-align: center;
}
.manifesto .section-kicker { justify-content: center; }
.manifesto blockquote {
  max-width: 1040px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.3vw, 68px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.manifesto blockquote em { color: #b57d00; }
.manifesto > p:last-child {
  max-width: 680px;
  margin: 36px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.stories, .projects { padding: 110px 6vw; background: #fffdf8; }
.section-heading {
  max-width: 1280px;
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.section-heading .section-kicker { margin-bottom: 14px; }
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 4.3vw, 68px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 500;
}
.section-heading > a, .text-link {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.story-grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 22px;
}
.feature-card { grid-row: span 2; background: var(--paper); }
.feature-art {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.45)),
    url("images/hero-banner.jpg") center/cover;
}
.play {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  padding-left: 5px;
  border: 1px solid white;
  border-radius: 50%;
  color: white;
}
.tag {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 8px 12px;
  background: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.card-copy { padding: 26px 28px 30px; }
.card-copy p, .small-card p, .project div > p:first-child {
  margin: 0 0 10px;
  color: #9c7200;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.card-copy h3, .small-card h3 {
  margin: 0 0 17px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}
.card-copy > span { color: var(--muted); font-size: 12px; }
.small-card { display: grid; grid-template-columns: 43% 1fr; min-height: 250px; background: var(--paper); }
.small-card > div:last-child { padding: 28px 25px; display: flex; flex-direction: column; justify-content: center; }
.small-art { position: relative; overflow: hidden; display: grid; align-items: end; padding: 14px; color: white; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.camera-art { background: radial-gradient(circle at 55% 45%, #526373 0 10%, #1a2229 11% 22%, #050606 23% 100%); }
.camera-art::before { content: ""; position: absolute; width: 54%; height: 40%; left: 23%; top: 28%; border: 4px solid #70777a; border-radius: 10px; }
.memory-art { background: linear-gradient(145deg, #ba8d58, #4f3428 50%, #191513); }
.memory-art::before { content: ""; position: absolute; width: 60%; height: 65%; right: 4%; top: 8%; border: 7px solid #d7b17c; transform: rotate(8deg); background: rgba(255,240,200,.17); }
.small-card a { margin-top: auto; font-size: 12px; font-weight: 800; }

.photo-section {
  padding: 120px 6vw;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
}
.photo-intro { align-self: center; padding-left: max(0px, calc((100vw - 1320px) / 2)); }
.photo-intro > p:not(.section-kicker) { max-width: 470px; margin: 30px 0; color: var(--muted); line-height: 1.8; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 10px; }
.photo { margin: 0; overflow: hidden; background: #ddd; }
.photo img { height: 100%; object-fit: cover; transition: transform .5s; }
.photo:hover img { transform: scale(1.04); }
.photo-1 { grid-row: span 2; }
.photo-4 { grid-column: span 2; }
.photo-6 { display: none; }

.gear {
  min-height: 730px;
  padding: 100px max(6vw, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #11110f;
}
.light { color: var(--yellow); }
.gear-copy { max-width: 560px; }
.gear-copy > p:not(.section-kicker) { margin: 30px 0; color: #aaa79d; line-height: 1.8; }
.gear-points { display: flex; gap: 26px; flex-wrap: wrap; }
.gear-points span { font-size: 11px; font-weight: 800; text-transform: uppercase; }
.gear-points i { margin-right: 7px; color: var(--yellow); font-style: normal; }
.gear-visual { position: relative; min-height: 530px; display: grid; place-items: center; }
.lens { width: 390px; height: 390px; padding: 32px; border-radius: 50%; background: radial-gradient(circle, #222 0 48%, #0a0a0a 49% 65%, #383838 66% 69%, #111 70%); box-shadow: 0 35px 90px #000; }
.lens-ring { height: 100%; padding: 26px; border-radius: 50%; border: 2px dashed #5b5b58; }
.lens-glass { height: 100%; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #816b28, #172d31 25%, #071013 65%); box-shadow: inset 0 0 40px #000; }
.lens-glass span { color: rgba(255,255,255,.8); text-align: center; font-weight: 900; letter-spacing: .18em; line-height: 1.4; }
.orbit { position: absolute; padding: 8px 12px; color: var(--yellow); border: 1px solid #5f501d; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.orbit-one { top: 16%; right: 0; }
.orbit-two { bottom: 17%; left: 0; }

.projects { background: var(--paper); }
.project-grid { max-width: 1280px; margin: auto; display: grid; grid-template-columns: 1.35fr 1fr; gap: 20px; }
.project { position: relative; min-height: 520px; padding: 35px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; color: white; }
.project > span { position: relative; z-index: 2; font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.project > div { position: relative; z-index: 2; max-width: 530px; }
.project h3 { margin: 0 0 18px; font-family: Georgia, serif; font-size: clamp(38px, 4vw, 60px); line-height: .97; font-weight: 500; }
.project div > p:not(:first-child) { max-width: 490px; color: rgba(255,255,255,.7); line-height: 1.7; }
.project a { display: inline-block; margin-top: 16px; padding-bottom: 6px; border-bottom: 1px solid white; font-size: 12px; font-weight: 800; }
.multiverse { background: radial-gradient(circle at 75% 20%, #715994, transparent 25%), radial-gradient(circle at 85% 36%, #e2aa43, transparent 7%), linear-gradient(145deg, #070712, #181832 55%, #4c2648); }
.multiverse::after { content: ""; position: absolute; width: 450px; height: 450px; right: -130px; top: -100px; border: 2px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 32px rgba(255,255,255,.03), 0 0 0 74px rgba(255,255,255,.025); }
.music { background: linear-gradient(150deg, rgba(12,12,12,.25), rgba(12,12,12,.9)), url("images/hero-banner.jpg") center/cover; }

.about { padding: 120px max(6vw, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; background: #fffdf8; }
.about-portrait { position: relative; }
.about-portrait img { height: 610px; object-fit: cover; object-position: center top; filter: saturate(.75); }
.about-portrait span { position: absolute; right: -28px; bottom: 35px; padding: 18px 22px; color: #111; background: var(--yellow); font-family: Georgia, serif; font-size: 20px; font-style: italic; }
.about-copy > p:not(.section-kicker) { color: var(--muted); font-size: 16px; line-height: 1.8; }
.about-copy h2 { margin-bottom: 32px; }
.signature { margin-top: 30px; font-family: "Brush Script MT", cursive; font-size: 35px; transform: rotate(-4deg); }

.contact { padding: 120px 6vw 70px; color: white; text-align: center; background: #11110f; }
.contact .section-kicker { justify-content: center; }
.contact > p:not(.section-kicker) { color: #aaa79d; margin: 25px auto 45px; }
.contact-mail { display: inline-flex; gap: 35px; padding: 0 0 10px; color: var(--yellow); border-bottom: 1px solid var(--yellow); font-family: Georgia, serif; font-size: clamp(22px, 3.3vw, 44px); }
.contact-details { max-width: 900px; margin: 70px auto 0; padding-top: 30px; border-top: 1px solid #333; display: flex; align-items: center; justify-content: space-between; color: #aaa79d; font-size: 13px; line-height: 1.6; }

footer { padding: 60px 6vw 30px; color: white; background: #0b0b0a; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 30px; border-top: 1px solid #252522; }
footer > p { color: #77756f; text-align: center; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
footer > div { display: flex; justify-content: flex-end; gap: 18px; }
footer button, footer a:not(.brand) { padding: 0; color: #aaa79d; border: 0; background: none; cursor: pointer; font-size: 11px; }
footer > small { grid-column: 1 / -1; color: #55544f; font-size: 10px; text-align: center; }

.cookie-banner {
  position: fixed;
  z-index: 100;
  left: 22px;
  right: 22px;
  bottom: 20px;
  max-width: 900px;
  margin: auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: white;
  border: 1px solid #34332f;
  border-left: 4px solid var(--yellow);
  background: #151513;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { font-family: Georgia, serif; font-size: 18px; }
.cookie-banner p { margin: 7px 0 0; color: #aaa79d; font-size: 12px; line-height: 1.5; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-actions button { padding: 11px 14px; border: 1px solid #555; color: white; background: transparent; cursor: pointer; font-size: 11px; font-weight: 800; }
.cookie-actions .cookie-primary { color: #111; border-color: var(--yellow); background: var(--yellow); }

@media (min-aspect-ratio: 11 / 5) and (min-width: 1200px) {
  .hero { min-height: 520px; }
  .hero-image {
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 900px) {
  .site-header { height: 72px; padding: 0 20px; background: rgba(10,10,9,.92); }
  .menu-toggle { z-index: 2; display: grid; gap: 6px; width: 42px; height: 42px; place-content: center; border: 0; background: transparent; }
  .menu-toggle span { display: block; width: 22px; height: 2px; background: white; }
  nav { position: fixed; inset: 0; padding: 110px 35px; flex-direction: column; align-items: flex-start; gap: 28px; background: #11110f; transform: translateX(100%); transition: transform .3s; font-size: 24px; }
  nav.open { transform: translateX(0); }
  .nav-cta { padding: 0; border: 0; color: var(--yellow); }
  .hero { min-height: 740px; }
  .hero-image { background-size: auto 72%; background-position: 68% center; opacity: .65; }
  .hero-overlay { background: linear-gradient(90deg, rgba(9,9,8,.96), rgba(9,9,8,.35)), linear-gradient(0deg, #090908, transparent 60%); }
  .hero-content { margin: auto 22px; }
  .hero h1 { font-size: clamp(52px, 15vw, 76px); }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 300px; }
  .scroll-cue { display: none; }
  .manifesto, .stories, .photo-section, .projects, .about, .contact { padding: 85px 22px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 25px; }
  .story-grid, .project-grid { grid-template-columns: 1fr; }
  .feature-card { grid-row: auto; }
  .feature-art { min-height: 330px; }
  .small-card { grid-template-columns: 38% 1fr; }
  .photo-section { grid-template-columns: 1fr; gap: 45px; }
  .photo-grid { grid-auto-rows: 145px; }
  .gear { padding: 85px 22px; grid-template-columns: 1fr; }
  .gear-visual { min-height: 430px; }
  .lens { width: min(340px, 88vw); height: min(340px, 88vw); }
  .orbit-one { right: 3%; }
  .orbit-two { left: 3%; }
  .about { grid-template-columns: 1fr; gap: 60px; }
  .about-portrait { max-width: 500px; }
  .about-portrait img { height: 520px; }
  .about-portrait span { right: -6px; }
  .contact-details { flex-direction: column; gap: 25px; }
  footer { grid-template-columns: 1fr; justify-items: center; }
  footer > p { text-align: center; }
  footer > div { justify-content: center; }
  footer > small { grid-column: auto; }
  .cookie-banner { align-items: stretch; flex-direction: column; gap: 18px; }
  .cookie-actions { flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .brand strong { font-size: 11px; }
  .hero-copy { font-size: 15px; }
  .manifesto blockquote { font-size: 36px; }
  .small-card { grid-template-columns: 1fr; }
  .small-art { min-height: 190px; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-4 { grid-column: auto; }
  .photo-6 { display: block; }
  .project { min-height: 470px; padding: 26px; }
  .about-portrait img { height: 450px; }
  .contact-mail { gap: 12px; font-size: 19px; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
  .cookie-actions button { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}
