/* ============================================================
   PHOTOGRAPHY EH — SHARED SITE STYLES
   ============================================================ */

:root {
  --parchment: #f5efe0;
  --bone: #ece2cc;
  --whisper: #d4ddc8;
  --sage: #8aa08c;
  --sage-deep: #6b8170;
  --periwinkle: #9595ba;
  --periwinkle-deep: #74739f;
  --lavender-mist: #c7c1d6;
  --lavender-wash: #e2dde8;
  --espresso: #2f2c28;
  --espresso-soft: #4a463f;
  /* Accent aliases — brass-named rules now point at periwinkle for soft warmth */
  --brass: #9595ba;
  --brass-deep: #74739f;
  --rule: #c6bca6;
  --ink: #2f2c28;
  --ink-soft: #6b6357;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html, body { background: var(--parchment); }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* Custom cursor disabled — default cursor is more reliable across backgrounds */
.pe-cursor { display: none !important; }
::selection { background: var(--brass); color: var(--parchment); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-weight: 300;
  font-variation-settings: "SOFT" 60, "opsz" 144;
  letter-spacing: -0.015em;
}

/* ============ LOADER ============ */
.pe-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--espresso);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s linear 1.1s;
}
.pe-loader.is-done { opacity: 0; visibility: hidden; }
.pe-loader svg {
  width: 56px; height: 56px;
  fill: var(--sage);
  opacity: 0;
  transform: translateY(20px) scale(0.94);
  animation: leafIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
@keyframes leafIn { to { opacity: 1; transform: translateY(0) scale(1); } }

/* ============ CURSOR ============ */
.pe-cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000; mix-blend-mode: difference; display: none; }
@media (hover: hover) and (pointer: fine) { .pe-cursor { display: block; } }
.pe-cursor-dot {
  position: fixed; width: 5px; height: 5px; background: #f3ebd9;
  border-radius: 50%; transform: translate(-50%,-50%);
  transition: width .3s, height .3s, opacity .3s;
  pointer-events: none;
}
.pe-cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid #f3ebd9; border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .4s cubic-bezier(0.16, 1, 0.3, 1),
              height .4s cubic-bezier(0.16, 1, 0.3, 1),
              background .3s, color .3s;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--parchment);
}
body.cursor-hover .pe-cursor-dot { width: 0; height: 0; opacity: 0; }
body.cursor-hover .pe-cursor-ring { width: 56px; height: 56px; background: var(--brass); border-color: var(--brass); }
body.cursor-view .pe-cursor-ring { width: 72px; height: 72px; background: var(--brass); border-color: var(--brass); }
body.cursor-view .pe-cursor-ring::after { content: 'View'; }

/* ============ NAV ============ */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 28px 48px; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .4s ease, padding .4s ease, backdrop-filter .4s ease;
}
/* Soft bar behind the menu at the top of the home hero — keeps the buttons
   and logo clear of the subject's face. Fades away once the parchment nav
   bar takes over on scroll (and is hidden on interior pages, which start
   in the is-scrolled state). */
