/* ============================================================
   @blondiegracie — Main Stylesheet
   Editorial · Cinematic · Intentional
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:wght@200;300;400&family=Sacramento&display=swap');

/* ---- Custom Properties ---- */
:root {
  /* Palette */
  --cream:       #F4EFE6;
  --cream-light: #FAF7F1;
  --cream-dark:  #EBE4D8;
  --parchment:   #E2D9C8;
  --charcoal:    #141210;
  --charcoal-mid:#1E1B17;
  --ink:         #2A2118;
  --ink-mid:     #4A3C2E;
  --ink-light:   #7A6A56;
  --gold:        #B8832A;
  --gold-light:  #D4A853;
  --gold-pale:   #EDD9A8;
  --olive:       #4D5C3F;
  --olive-soft:  #6B7B5E;
  --taupe:       #8E7E6B;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, 'Helvetica Neue', sans-serif;
  --font-script:  'Sacramento', cursive;

  /* Spacing rhythm */
  --section-pad: clamp(100px, 14vw, 180px);
  --content-max: 1160px;

  /* Motion */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --dur: 0.85s;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

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

/* ============================================================
   GRAIN OVERLAY
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out),
              height 0.35s var(--ease-out),
              border-color 0.2s,
              opacity 0.2s;
  opacity: 0.6;
}

body.cursor-hover .cursor-dot {
  width: 10px; height: 10px;
}
body.cursor-hover .cursor-ring {
  width: 64px; height: 64px;
  opacity: 0.35;
}
body.cursor-dark .cursor-dot { background: var(--cream); }
body.cursor-dark .cursor-ring { border-color: var(--cream); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: normal;
  transition: background 0.4s ease;
}

.site-header.scrolled {
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 40px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  transition: color 0.3s;
}

.header-on-dark .header-wordmark { color: var(--cream); }

.header-meta {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  z-index: 810;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: transform 0.45s var(--ease-in-out),
              opacity 0.3s ease,
              width 0.35s ease,
              background 0.3s;
}

.nav-toggle span:nth-child(1) { width: 28px; }
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle span:nth-child(3) { width: 24px; }

.header-on-dark .nav-toggle span { background: var(--cream); }

.nav-toggle.open span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); width: 24px; }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); width: 24px; }

/* Nav Panel */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 790;
  background: rgba(20, 18, 16, 0);
  pointer-events: none;
  transition: background 0.5s ease;
}
.nav-overlay.open {
  background: rgba(20, 18, 16, 0.55);
  pointer-events: all;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(440px, 100vw);
  height: 100vh;
  background: var(--charcoal);
  z-index: 800;
  transform: translateX(100%);
  transition: transform 0.65s var(--ease-in-out);
  display: flex;
  flex-direction: column;
  padding: 100px 56px 56px;
  overflow: hidden;
}

.nav-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.nav-panel.open { transform: translateX(0); }

.nav-eyebrow {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}
.nav-panel.open .nav-eyebrow { opacity: 1; }

.nav-links { flex: 1; }

.nav-links li {
  overflow: hidden;
  margin-bottom: 4px;
}

.nav-links a {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--cream);
  letter-spacing: 0.02em;
  padding: 10px 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s var(--ease-out),
              opacity 0.6s ease,
              color 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-panel.open .nav-links li:nth-child(1) a { transform: translateY(0); opacity: 1; transition-delay: 0.15s; }
.nav-panel.open .nav-links li:nth-child(2) a { transform: translateY(0); opacity: 1; transition-delay: 0.21s; }
.nav-panel.open .nav-links li:nth-child(3) a { transform: translateY(0); opacity: 1; transition-delay: 0.27s; }
.nav-panel.open .nav-links li:nth-child(4) a { transform: translateY(0); opacity: 1; transition-delay: 0.33s; }
.nav-panel.open .nav-links li:nth-child(5) a { transform: translateY(0); opacity: 1; transition-delay: 0.39s; }

.nav-footer {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  line-height: 2.4;
  opacity: 0;
  transition: opacity 0.4s ease 0.5s;
}
.nav-panel.open .nav-footer { opacity: 1; }

/* ============================================================
   POSTCARD MARQUEE
   ============================================================ */
