/* ============================================================
   @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; }

/* ============================================================
   FILM GRAIN OVERLAY — subtle texture
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* ============================================================
   SCROLL PROGRESS — right side vertical line
   ============================================================ */
.scroll-progress-bar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100px;
  background: rgba(184,131,42,0.15);
  z-index: 500;
}
.scroll-progress-fill {
  width: 100%;
  background: var(--gold);
  height: 0%;
  transition: height 0.1s linear;
}

/* ============================================================
   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;
}

/* Always show bars — force visible on light pages */
.site-header:not(.header-on-dark):not(.scrolled) .nav-toggle span {
  background: var(--ink);
}

.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%); }
}

/* ============================================================
   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; }

/* ============================================================
   THREE-STRIP HERO
   ============================================================ */
.hero-strips {
  height: 100svh;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.strip {
  position: relative;
  overflow: hidden;
}

.strip-img {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1.8s ease;
  animation: stripDrift 24s ease-in-out infinite;
  will-change: transform;
}
.strip:nth-child(2) .strip-img { animation-duration: 20s; animation-delay: -6s; }
.strip:nth-child(3) .strip-img { animation-duration: 28s; animation-delay: -12s; }

.strip-img.is-active { opacity: 1; }

@keyframes stripDrift {
  0%, 100% { transform: translateY(0) scale(1.04); }
  50%       { transform: translateY(-5%) scale(1.04); }
}

/* Vignette — darkens edges */
.strip-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(14,12,10,0.7) 100%);
  z-index: 3;
  pointer-events: none;
}

/* Darken center strip slightly less so text is readable */
.strip-center-darken {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(14,12,10,0.3) 0%,
    rgba(14,12,10,0.1) 35%,
    rgba(14,12,10,0.55) 75%,
    rgba(14,12,10,0.85) 100%
  );
  z-index: 4;
  pointer-events: none;
}

/* Gap lines removed — strips now butt up flush against each other. */

/* Strip text overlay */
.strip-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
  text-align: center;
}

.strip-eyebrow {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.5);
  display: block;
  margin-bottom: 28px;
}

.strip-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  padding-bottom: 0.18em;
}

.strip-hl-line {
  display: block;
  font-size: clamp(4rem, 9vw, 9rem);
  color: var(--cream);
  clip-path: inset(0 0 100% 0);
  transform: translateY(30px);
  transition: clip-path 1s var(--ease-out), transform 1s var(--ease-out);
}
.strip-hl-line:nth-child(2) { transition-delay: 0.15s; }
.strip-headline.revealed .strip-hl-line {
  clip-path: inset(0 0 -25% 0);
  transform: translateY(0);
}

.strip-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  color: rgba(244,239,230,0.6);
  line-height: 1.75;
  max-width: 560px;
}

.strip-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.3);
}
.strip-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLinePulse 2s ease-in-out infinite;
}
@keyframes scrollLinePulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.2); transform-origin: top; }
}

/* Side labels — rotated */
.strip-side-label {
  position: absolute;
  z-index: 10;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.25);
  top: 50%;
}
.strip-side-left {
  left: 20px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
}
.strip-side-right {
  right: 20px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
}

@media (max-width: 640px) {
  .hero-strips { grid-template-columns: 1fr 1fr 1fr; gap: 0; }
  .strip-headline .strip-hl-line { font-size: clamp(2.8rem, 10vw, 5rem); }
  .strip-side-label { display: none; }
}

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

/* ============================================================
   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;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.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); }

/* ============================================================
   PORTFOLIO GRID (portfolio page)
   ============================================================ */
/* Per-tab text block */
.portfolio-tab-text {
  padding: 40px 5vw 28px;
  max-width: 700px;
  min-height: 90px;
}
.portfolio-tab-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--ink);
  margin: 0 0 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.portfolio-tab-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.62rem, 1vw, 0.74rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  line-height: 2;
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease 0.07s, transform 0.4s ease 0.07s;
}
.portfolio-tab-text.active .portfolio-tab-heading,
.portfolio-tab-text.active .portfolio-tab-desc {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0 0 80px;
}

.portfolio-masonry-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: var(--parchment);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

/* Two layered images for crossfade rotation */
.portfolio-masonry-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.65s var(--ease-out);
}

.portfolio-masonry-item img.slot-back {
  opacity: 0;
}

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

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

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

.portfolio-masonry-item-num {
  z-index: 3;
}

@media (max-width: 600px) {
  .portfolio-masonry { grid-template-columns: 1fr; }
  .portfolio-masonry-item { aspect-ratio: 4 / 3; }
}

/* ============================================================
   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 header text */
.portfolio-header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 110px 5vw 56px;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-header-heading {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 9rem);
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.portfolio-header-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.65rem, 1vw, 0.78rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mid);
  line-height: 2;
}

@media (max-width: 640px) {
  .portfolio-header-text {
    padding: 100px 5vw 32px;
  }
}