nav.site-nav::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0;
  height: 156px; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(47,44,40,0.40) 0%, rgba(47,44,40,0.12) 55%, rgba(47,44,40,0) 100%);
  opacity: 1; transition: opacity .4s ease;
}
nav.site-nav.is-scrolled::before { opacity: 0; }
nav.site-nav.is-scrolled {
  background: rgba(243, 235, 217, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 18px 48px;
  border-bottom: 1px solid rgba(184, 149, 106, 0.15);
}
.nav-mark {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 400; font-variation-settings: "SOFT" 80;
  color: var(--parchment); letter-spacing: 0.06em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.45);
  transition: color .35s ease, text-shadow .35s ease;
}
.nav-mark svg { width: 26px; height: 26px; fill: var(--parchment); transition: fill .35s ease; filter: drop-shadow(0 1px 6px rgba(0,0,0,0.4)); }
.nav-mark em { font-style: italic; color: var(--lavender-mist); font-weight: 400; transition: color .35s ease; }
/* Once scrolled, logo darkens and the leaf/em go back to brand colors */
.site-nav.is-scrolled .nav-mark { color: var(--ink); text-shadow: none; }
.site-nav.is-scrolled .nav-mark svg { fill: var(--sage-deep); filter: none; }
.site-nav.is-scrolled .nav-mark em { color: var(--periwinkle-deep); }
.nav-links {
  display: flex; gap: 10px;
}
.nav-links a {
  background: var(--lavender-mist);
  color: var(--espresso);
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 400;
  text-shadow: none;
  transition: background .35s ease, color .35s ease, text-shadow .35s ease;
  position: relative;
}
.nav-links a:hover {
  background: var(--periwinkle-deep);
  color: var(--parchment);
}
/* Once scrolled past hero, the nav links become full lavender pills */
.site-nav.is-scrolled .nav-links a {
  background: var(--lavender-mist);
  color: var(--espresso);
  text-shadow: none;
  font-weight: 400;
}
.site-nav.is-scrolled .nav-links a:hover,
.site-nav.is-scrolled .nav-links a.is-active {
  background: var(--periwinkle-deep);
  color: var(--parchment);
}
.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--parchment);
  padding: 14px 26px; border: 1px solid var(--parchment);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  transition: background .4s ease, color .4s ease, border-color .4s ease, text-shadow .4s ease;
}
.nav-cta:hover { background: var(--parchment); color: var(--ink); text-shadow: none; }
/* When scrolled, Inquire becomes a solid dark button on the parchment nav */
.site-nav.is-scrolled .nav-cta {
  color: var(--ink); border-color: var(--ink); text-shadow: none; font-weight: 400;
}
.site-nav.is-scrolled .nav-cta:hover { background: var(--ink); color: var(--parchment); }

/* ============ HERO (home) — split with photo right, text overlay ============ */
.hero {
  height: 100vh; min-height: 700px;
  position: relative; overflow: hidden;
}
.hero-photo { position: absolute; inset: 0; overflow: hidden; }
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  animation: kenburns 26s ease-in-out infinite alternate;
  transform-origin: 60% 40%;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(42,37,32,0.18) 0%, rgba(42,37,32,0) 30%,
    rgba(42,37,32,0) 55%, rgba(243,235,217,0.4) 85%,
    rgba(243,235,217,0.85) 100%);
}
.hero-content { position: absolute; left: 48px; bottom: 56px; max-width: 720px; z-index: 2; }
.hero-eyebrow {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--parchment); margin-bottom: 36px;
  display: inline-flex; align-items: center; gap: 16px;
  mix-blend-mode: difference;
  opacity: 0; animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--sage); }
.hero h1 {
  font-size: clamp(54px, 8vw, 132px);
  line-height: 0.95; color: var(--ink);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-weight: 300; letter-spacing: -0.025em;
  margin-bottom: 38px;
}
.hero h1 .reveal-word {
  display: inline-block; opacity: 0; transform: translateY(40px);
  animation: fadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero h1 .reveal-word:nth-child(1) { animation-delay: 1.85s; }
.hero h1 .reveal-word:nth-child(2) { animation-delay: 1.95s; }
.hero h1 .reveal-word:nth-child(3) { animation-delay: 2.05s; font-style: italic; color: var(--brass-deep); font-variation-settings: "SOFT" 50, "opsz" 144; }
.hero h1 .reveal-word:nth-child(4) { animation-delay: 2.15s; }
.hero h1 .reveal-word:nth-child(5) { animation-delay: 2.25s; }
.hero h1 .reveal-word:nth-child(6) { animation-delay: 2.35s; }
.hero h1 .reveal-word:nth-child(7) { animation-delay: 2.45s; }
.hero-meta {
  display: flex; gap: 28px; align-items: center;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink);
  opacity: 0; animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 2.7s forwards;
}
.hero-meta a { border-bottom: 1px solid var(--brass); padding-bottom: 4px; }
.hero-corner {
  position: absolute; right: 48px; bottom: 56px; text-align: right; z-index: 2;
  opacity: 0; animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 2.9s forwards;
}
.hero-corner .small { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.hero-corner .italic-mark { font-family: 'Fraunces', serif; font-style: italic; font-size: 18px; color: var(--brass-deep); font-variation-settings: "SOFT" 100; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ============ PAGE HERO (interior pages) ============ */
.page-hero {
  padding: 200px 48px 100px;
  position: relative;
  background: var(--parchment);
  text-align: center;
}
.page-hero .eyebrow {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--brass-deep); margin-bottom: 36px;
  display: inline-flex; align-items: center; gap: 16px;
}
.page-hero .eyebrow::before, .page-hero .eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--brass);
}
.page-hero h1 {
  font-size: clamp(54px, 8vw, 124px);
  line-height: 0.98;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
}
.page-hero h1 em { font-style: italic; color: var(--brass-deep); font-variation-settings: "SOFT" 50, "opsz" 144; }
.page-hero .sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--ink-soft);
  font-variation-settings: "SOFT" 90;
  max-width: 680px; margin: 0 auto;
}