.postcard-marquee {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 700;
  background: var(--cream-dark);
  border-top: 1px solid var(--parchment);
  padding: 5px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee-track span {
  font-family: var(--font-script);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  padding: 0 20px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   BACKGROUND WRITING + POSTCARD STAMPS
   ============================================================ */

/* Container that sits behind page content */
.bg-writing-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Individual script words written in background */
.bg-writing-word {
  position: absolute;
  font-family: var(--font-script);
  color: var(--gold);
  white-space: nowrap;
  animation: bgWriteIn 3.5s var(--ease-out) both;
}

@keyframes bgWriteIn {
  0%   { opacity: 0; clip-path: inset(0 100% 0 0); }
  30%  { opacity: 1; }
  100% { opacity: 1; clip-path: inset(0 0% 0 0); }
}

/* Faded postcard stamp */
.bg-stamp {
  position: absolute;
  pointer-events: none;
  opacity: 0.045;
  animation: bgStampFade 6s ease both;
}

@keyframes bgStampFade {
  from { opacity: 0; transform: scale(0.92) rotate(var(--rot, -3deg)); }
  to   { opacity: 0.045; transform: scale(1) rotate(var(--rot, -3deg)); }
}

/* Postmark circle */
.bg-postmark {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  opacity: 0.05;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bgStampFade 5s ease both;
}
.bg-postmark::before {
  content: '';
  position: absolute;
  width: 75%;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.5;
}
.bg-postmark-text {
  font-family: var(--font-body);
  font-size: 0.45rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.4;
}

/* ============================================================
   SCROLL REVEAL ENGINE
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.visible.from-left,
.reveal.visible.from-right { transform: translateX(0); }

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.45s; }
.reveal.d5 { transition-delay: 0.6s; }

/* ============================================================
   HERO — Full screen, cinematic
   ============================================================ */
.hero {
  height: 100svh;
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,rgba(20,18,16,0.25) 0%,rgba(20,18,16,0.15) 40%,rgba(20,18,16,0.65) 100%);
  pointer-events: none;
}

.hero-corner-meta {
  position: absolute;
  top: 100px;
  right: 40px;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
  line-height: 2;
  text-align: right;
}

.hero-vol {
  position: absolute;
  top: 100px;
  left: 40px;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
  opacity: 0;
  animation: fadeIn 1s 1.2s ease forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 80px;
  max-width: 860px;
}

.hero-line-1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  color: var(--cream-light);
  line-height: 1.0;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(40px);
  animation: heroText 1.1s 0.4s var(--ease-out) forwards;
  display: block;
}

.hero-line-2 {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 20px;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroText 0.9s 0.85s var(--ease-out) forwards;
  display: block;
}

.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(244, 239, 230, 0.65);
  letter-spacing: 0.02em;
  max-width: 520px;
  line-height: 1.65;
  opacity: 0;
  animation: heroText 0.9s 1.1s var(--ease-out) forwards;
  display: block;
}

.hero-scroll {
  position: absolute;
  bottom: 80px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 2s ease forwards;
}

.hero-scroll span {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(184, 131, 42, 0.8), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.05); }
}

