/* ---------- Tokens ---------- */
:root {
  --bg: #000000;
  --bg-soft: #0a0a0a;
  --bg-card: #111111;
  --fg: #f1ece5;
  --fg-muted: #8a847a;
  --line: #1f1d1a;
  --accent: #b6121a; /* deep blood red, used sparingly */
  --accent-soft: rgba(182, 18, 26, 0.15);

  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-script: "Pinyon Script", "Snell Roundhand", cursive;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0 0 .4em;
  line-height: 1.1;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* Subtle grain overlay for editorial feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Brand wordmark ---------- */
.brand-oh {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.brand-script {
  font-family: var(--font-script);
  margin-left: 0.35em;
  position: relative;
  top: 0.05em;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.brand {
  font-size: 1.35rem;
  display: inline-flex;
  align-items: baseline;
}
.site-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.site-nav a {
  position: relative;
  padding: 0.25rem 0;
  transition: color .2s;
}
.site-nav a:hover { color: var(--accent); }

@media (max-width: 600px) {
  .site-nav { gap: 1.1rem; font-size: 0.7rem; letter-spacing: 0.14em; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem var(--gutter) 4rem;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0.65) 85%),
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 30%, transparent 70%, var(--bg) 100%),
    url("images/hero-bg.jpg") center / cover no-repeat,
    var(--bg);
}
.hero-inner { position: relative; z-index: 1; }
.hero-inner {
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(3.5rem, 13vw, 9rem);
  line-height: 1;
  margin: 0 0 1.5rem;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
}
.hero-oh {
  letter-spacing: 0.01em;
}
.hero-script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 0.7em;
  margin-left: 0.25em;
  color: var(--fg);
  position: relative;
  top: 0.08em;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3.2vw, 1.85rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}
.hero-sub {
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}
.cta {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  border: 1px solid var(--fg);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.cta:hover {
  background: var(--fg);
  color: var(--bg);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fg-muted);
  writing-mode: vertical-rl;
  opacity: 0.5;
}

/* ---------- Generic section ---------- */
.section {
  padding: clamp(5rem, 12vw, 9rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section-head {
  max-width: 720px;
  margin-bottom: 4rem;
}
.section-head--centred {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.kicker {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-head h2,
.about-copy h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}
.section-lede {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 56ch;
}
.section-head--centred .section-lede { margin: 0 auto; }

/* ---------- Work / Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
@media (max-width: 640px) {
  .gallery { grid-template-columns: 1fr; }
}
.gallery-item {
  margin: 0;
  position: relative;
}
.gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 4 / 5;
  position: relative;
}
.gallery-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1), filter .4s;
  filter: brightness(0.92);
}
.gallery-trigger:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
.gallery-trigger::after {
  content: "View";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 0.45rem 0.9rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s, transform .25s;
}
.gallery-trigger:hover::after,
.gallery-trigger:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item figcaption {
  margin-top: 0.85rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.gallery-more {
  margin-top: 3rem;
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.95rem;
}
.gallery-more a {
  color: var(--fg);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.gallery-more a:hover { color: var(--accent); }

/* ---------- Scene break ---------- */
.scene-break {
  position: relative;
  width: 100%;
  height: clamp(280px, 50vw, 620px);
  overflow: hidden;
  z-index: 2;
}
.scene-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scene-break::before,
.scene-break::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 35%;
  pointer-events: none;
}
.scene-break::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
}
.scene-break::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}

/* ---------- About ---------- */
.about {
  border-top: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-copy p {
  color: var(--fg);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.specialities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.specialities li {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border: 1px solid var(--line);
  color: var(--fg);
  background: var(--bg-card);
}

/* ---------- Book / Contact ---------- */
.book {
  border-top: 1px solid var(--line);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.4rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: border-color .25s, transform .25s, background .25s;
}
.contact-card:hover {
  border-color: var(--accent);
  background: #131011;
  transform: translateY(-3px);
}
.contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.contact-value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--fg);
  word-break: break-word;
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 4rem var(--gutter) 3rem;
  border-top: 1px solid var(--line);
  color: var(--fg-muted);
  font-size: 0.85rem;
  position: relative;
  z-index: 2;
}
.footer-brand {
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.footer-meta {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 1.5rem;
}
.footer-copy {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ---------- Lightbox ---------- */
.lightbox {
  width: 92vw;
  max-width: 1100px;
  max-height: 92vh;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--fg);
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
}
.lightbox figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox figcaption {
  margin-top: 1.2rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--fg);
  font-size: 1rem;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--fg);
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  transition: background .2s, transform .2s;
}
.lightbox-close:hover { background: var(--accent); transform: rotate(90deg); }

/* ---------- Motion reduce ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