/* ============ EDITORIAL INTRO (used on home + some pages) ============ */
.intro {
  padding: 220px 48px 200px;
  text-align: center;
  background: var(--lavender-wash);
}
.intro-eyebrow {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: 64px;
  display: inline-flex; align-items: center; gap: 16px;
}
.intro-eyebrow::before, .intro-eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--sage);
}
.intro p {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.28; font-weight: 300;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: -0.01em;
  max-width: 1080px; margin: 0 auto; color: var(--ink);
}
.intro p em {
  font-style: italic; color: var(--sage-deep);
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.intro .reveal-line {
  display: block; opacity: 0; transform: translateY(28px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.intro.in-view .reveal-line { opacity: 1; transform: translateY(0); }
.intro.in-view .reveal-line:nth-child(2) { transition-delay: 0.15s; }
.intro.in-view .reveal-line:nth-child(3) { transition-delay: 0.30s; }

/* ============ ABOUT ============ */
.about { padding: 80px 48px 200px; background: var(--parchment); position: relative; }
.about-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 110px; max-width: 1360px; margin: 0 auto; align-items: start;
}
.about-portrait { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.about-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.about.in-view .about-portrait img { opacity: 1; transform: scale(1); }
.about-portrait::after {
  content: ''; position: absolute; bottom: -22px; right: -22px;
  width: 60%; height: 60%;
  border-right: 1px solid var(--sage);
  border-bottom: 1px solid var(--sage);
  pointer-events: none;
  opacity: 0; transform: translate(20px, 20px);
  transition: opacity 1.2s 0.6s ease, transform 1.2s 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.about.in-view .about-portrait::after { opacity: 1; transform: translate(0,0); }
.about-content { padding-top: 50px; }
.about-eyebrow {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--brass-deep); margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 14px;
}
.about-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--brass); }
.about h2 {
  font-size: clamp(36px, 4.6vw, 64px); line-height: 1.08;
  margin-bottom: 40px; font-variation-settings: "SOFT" 90, "opsz" 144;
  letter-spacing: -0.02em;
}
.about h2 em { font-style: italic; color: var(--brass-deep); font-variation-settings: "SOFT" 50, "opsz" 144; }
.about-content p { font-size: 14.5px; line-height: 1.95; color: var(--ink-soft); margin-bottom: 22px; max-width: 460px; }
.about-signature {
  margin-top: 50px; font-family: 'Fraunces', serif; font-style: italic;
  font-variation-settings: "SOFT" 100;
  font-size: 32px; color: var(--brass-deep); letter-spacing: -0.01em;
}
.about-credentials {
  margin-top: 48px; display: flex; gap: 48px;
  padding-top: 32px; border-top: 1px solid var(--rule);
}
.about-credentials div { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-soft); }
.about-credentials strong {
  display: block; font-family: 'Fraunces', serif;
  font-style: normal; font-weight: 400;
  font-size: 28px; letter-spacing: -0.01em;
  color: var(--brass-deep); text-transform: none;
  margin-bottom: 4px; font-variation-settings: "SOFT" 90;
}