@keyframes heroText {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   REAL. FELT. KEPT. — Word by word reveal
   ============================================================ */
.reel-words {
  background: var(--cream);
  padding: var(--section-pad) 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.reel-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  padding: 0 clamp(16px, 3vw, 48px);
}

.reel-photos-col {
  position: relative;
  height: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: 60px 0;
}

/* Background writing containers */
.reel-bg-write {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0.12;
  width: 38vw;
}
.reel-bg-write-l { left: 0; padding-left: 2vw; }
.reel-bg-write-r { right: 0; padding-right: 2vw; text-align: right; }

.reel-write-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.reel-write-stroke {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  transition: stroke-dashoffset 3.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reel-write-stroke.drawn { stroke-dashoffset: 0; }

/* Photo cards — polaroid style */
.reel-photo-card {
  position: absolute;
  background: #fff;
  padding: 9px 9px 32px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.14);
  width: clamp(120px, 15vw, 220px);
  transition: opacity 0.9s ease, transform 0.9s var(--ease-out);
}
.reel-photo-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

/* Left column positions */
.reel-photos-l .rpc-front {
  transform: translateX(-80px) rotate(-4deg);
  top: 50%; margin-top: -30%;
  z-index: 4;
  opacity: 0;
}
.reel-photos-l .rpc-back {
  transform: translateX(-60px) rotate(2.5deg);
  top: 50%; margin-top: 0;
  z-index: 3;
  opacity: 0;
}
/* Right column positions */
.reel-photos-r .rpc-front {
  transform: translateX(80px) rotate(4deg);
  top: 50%; margin-top: -30%;
  z-index: 4;
  opacity: 0;
}
.reel-photos-r .rpc-back {
  transform: translateX(60px) rotate(-2.5deg);
  top: 50%; margin-top: 0;
  z-index: 3;
  opacity: 0;
}

/* Animate in */
.reel-photos-l .rpc-front.reel-in {
  transform: translateX(-20px) rotate(-4deg);
  opacity: 1;
}
.reel-photos-l .rpc-back.reel-in {
  transform: translateX(20px) rotate(2.5deg);
  opacity: 1;
  transition-delay: 0.18s;
}
.reel-photos-r .rpc-front.reel-in {
  transform: translateX(20px) rotate(4deg);
  opacity: 1;
}
.reel-photos-r .rpc-back.reel-in {
  transform: translateX(-15px) rotate(-2.5deg);
  opacity: 1;
  transition-delay: 0.18s;
}

.reel-word {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(5rem, 12vw, 13rem);
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--cream-dark);
  transition: color 0.6s ease;
  cursor: default;
  -webkit-text-stroke: 1px var(--parchment);
  white-space: nowrap;
}
.reel-word.active, .reel-word.visible-word {
  color: var(--ink);
  -webkit-text-stroke: 0px;
}

.reel-divider {
  width: 1px;
  height: clamp(36px, 5vw, 70px);
  background: var(--parchment);
  margin: 14px 0;
}

@media (max-width: 900px) {
  .reel-words {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: var(--section-pad) 5vw;
  }
  .reel-photos-col, .reel-bg-write { display: none; }
  .reel-center { padding: 0; }
}

/* ============================================================
   VIDEO EMBED — Cinematic letterbox
   ============================================================ */
.video-section {
  background: var(--charcoal);
  padding: var(--section-pad) 5vw;
  position: relative;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.25;
}

.video-label {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  display: block;
}

.video-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 48px;
  letter-spacing: 0.01em;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.video-letterbox {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  background: #0A0906;
  overflow: hidden;
}

.video-letterbox::before,
.video-letterbox::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 7%;
  background: var(--charcoal);
  z-index: 2;
}
.video-letterbox::before { top: 0; }
.video-letterbox::after  { bottom: 0; }

.video-letterbox iframe,
.video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0A0906;
  gap: 20px;
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(184, 131, 42, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, transform 0.3s;
}

.video-placeholder:hover .video-play-btn {
  border-color: var(--gold);
  transform: scale(1.08);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
  margin-left: 4px;
}

.video-placeholder p {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.35);
}

.video-caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--taupe);
  text-align: center;
  margin-top: 20px;
}

/* ============================================================
   MOTION WORK — Portfolio Video Section
   ============================================================ */
.motion-section {
  background: var(--charcoal);
  padding: 100px 5vw 120px;
  position: relative;
}

.motion-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.motion-section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.motion-header {
  text-align: center;
  margin-bottom: 72px;
}

.motion-eyebrow {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.motion-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.motion-subhead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(244,239,230,0.45);
  line-height: 1.8;
}

.motion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
  margin-bottom: 72px;
}

.motion-card {
  background: var(--charcoal-mid);
  transition: transform 0.35s ease;
}

.motion-card:hover {
  transform: translateY(-4px);
}

.motion-video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  background: #0A0906;
  overflow: hidden;
}

.motion-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.motion-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #0A0906;
  cursor: default;
}

.motion-placeholder span {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.22);
}

