:root {
  --ink: #181614;
  --paper: #ffffff;
  --stone: #b7a99a;
  --hairline: #e8e5e1;
  --gutter: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
}

.wordmark {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  font-size: 0.92rem;
}

.nav a {
  position: relative;
  padding-bottom: 2px;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--stone);
  transition: right 0.25s ease;
}

.nav a:hover::after {
  right: 0;
}

/* ---------- Gallery (masonry via CSS columns) ---------- */

.gallery {
  column-count: 1;
  column-gap: var(--gutter);
  padding: var(--gutter) clamp(20px, 4vw, 56px) 0;
}

@media (min-width: 640px) {
  .gallery { column-count: 2; }
}

@media (min-width: 1080px) {
  .gallery { column-count: 3; }
}

.gallery-item {
  margin: 0 0 var(--gutter);
  break-inside: avoid;
  cursor: zoom-in;
}

.gallery-item img,
.gallery-item video {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Reel ---------- */

.reel {
  max-width: 900px;
  margin: 0 auto;
  padding: 88px clamp(20px, 4vw, 56px) 0;
}

.reel h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 18px;
}

.reel-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #f2f0ec;
}

.reel-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- About / Contact ---------- */

.about,
.contact {
  max-width: 620px;
  margin: 0 auto;
  padding: 88px clamp(20px, 4vw, 56px) 0;
}

.contact {
  padding-bottom: 88px;
}

.about h2,
.contact h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 18px;
}

.about p,
.contact p {
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 62ch;
}

.contact a {
  border-bottom: 1px solid var(--stone);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 22px clamp(20px, 4vw, 56px) 32px;
  font-size: 0.82rem;
  color: #6f6a64;
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(24, 22, 20, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  z-index: 100;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: clamp(20px, 4vw, 40px);
  background: none;
  border: none;
  color: var(--paper);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
}

/* ---------- Motion & accessibility ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav a::after { transition: none; }
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--stone);
  outline-offset: 3px;
}