/* ============ SESSIONS — hover switcher ============ */
.sessions { padding: 200px 48px; background: var(--bone); position: relative; }
.sessions-head {
  max-width: 1360px; margin: 0 auto 100px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: end;
}
.sessions-head .eyebrow {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 14px;
}
.sessions-head .eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--sage); }
.sessions-head h2 {
  font-size: clamp(38px, 4.8vw, 68px); line-height: 1.05;
  font-variation-settings: "SOFT" 90, "opsz" 144; letter-spacing: -0.02em;
}
.sessions-head h2 em { font-style: italic; color: var(--sage-deep); font-variation-settings: "SOFT" 50; }
.sessions-head .desc { font-size: 14.5px; line-height: 1.95; color: var(--ink-soft); max-width: 420px; padding-bottom: 8px; }
.sessions-stage {
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: center;
}
.sessions-list { list-style: none; padding-left: 28px; }
.sessions-list li { position: relative; padding: 18px 0; cursor: pointer; transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1); }
.sessions-list li::before {
  content: ''; position: absolute; left: -28px; top: 50%;
  width: 16px; height: 1px; background: var(--sage);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.sessions-list li.active::before, .sessions-list li:hover::before { transform: scaleX(1); }
.sessions-list .name {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: clamp(48px, 5.6vw, 84px); line-height: 1;
  font-weight: 300; color: var(--ink-soft);
  font-variation-settings: "SOFT" 100, "opsz" 144; letter-spacing: -0.02em;
  transition: color .5s ease, transform .5s ease; display: inline-block;
}
.sessions-list li.active .name, .sessions-list li:hover .name { color: var(--brass-deep); transform: translateX(12px); }
.sessions-list .meta { display: inline-block; margin-left: 18px; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink-soft); vertical-align: 28px; opacity: 0; transition: opacity .5s ease .1s; }
.sessions-list li.active .meta { opacity: 0.6; }
.sessions-display { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.sessions-display .slide {
  position: absolute; inset: 0; opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: opacity .8s ease, clip-path 1s cubic-bezier(0.65, 0, 0.35, 1);
}
.sessions-display .slide.is-active { opacity: 1; clip-path: inset(0 0 0 0); }
.sessions-display .slide img { width: 100%; height: 100%; object-fit: cover; }
.sessions-display .slide-caption {
  position: absolute; left: 24px; bottom: 24px; color: var(--parchment);
  font-family: 'Fraunces', serif; font-style: italic; font-size: 18px;
  letter-spacing: 0.02em; font-variation-settings: "SOFT" 90;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.sessions-display::after {
  content: ''; position: absolute; top: 16px; right: 16px;
  width: 28px; height: 28px;
  border-top: 1px solid var(--sage); border-right: 1px solid var(--sage);
  z-index: 3; pointer-events: none;
}

/* ============ SESSIONS HUB CARDS (sessions.html) ============ */
.session-hub {
  padding: 60px 48px 180px;
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.session-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
  display: block;
  text-decoration: none;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.session-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter .8s;
}
.session-card:hover img { transform: scale(1.04); filter: brightness(0.92); }
.session-card-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42,37,32,0.65) 100%);
}
.session-card-body {
  position: absolute; bottom: 36px; left: 36px; right: 36px;
  color: var(--parchment); z-index: 2;
}
.session-card .num {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 14px;
  letter-spacing: 0.05em; font-variation-settings: "SOFT" 100;
  display: block; margin-bottom: 12px; opacity: 0.85;
}
.session-card h3 {
  font-size: clamp(36px, 4vw, 56px); line-height: 1; color: var(--parchment);
  font-variation-settings: "SOFT" 90, "opsz" 144;
  margin-bottom: 18px; letter-spacing: -0.02em;
}
.session-card h3 em { font-style: italic; color: var(--brass); font-variation-settings: "SOFT" 50, "opsz" 144; }
.session-card .arrow {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--brass); padding-bottom: 6px;
  color: var(--brass);
}