.motion-play-ring {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(184,131,42,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.motion-play-ring svg {
  width: 20px;
  height: 20px;
  fill: rgba(184,131,42,0.35);
  margin-left: 3px;
  transition: fill 0.3s;
}

.motion-card:hover .motion-play-ring {
  border-color: var(--gold);
}

.motion-card:hover .motion-play-ring svg {
  fill: var(--gold);
}

.motion-card-body {
  padding: 28px 30px 32px;
}

.motion-card-tag {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.motion-card-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.45rem;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.motion-card-desc {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(244,239,230,0.55);
  line-height: 1.85;
  margin-bottom: 18px;
}

.motion-card-meta {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.25);
}

.motion-cta {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.motion-cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  color: rgba(244,239,230,0.5);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .motion-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .motion-section {
    padding: 72px 5vw 80px;
  }
}

/* ============================================================
   CHAPTER SECTIONS
   ============================================================ */
.chapter {
  padding: var(--section-pad) 5vw;
  position: relative;
}

.chapter-light  { background: var(--cream); }
.chapter-cream  { background: var(--cream-light); }
.chapter-dark   { background: var(--charcoal-mid); }
.chapter-darker { background: var(--charcoal); }

.chapter-num {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.75rem, 1.3vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.chapter-num::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.chapter-dark  .chapter-num,
.chapter-darker .chapter-num { color: var(--gold-light); }

.chapter-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.chapter-dark   .chapter-heading,
.chapter-darker .chapter-heading { color: var(--cream); }

.chapter-body {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink-mid);
  line-height: 1.8;
  max-width: 640px;
}

.chapter-dark  .chapter-body,
.chapter-darker .chapter-body { color: rgba(244, 239, 230, 0.65); }

.chapter-body strong {
  font-style: normal;
  font-weight: 400;
  color: var(--ink);
}
.chapter-dark  .chapter-body strong,
.chapter-darker .chapter-body strong { color: var(--cream); }

.chapter-body em {
  color: var(--gold);
  font-style: italic;
}

/* Two-column chapter layout */
.chapter-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}

.chapter-split.flip { direction: rtl; }
.chapter-split.flip > * { direction: ltr; }

.chapter-img {
  position: relative;
  overflow: hidden;
}

.chapter-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.chapter-img:hover img { transform: scale(1.04); }

.chapter-img-tall { aspect-ratio: 3/4; }
.chapter-img-wide { aspect-ratio: 4/3; }
.chapter-img-square { aspect-ratio: 1; }

/* Divider line */
.rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
  opacity: 0.6;
}
.chapter-dark .rule,
.chapter-darker .rule { background: rgba(184, 131, 42, 0.5); }

/* ============================================================
   WHO THIS IS FOR — Four client types
   ============================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--parchment);
}

.client-card {
  background: var(--cream-light);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.client-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.5s var(--ease-out);
}

.client-card:hover { background: var(--cream); }
.client-card:hover::before { height: 100%; }

.client-card-num {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.client-card-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 14px;
}

.client-card-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.client-card-body {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.85;
  margin-bottom: 24px;
}

.client-card-media {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ============================================================
   PHOTO EDITORIAL GRID
   ============================================================ */
.editorial-grid {
  display: grid;
  gap: 3px;
}

.editorial-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.editorial-grid-2 { grid-template-columns: 2fr 1fr; }
.editorial-grid-asym { grid-template-columns: 1fr 1.6fr 1fr; }

.editorial-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.editorial-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.editorial-item:hover img { transform: scale(1.04); }

.editorial-item-tall  { aspect-ratio: 3/4; }
.editorial-item-wide  { aspect-ratio: 16/9; }
.editorial-item-sq    { aspect-ratio: 1; }
.editorial-item-short { aspect-ratio: 4/3; }

/* ============================================================
   PORTFOLIO GRID (portfolio page)
   ============================================================ */
.portfolio-masonry {
  columns: 3 280px;
  column-gap: 4px;
  padding: 0 0 140px;
}

.portfolio-masonry-item {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.portfolio-masonry-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-masonry-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.65s var(--ease-out);
}

.portfolio-masonry-item:hover img { transform: scale(1.03); }

.portfolio-masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,16,0.4), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-masonry-item:hover .portfolio-masonry-item-overlay { opacity: 1; }

/* ============================================================
   PORTFOLIO PAGE HERO
   ============================================================ */