/* 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); }

/* ============================================================
   HOME VIDEO
   ============================================================ */
.home-video {
  background: var(--charcoal-mid);
  padding: var(--section-pad) 5vw;
}
.home-video-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.home-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: 36px;
  display: block;
}
.home-video-frame {
  max-width: 1000px;
  margin: 0 auto;
}
.home-video-cta {
  text-align: center;
  margin-top: 36px;
}

/* ============================================================
   POSTCARD — clickable
   ============================================================ */
.postcard-link-wrap {
  display: block;
  text-decoration: none;
  color: inherit;
}
.postcard-link-wrap:hover .postcard {
  transform: translateY(-4px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
}
.postcard-link-wrap:hover .postcard-cta-link {
  color: var(--gold);
}
.postcard {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

/* ============================================================
   CHAPTER LAYOUT — updated
   ============================================================ */
.chapter-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  position: relative;
  padding-left: clamp(140px, 14vw, 200px);
}
.chapter-side-num {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 1;
  color: rgba(184,131,42,0.1);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}
.chapter-darker .chapter-side-num { color: rgba(212,168,83,0.08); }

/* Process steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
  max-width: 600px;
}
.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
}
.process-step-num {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  padding-top: 4px;
}
.process-step-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.process-step-body {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(244,239,230,0.55);
  line-height: 1.8;
}

/* What you receive grid */
.receive-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 3px;
  margin-top: 56px;
  background: var(--parchment);
}
.receive-card {
  background: var(--cream);
  padding: 40px 32px;
  transition: background 0.3s;
}
.receive-card:hover { background: var(--cream-dark); }
.receive-card-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.receive-card-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.receive-card-body {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.receive-card-tag {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  margin-top: 56px;
}
.testimonial-card {
  border-top: 1px solid var(--parchment);
  padding-top: 28px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.9;
  margin-bottom: 20px;
}
.testimonial-name {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* CTA updates */
.cta-section-inner {
  max-width: 960px;
  margin: 0 auto;
}
.cta-brand-seal {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.cta-brand-seal img {
  width: clamp(160px, 22vw, 260px);
  height: auto;
  opacity: 0.82;
  transition: opacity 0.4s ease, transform 0.5s var(--ease-out);
}
.cta-brand-seal img:hover {
  opacity: 1;
  transform: scale(1.03);
}
.cta-btn {
  margin-top: 8px;
}

/* Video category cards in CTA */
.cta-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 64px;
  background: var(--parchment);
}

.cta-video-card {
  background: var(--cream-light);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), background 0.3s ease, box-shadow 0.35s ease;
}

.cta-video-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.cta-video-card:hover {
  transform: translateY(-6px);
  background: var(--cream);
  box-shadow: 0 16px 48px rgba(44,33,24,0.14);
  z-index: 2;
}
.cta-video-card:hover::before { transform: scaleX(1); }

.cta-video-card-icon {
  font-size: 1.1rem;
  color: rgba(184,131,42,0.4);
  transition: color 0.3s;
}
.cta-video-card:hover .cta-video-card-icon { color: var(--gold); }

.cta-video-card-label {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-video-card-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.2;
}

.cta-video-card-desc {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.8;
  flex: 1;
}

.cta-video-card-arrow {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.cta-video-card:hover .cta-video-card-arrow { gap: 10px; }

@media (max-width: 860px) {
  .cta-video-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .cta-video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .receive-grid { grid-template-columns: 1fr; gap: 2px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 32px; }
  .chapter-inner { padding-left: 0; }
  .chapter-side-num { display: none; }
}

/* ============================================================
   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);
}

/* ============================================================
   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; }
  .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; }
  /* portfolio-masonry handled by its own responsive rules */
}

/* ============================================================
   INSTAGRAM FEED — bottom of every page
   ============================================================ */
.ig-feed {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  padding: clamp(72px, 10vw, 120px) clamp(24px, 6vw, 80px) clamp(80px, 10vw, 130px);
}
.ig-feed-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}
.ig-feed-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.ig-feed-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 14px;
}
.ig-feed-heading em {
  font-style: italic;
  color: var(--gold);
}
.ig-feed-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-light);
  max-width: 460px;
  margin: 0 auto 40px;
}
.ig-feed-handle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  margin-bottom: 48px;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.ig-feed-handle:hover { color: var(--gold); border-bottom-color: var(--ink); }
.ig-feed-widget {
  margin: 0 auto;
  min-height: 200px;
}
.ig-feed-fallback {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: 880px;
  margin: 0 auto;
}
.ig-feed-fallback a {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--cream-dark);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease-out);
}
.ig-feed-fallback a:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}
.ig-feed-fallback span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-light);
  opacity: 0.4;
}
@media (max-width: 700px) {
  .ig-feed-fallback { grid-template-columns: repeat(3, 1fr); }
}