/* ============ PORTFOLIO GALLERY ============ */
.portfolio-intro {
  max-width: 760px;
  margin: 60px auto 80px;
  padding: 0 48px;
  text-align: center;
}
.portfolio-intro p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.5;
  color: var(--ink-soft);
  font-variation-settings: "SOFT" 90, "opsz" 144;
}

.portfolio-gallery {
  padding: 0 48px 180px;
  max-width: 1600px;
  margin: 0 auto;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.portfolio-grid .pf-frame {
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-grid .pf-frame.in-view { opacity: 1; transform: translateY(0); }
.portfolio-grid .pf-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-grid .pf-frame:hover img { transform: scale(1.03); }
/* asymmetric rhythm — repeats every 6 frames */
.pf-frame:nth-child(6n+1) { grid-column: span 7; aspect-ratio: 3/2; }
.pf-frame:nth-child(6n+2) { grid-column: span 5; aspect-ratio: 4/5; }
.pf-frame:nth-child(6n+3) { grid-column: span 4; aspect-ratio: 4/5; }
.pf-frame:nth-child(6n+4) { grid-column: span 8; aspect-ratio: 3/2; }
.pf-frame:nth-child(6n+5) { grid-column: span 5; aspect-ratio: 4/5; }
.pf-frame:nth-child(6n+6) { grid-column: span 7; aspect-ratio: 3/2; }

.portfolio-empty {
  text-align: center; padding: 80px 24px;
  font-family: 'Fraunces', serif; font-style: italic;
  color: var(--ink-soft); font-size: 18px;
}
.portfolio-loading {
  text-align: center; padding: 60px 24px;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============ INVESTMENT (pricing) ============ */
.invest-collections {
  padding: 80px 48px 100px;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
}
.invest-card {
  border: 1px solid var(--rule);
  padding: 56px 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  transition: border-color .4s ease, transform .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.invest-card:hover { border-color: var(--brass); transform: translateY(-4px); }
.invest-card .num {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 14px; letter-spacing: 0.06em;
  font-variation-settings: "SOFT" 100;
  color: var(--brass-deep);
  margin-bottom: 24px; display: block;
}
.invest-card h3 {
  font-size: clamp(28px, 2.4vw, 36px); line-height: 1.1;
  margin-bottom: 12px;
  font-variation-settings: "SOFT" 90;
}
.invest-card h3 em { font-style: italic; color: var(--brass-deep); }
.invest-card .price {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 22px; color: var(--brass-deep); margin-bottom: 28px;
  display: block; font-variation-settings: "SOFT" 100;
}
.invest-card ul { list-style: none; }
.invest-card li {
  padding: 12px 0; border-bottom: 1px solid rgba(200, 189, 163, 0.4);
  font-size: 14px; line-height: 1.7; color: var(--ink-soft);
}
.invest-card li:last-child { border-bottom: 0; }

.process {
  padding: 100px 48px 200px;
  max-width: 1080px; margin: 0 auto;
}
.process h2 {
  font-size: clamp(36px, 4vw, 54px); text-align: center; margin-bottom: 70px;
  font-variation-settings: "SOFT" 90;
}
.process h2 em { font-style: italic; color: var(--brass-deep); font-variation-settings: "SOFT" 50; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 36px; padding: 36px 0;
  border-top: 1px solid var(--rule);
}
.process-step:last-child { border-bottom: 1px solid var(--rule); }
.process-step .step-num {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 36px; color: var(--brass-deep);
  font-variation-settings: "SOFT" 100; line-height: 1;
}
.process-step h4 { font-size: 22px; margin-bottom: 10px; font-variation-settings: "SOFT" 80; }
.process-step p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.85; max-width: 560px; }

/* ============ CONTACT FORM ============ */
.contact-form-wrap {
  padding: 60px 48px 180px;
  max-width: 880px; margin: 0 auto;
}
.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.contact-form .field { display: flex; flex-direction: column; }
.contact-form .field.full { grid-column: span 2; }
.contact-form label {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 8px;
}
.contact-form input, .contact-form textarea, .contact-form select {
  font-family: 'Inter', sans-serif; font-size: 14px;
  background: transparent; border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 12px 0; color: var(--ink);
  font-weight: 300; line-height: 1.6;
  transition: border-color .3s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: 0; border-bottom-color: var(--brass);
}
.contact-form textarea { resize: vertical; min-height: 110px; font-family: 'Fraunces', serif; font-style: italic; font-size: 18px; line-height: 1.6; font-variation-settings: "SOFT" 80; }
.contact-form .submit-row { grid-column: span 2; margin-top: 24px; text-align: center; }
.contact-form button {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  background: var(--ink); color: var(--parchment);
  border: 1px solid var(--ink); padding: 20px 56px;
  transition: background .4s ease, color .4s ease;
}
.contact-form button:hover { background: transparent; color: var(--ink); }

.contact-meta-block {
  padding: 60px 48px 0;
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  text-align: center;
}
.contact-meta-block .item .label {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--brass-deep); margin-bottom: 10px;
}
.contact-meta-block .item .value {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 22px; color: var(--ink);
  font-variation-settings: "SOFT" 90;
}

/* ============ TESTIMONIAL ============ */
.testimonial { padding: 220px 48px; text-align: center; background: var(--lavender-wash); position: relative; }
.testimonial-body { max-width: 940px; margin: 0 auto; }
.testimonial-mark {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 92px; color: var(--sage-deep); line-height: 1;
  margin-bottom: 18px; font-variation-settings: "SOFT" 100;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial.in-view .testimonial-mark { opacity: 0.65; transform: translateY(0); }
.testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2.6vw, 38px); line-height: 1.45;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  color: var(--ink); letter-spacing: -0.01em;
  font-weight: 300; font-style: italic; margin-bottom: 48px;
}
.testimonial blockquote .reveal-line {
  display: block; opacity: 0; transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial.in-view blockquote .reveal-line { opacity: 1; transform: translateY(0); }
.testimonial.in-view blockquote .reveal-line:nth-child(2) { transition-delay: 0.12s; }
.testimonial.in-view blockquote .reveal-line:nth-child(3) { transition-delay: 0.24s; }
.testimonial.in-view blockquote .reveal-line:nth-child(4) { transition-delay: 0.36s; }
.testimonial cite {
  font-style: normal; font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ink-soft); display: inline-flex; align-items: center; gap: 14px;
}
.testimonial cite::before { content: ''; width: 28px; height: 1px; background: var(--sage); }

/* ============ HOME GALLERY (horizontal pin) ============ */
.gallery-wrap { position: relative; background: var(--parchment); }
.gallery-head { padding: 180px 48px 100px; text-align: center; }
.gallery-head .eyebrow {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--brass-deep); margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 16px;
}
.gallery-head .eyebrow::before, .gallery-head .eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--brass); }
.gallery-head h2 {
  font-size: clamp(38px, 4.8vw, 68px); line-height: 1.08;
  font-variation-settings: "SOFT" 90, "opsz" 144; letter-spacing: -0.02em;
}
.gallery-head h2 em { font-style: italic; color: var(--brass-deep); font-variation-settings: "SOFT" 50; }
.gallery-head .hint { margin-top: 32px; font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--ink-soft); }
.gallery-scroll { height: 100vh; position: sticky; top: 0; overflow: hidden; display: flex; align-items: center; }
.gallery-track { display: flex; gap: 32px; padding: 0 8vw; will-change: transform; }
.gallery-frame { flex: 0 0 auto; position: relative; overflow: hidden; }
.gallery-frame.size-tall { width: 36vh; height: 54vh; }
.gallery-frame.size-wide { width: 64vh; height: 44vh; }
.gallery-frame.size-square { width: 48vh; height: 48vh; }
.gallery-frame.size-portrait { width: 40vh; height: 60vh; }
.gallery-frame img { width: 100%; height: 100%; object-fit: cover; }
.gallery-frame-num {
  position: absolute; top: 14px; left: 16px; color: var(--parchment);
  font-family: 'Fraunces', serif; font-style: italic; font-size: 13px;
  letter-spacing: 0.06em; text-shadow: 0 1px 6px rgba(0,0,0,0.4); z-index: 2;
}
.gallery-spacer { height: 280vh; }