.portfolio-hero {
  height: 60vh;
  min-height: 440px;
  background: var(--charcoal);
  display: flex;
  align-items: flex-end;
  padding: 0 5vw 72px;
  position: relative;
  overflow: hidden;
}

.portfolio-hero-bg {
  position: absolute;
  inset: 0;
}
.portfolio-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.portfolio-hero-content {
  position: relative;
  z-index: 2;
}

/* Portfolio filter bar */
.filter-bar {
  display: flex;
  gap: 0;
  padding: 0 5vw;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--parchment);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar { display: none; }

.filter-btn {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  padding: 20px 24px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s;
}

.filter-btn:hover { color: var(--ink); }
.filter-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ============================================================
   POSTCARD SECTION (home bottom)
   ============================================================ */
.postcard-section {
  padding: var(--section-pad) 5vw;
  background: var(--cream-light);
  display: flex;
  justify-content: center;
}

.postcard {
  width: min(840px, 100%);
  background: #FAF7EE;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 1px solid var(--parchment);
  box-shadow: 8px 16px 60px rgba(44, 33, 24, 0.12),
              2px 4px 16px rgba(44, 33, 24, 0.08);
  position: relative;
  overflow: hidden;
}

/* Paper grain on postcard */
.postcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.postcard-left {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid var(--parchment);
  position: relative;
  z-index: 2;
}

.postcard-label {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.postcard-greeting {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1.2;
}

.postcard-body {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.9;
  flex: 1;
}

.postcard-sig {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--ink);
  line-height: 1;
}

.postcard-cta-link {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s, color 0.3s;
}

.postcard-cta-link::after {
  content: '→';
  transition: transform 0.3s;
}

.postcard-cta-link:hover { color: var(--ink); }
.postcard-cta-link:hover::after { transform: translateX(4px); }

.postcard-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.postcard-photo-fill {
  flex: 1;
  overflow: hidden;
  min-height: 280px;
}

.postcard-photo-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.postcard:hover .postcard-photo-fill img { transform: scale(1.04); }

.postcard-stamp-row {
  padding: 14px 18px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid var(--parchment);
  gap: 8px;
}

.postcard-stamp-row svg {
  height: 48px;
  width: auto;
  opacity: 0.7;
}

/* ============================================================
   SVG LETTER ANIMATION
   ============================================================ */
.letter-section {
  background: var(--charcoal);
  padding: var(--section-pad) 5vw;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.letter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0.2;
}

.letter-label {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.letter-label.visible { opacity: 1; transform: translateY(0); }

.letter-svg-wrap {
  width: 100%;
  max-width: 900px;
}

.letter-svg-wrap svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Each text line in the SVG */
.letter-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}

.letter-line-stroke {
  fill: none;
  stroke: var(--gold-light, #D4A853);
  stroke-width: 0.6;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  transition: stroke-dashoffset 2.2s ease;
}

.letter-line-fill {
  fill: rgba(244, 239, 230, 0.85);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.letter-line-group.drawn .letter-line-stroke {
  stroke-dashoffset: 0;
}

.letter-line-group.drawn .letter-line-fill {
  opacity: 1;
  transition-delay: 1.8s;
}

/* Cursor dot */
.letter-cursor {
  fill: var(--gold);
  opacity: 0;
  animation: cursorBlink 0.6s ease-in-out infinite;
}

.letter-cursor.writing { opacity: 1; }

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--cream);
  padding: var(--section-pad) 5vw;
  text-align: center;
  position: relative;
}

.cta-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 6rem);
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.cta-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--ink-mid);
  margin-bottom: 48px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 16px 40px;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.btn:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-gold {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--cream);
}

.btn-light {
  border-color: rgba(244, 239, 230, 0.5);
  color: var(--cream);
}
.btn-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}
.chapter-darker .btn-outline,
.chapter-dark .btn-outline {
  color: var(--cream);
  border-color: var(--cream);
}
.chapter-darker .btn-outline:hover,
.chapter-dark .btn-outline:hover {
  background: var(--cream);
  color: var(--ink);
}