/* ============ CONTACT BIG (home) ============ */
.contact { padding: 200px 48px 220px; text-align: center; background: var(--bone); position: relative; }
.contact h2 {
  font-size: clamp(56px, 8vw, 156px); line-height: 0.96;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: -0.03em; margin-bottom: 60px;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.contact h2 em {
  font-style: italic; color: var(--brass-deep);
  font-variation-settings: "SOFT" 60, "opsz" 144;
  position: relative; display: inline-block;
}
.contact h2 em::after {
  content: ''; position: absolute; left: 4%; right: 4%; bottom: 8%;
  height: 1.5px; background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}
.contact.in-view h2 em::after { transform: scaleX(1); }
.contact-mail {
  display: inline-block; font-family: 'Fraunces', serif; font-style: italic;
  font-size: 22px; color: var(--ink); letter-spacing: -0.005em;
  padding: 18px 4px; position: relative;
  transition: color .4s ease, transform .4s ease;
  font-variation-settings: "SOFT" 90; will-change: transform;
}
.contact-mail::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 8px;
  height: 1px; background: var(--ink); transform-origin: right;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-mail:hover { color: var(--brass-deep); }
.contact-mail:hover::after { background: var(--brass); transform-origin: left; }
.contact-meta {
  margin-top: 80px; display: flex; justify-content: center; gap: 48px;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--ink-soft);
}
.contact-meta a { border-bottom: 1px solid var(--brass); padding-bottom: 4px; }

/* ============ FOOTER ============ */
footer.site-footer { padding: 60px 48px 40px; background: var(--espresso); color: var(--parchment); }
.footer-grid {
  max-width: 1360px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(184, 149, 106, 0.25);
}
.footer-grid .mark {
  font-family: 'Fraunces', serif; font-size: 18px; font-weight: 400;
  font-variation-settings: "SOFT" 80; letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 12px;
}
.footer-grid .mark svg { width: 18px; height: 18px; fill: var(--sage); }
.footer-grid .mark em { font-style: italic; color: var(--lavender-mist); }
.footer-nav-links {
  display: flex; gap: 36px;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
}
.footer-base {
  max-width: 1360px; margin: 0 auto; padding-top: 28px;
  display: flex; justify-content: space-between;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(243, 235, 217, 0.55); flex-wrap: wrap; gap: 16px;
}

/* ============ SCROLL REVEAL HELPERS ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ CTA STRIP (used on portfolio + about pages) ============ */
.cta-strip {
  padding: 160px 48px;
  text-align: center; background: var(--bone);
}
.cta-strip h3 {
  font-size: clamp(36px, 4.5vw, 64px); line-height: 1.05;
  margin-bottom: 30px; font-variation-settings: "SOFT" 90, "opsz" 144;
  letter-spacing: -0.02em;
}
.cta-strip h3 em { font-style: italic; color: var(--brass-deep); font-variation-settings: "SOFT" 50, "opsz" 144; }
.cta-strip a.btn {
  display: inline-block; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  background: var(--ink); color: var(--parchment); padding: 20px 56px;
  border: 1px solid var(--ink); transition: background .4s ease, color .4s ease;
}
.cta-strip a.btn:hover { background: transparent; color: var(--ink); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  nav.site-nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .hero { min-height: 620px; }
  .hero-content { left: 24px; bottom: 36px; max-width: 92%; }
  .hero-corner { right: 24px; bottom: 36px; }
  .intro { padding: 130px 24px 120px; }
  .about { padding: 60px 24px 130px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-content { padding-top: 0; }
  .sessions { padding: 130px 24px; }
  .sessions-head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .sessions-stage { grid-template-columns: 1fr; gap: 40px; }
  .sessions-list { padding-left: 0; }
  .sessions-list li::before { display: none; }
  .page-hero { padding: 130px 24px 70px; }
  .session-hub { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 120px; }
  .portfolio-gallery { padding: 0 24px 130px; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 16px; }
  .pf-frame:nth-child(n) { grid-column: span 1; aspect-ratio: 4/5; }
  .invest-collections { grid-template-columns: 1fr; padding: 60px 24px 80px; }
  .process { padding: 60px 24px 130px; }
  .contact-meta-block { grid-template-columns: 1fr; padding: 40px 24px 0; }
  .contact-form { grid-template-columns: 1fr; gap: 24px; }
  .contact-form .field.full { grid-column: span 1; }
  .contact-form .submit-row { grid-column: span 1; }
  .gallery-head { padding: 130px 24px 60px; }
  .gallery-scroll { height: auto; position: static; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; }
  .gallery-track { transform: none !important; padding: 0 24px; }
  .gallery-frame { scroll-snap-align: center; }
  .gallery-frame.size-tall, .gallery-frame.size-portrait { width: 60vw; height: 80vw; }
  .gallery-frame.size-wide { width: 80vw; height: 56vw; }
  .gallery-frame.size-square { width: 70vw; height: 70vw; }
  .gallery-spacer { display: none; }
  .testimonial { padding: 130px 24px; }
  .contact { padding: 140px 24px 160px; }
  .contact-meta { flex-direction: column; gap: 18px; }
  .cta-strip { padding: 110px 24px; }
  footer.site-footer { padding: 40px 24px 28px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-base { flex-direction: column; }
  .footer-nav-links { flex-wrap: wrap; gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-photo img { animation: none; }
}

/* ============================================================
   PORTFOLIO HUB & GALLERY PAGES
   ============================================================ */

/* Portfolio category hub grid */
.portfolio-hub {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.portfolio-card {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bone);
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-card.available { cursor: pointer; }
.portfolio-card.coming-soon { cursor: default; }
.portfolio-card-photo {
  position: absolute; inset: 0;
  overflow: hidden;
}
.portfolio-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1), filter .6s ease;
}
.portfolio-card.coming-soon .portfolio-card-photo img {
  filter: grayscale(0.55) brightness(0.85);
}
.portfolio-card.available:hover .portfolio-card-photo img {
  transform: scale(1.05);
}
.portfolio-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(47,44,40,0.65) 0%, rgba(47,44,40,0.2) 45%, transparent 75%);
  z-index: 2;
}
.portfolio-card-body {
  position: absolute; left: 28px; right: 28px; bottom: 28px;
  z-index: 3;
  color: var(--parchment);
}
.portfolio-card-body .num {
  display: block;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  margin-bottom: 12px; opacity: 0.85;
  font-family: 'Inter', sans-serif;
}
.portfolio-card-body h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 14px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.portfolio-card-body h3 em {
  font-style: italic;
  color: var(--lavender-mist);
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.portfolio-card-body .arrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 500;
  opacity: 0.9;
  transition: letter-spacing .35s ease;
}
.portfolio-card.available:hover .portfolio-card-body .arrow {
  letter-spacing: 0.4em;
}
.portfolio-card.coming-soon .portfolio-card-body .arrow {
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--lavender-mist);
  font-variation-settings: "SOFT" 80;
}

/* Masonry gallery using CSS multi-column */
.masonry-gallery {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px 140px;
  column-count: 3;
  column-gap: 18px;
}
.masonry-gallery img {
  width: 100%;
  margin-bottom: 18px;
  break-inside: avoid;
  display: block;
  transition: filter .6s ease, transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}
.masonry-gallery img:hover {
  filter: brightness(1.04) saturate(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .portfolio-hub { grid-template-columns: repeat(2, 1fr); gap: 22px; padding: 0 32px 100px; }
  .masonry-gallery { column-count: 2; padding: 0 32px 100px; }
}
@media (max-width: 640px) {
  .portfolio-hub { grid-template-columns: 1fr; gap: 18px; padding: 0 20px 80px; }
  .masonry-gallery { column-count: 1; padding: 0 20px 80px; column-gap: 14px; }
  .masonry-gallery img { margin-bottom: 14px; }
}