.ch2-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ch2-text {
  text-align: right;
}
.ch2-text .chapter-num {
  justify-content: flex-end;
}
.ch2-text .chapter-num::before { display: none; }
.ch2-text .chapter-num::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .ch2-layout { grid-template-columns: 1fr; }
  .ch2-text { text-align: left; }
  .ch2-text .chapter-num { justify-content: flex-start; }
  .ch2-text .chapter-num::before { display: inline-block; }
  .ch2-text .chapter-num::after { display: none; }
}

/* ============================================================
   FILM PAGE SECTION
   ============================================================ */
.film-hero-section {
  background: var(--charcoal);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-pad) 5vw;
  position: relative;
  overflow: hidden;
}

.film-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(10rem, 20vw, 22rem);
  color: rgba(244, 239, 230, 0.025);
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   LETS CREATE PAGE
   ============================================================ */
.create-hero {
  min-height: 55vh;
  background: var(--charcoal);
  display: flex;
  align-items: flex-end;
  padding: 140px 5vw 72px;
  position: relative;
}

.services-layout {
  padding: var(--section-pad) 5vw;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}

.service-list-section { }

.service-list-label {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: block;
}

.service-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--parchment);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  transition: padding-left 0.3s ease;
}

.service-item:first-of-type { border-top: 1px solid var(--parchment); }
.service-item:hover { padding-left: 8px; }

.service-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--ink);
}

.service-tag {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Contact Form */
.form-section-label {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: block;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 10px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--parchment);
  padding: 10px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-bottom-color: var(--gold); }

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--parchment); font-style: italic; }

.form-field textarea { resize: none; height: 90px; line-height: 1.7; }

.form-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.form-success-msg {
  display: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}

.form-error-msg {
  display: none;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8B2020;
  margin-top: 8px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(14, 12, 10, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 28px; right: 36px;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
  cursor: none;
  transition: color 0.3s;
}
.lightbox-close:hover { color: var(--cream); }

.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.4);
  cursor: none;
  padding: 20px;
  transition: color 0.3s;
}
.lightbox-nav:hover { color: var(--cream); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   MY STORY PAGE
   ============================================================ */
.story-hero {
  height: 75vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.story-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.story-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--cream) 100%);
}

.story-hero-caption {
  position: absolute;
  bottom: 52px; left: 5vw;
  z-index: 2;
}

.story-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 5vw 140px;
}

.story-content p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--ink-mid);
  line-height: 1.95;
  margin-bottom: 28px;
}

.drop-cap::first-letter {
  font-size: 4.5rem;
  line-height: 0.72;
  float: left;
  margin-right: 6px;
  margin-top: 8px;
  color: var(--gold);
  font-style: normal;
  font-weight: 300;
}

/* ============================================================
   FIELD NOTES
   ============================================================ */
.notes-hero {
  background: var(--charcoal);
  padding: 160px 5vw 72px;
}

.notes-grid {
  padding: 60px 5vw 140px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 56px;
}

.note-card { }

.note-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 24px;
}

.note-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.note-card:hover .note-card-img img { transform: scale(1.04); }

.note-card-meta {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.note-card-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.note-card-excerpt {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.text-link {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s, color 0.3s;
}

.text-link::after { content: '→'; }
.text-link:hover { color: var(--ink); }
.text-link:hover::after { /* arrow moves via gap */ }

/* ============================================================
   UTILITIES
   ============================================================ */
.no-scroll   { overflow: hidden; }
.text-gold   { color: var(--gold); }
.text-cream  { color: var(--cream); }
.text-center { text-align: center; }
.italic      { font-style: italic; }

.max-w-sm  { max-width: 480px; }
.max-w-md  { max-width: 640px; }
.max-w-lg  { max-width: 900px; }
.mx-auto   { margin-left: auto; margin-right: auto; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .chapter-split { grid-template-columns: 1fr; gap: 40px; }
  .chapter-split.flip { direction: ltr; }
  .clients-grid { grid-template-columns: 1fr; }
  .services-layout { grid-template-columns: 1fr; gap: 56px; }
  .postcard { grid-template-columns: 1fr; }
  .postcard-right { min-height: 320px; }
}

@media (max-width: 600px) {
  :root { --section-pad: clamp(80px, 16vw, 120px); }
  .site-header { padding: 20px 24px; }
  .hero-content { padding: 0 24px 64px; }
  .portfolio-masonry { columns: 2 160px; }
}
