*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #F6EFE2;
  color: #2A2622;
  font-family: 'Cormorant Garamond', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: #B5591F; text-decoration: none; }
a:hover { color: #2E4034; }

@keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
/* riseIn with the stagger delay baked into the keyframes (0-12% hold = 0.15s of 1.25s)
   instead of animation-delay, which some snapshot renderers freeze at opacity 0 */
@keyframes riseInStagger { 0%, 12% { opacity: 0; transform: translateY(26px); } 100% { opacity: 1; transform: none; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes bandSlide { to { background-position: 36px 0; } }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbRise { from { opacity: 0; transform: translateY(26px) scale(0.97); } to { opacity: 1; transform: none; } }
/* curtain delay (0.35s of 1.85s = 19%) baked into the keyframes — see riseInStagger */
@keyframes curtainL { 0%, 19% { transform: translateX(0); } 100% { transform: translateX(-102%); } }
@keyframes curtainR { 0%, 19% { transform: translateX(0); } 100% { transform: translateX(102%); } }

/* ---------- shared bits ---------- */
.band {
  height: 12px;
  background: repeating-linear-gradient(90deg, #C4622D 0 18px, #E0A83C 18px 36px);
  animation: bandSlide 3.4s linear infinite;
}
.dash-rule { height: 5px; background: repeating-linear-gradient(90deg, #2E4034 0 10px, rgba(0,0,0,0) 10px 20px); }
.eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.dotfield { position: absolute; inset: 0; background-size: 34px 34px; pointer-events: none; }

/* ---------- header ---------- */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 14px clamp(16px, 4vw, 40px);
  border-bottom: 1px solid rgba(46,64,52,0.18);
  position: sticky; top: 0; z-index: 30;
  background: rgba(246,239,226,0.93);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-dot {
  width: 22px; height: 22px; border-radius: 50%; display: block;
  background: repeating-conic-gradient(from 0deg, #C4622D 0deg 22.5deg, #E0A83C 22.5deg 45deg);
  animation: spin 22s linear infinite;
}
.brand-name {
  font-family: 'Poiret One', cursive;
  font-size: 21px; letter-spacing: 0.18em; text-transform: uppercase; color: #2E4034;
}
.site-nav {
  display: flex; align-items: center; gap: clamp(14px, 3vw, 30px); flex-wrap: wrap;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.site-nav a { color: #2E4034; padding: 8px 2px 3px; border-bottom: 1px solid transparent; }
.site-nav a:hover { border-bottom-color: #C4622D; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 84px clamp(18px, 5vw, 40px) 30px; overflow: hidden; }
.hero-dots { opacity: 0.5; background-image: radial-gradient(circle at 1.5px 1.5px, rgba(46,64,52,0.13) 1.5px, transparent 1.6px); }
.hero-grid {
  position: relative; z-index: 1; max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px; align-items: center;
}
.hero-copy { position: relative; animation: riseIn 0.9s cubic-bezier(0.2,0.8,0.2,1) both; }
.rays {
  position: absolute; top: -252px; left: calc(50% - 310px);
  width: 620px; height: 620px; border-radius: 50%;
  background: repeating-conic-gradient(from 186deg, rgba(224,168,60,0.16) 0deg 5deg, rgba(246,239,226,0) 5deg 12deg);
  pointer-events: none; z-index: -1;
}
.sun {
  position: absolute; top: 6px; left: calc(50% - 52px);
  width: 104px; height: 104px; border-radius: 50%;
  background: #E0A83C;
  box-shadow: 0 0 0 10px rgba(224,168,60,0.2);
  z-index: -1; pointer-events: none;
}
.hero-kicker { margin: 128px 0 20px; font-family: 'Josefin Sans', sans-serif; font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; color: #7E9370; }
.hero-title {
  margin: 0; font-family: 'Poiret One', cursive;
  font-size: clamp(40px, 7.3vw, 88px); line-height: 0.95; color: #2E4034; text-wrap: balance;
}
.hero-sub { margin: 18px 0 0; max-width: 520px; font-size: 22px; line-height: 1.6; color: #4A473F; font-weight: 300; text-wrap: pretty; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 36px 0 0; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1), background 0.35s;
}
.btn--solid { background: #2E4034; color: #F6EFE2; }
.btn--solid:hover { transform: translateY(-3px); background: #C4622D; color: #F6EFE2; }
.btn--outline { border: 1px solid rgba(46,64,52,0.45); color: #2E4034; }
.btn--outline:hover { transform: translateY(-3px); background: rgba(168,185,154,0.35); color: #2E4034; }

.hero-art { position: relative; animation: riseInStagger 1.25s cubic-bezier(0.2,0.8,0.2,1) both; }
.portrait {
  position: relative; height: clamp(360px, 56vw, 520px);
  border-radius: 240px 240px 8px 8px; overflow: hidden;
  background: #53747D; border: 1px solid rgba(38,64,72,0.55);
  box-shadow: 0 30px 70px -34px rgba(46,64,52,0.6);
}
.portrait-dots { background-image: radial-gradient(circle at 2px 2px, rgba(38,64,72,0.1) 2px, transparent 2.1px); }
.portrait-frame { position: absolute; inset: 16px; border-radius: 226px 226px 4px 4px; border: 1px solid rgba(246,239,226,0.8); }
.portrait-note { position: absolute; top: 118px; left: 50%; transform: translateX(-50%); }
.portrait-note p, .card-note {
  margin: 0; font-family: 'Courier Prime', monospace;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.portrait-note p { font-size: 11px; color: #2E4034; background: rgba(246,239,226,0.9); padding: 9px 14px; }

/* ---------- marquee ---------- */
.marquee-wrap {
  border-top: 1px solid rgba(46,64,52,0.18); border-bottom: 1px solid rgba(46,64,52,0.18);
  background: #EFE5D3; overflow: hidden; padding: 14px 0;
}
.marquee {
  display: flex; gap: 44px; width: max-content;
  animation: marquee 34s linear infinite;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: #7E6A4F;
}

/* ---------- acting ---------- */
.acting { padding: 88px clamp(18px, 5vw, 40px); max-width: 1120px; margin: 0 auto; }
.acting-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.section-title { margin: 0; font-family: 'Poiret One', cursive; font-size: clamp(19px, 3.5vw, 42px); line-height: 1.1; color: #2E4034; }
.acting-copy p { margin: 22px 0 0; font-size: 19px; line-height: 1.6; color: #4A473F; font-weight: 300; }
.text-link {
  display: inline-flex; align-items: center; gap: 10px; margin: 26px 0 0;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: #C4622D; padding-bottom: 4px; border-bottom: 1px solid rgba(196,98,45,0.5);
}
.text-link:hover { color: #2E4034; border-bottom-color: #2E4034; }

.arch-card {
  position: relative; height: clamp(250px, 40vw, 320px);
  border-radius: 160px 160px 6px 6px; overflow: hidden;
}
.arch-card--dark { background: #2E4034; border: 1px solid rgba(46,64,52,0.6); }
.arch-card--dark .dotfield { background-image: radial-gradient(circle at 2px 2px, rgba(224,168,60,0.13) 2px, transparent 2.1px); }
.arch-card--dark .arch-card-frame { border-color: rgba(224,168,60,0.5); }
.arch-card--dark .card-note { color: #E0A83C; }
.arch-card--pink { background: #F6DCD2; border: 1px solid rgba(46,64,52,0.3); }
.arch-card--pink .dotfield { background-image: radial-gradient(circle at 2px 2px, rgba(46,64,52,0.09) 2px, transparent 2.1px); }
.arch-card--pink .arch-card-frame { border-color: rgba(246,239,226,0.85); }
.arch-card--pink .card-note { color: #6B3520; }
.arch-card-frame { position: absolute; inset: 14px; border-radius: 148px 148px 3px 3px; border: 1px solid; }
.arch-card-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.card-note { font-size: 10px; letter-spacing: 0.16em; }

/* ---------- bookkeeping ---------- */
.books {
  position: relative; background: #A8B99A;
  padding: 92px clamp(18px, 5vw, 40px); overflow: hidden;
  border-top: 1px solid rgba(46,64,52,0.3); border-bottom: 1px solid rgba(46,64,52,0.3);
}
.books .dotfield { background-image: radial-gradient(circle at 2px 2px, rgba(46,64,52,0.06) 2px, transparent 2.1px); }
.books-grid {
  position: relative; max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px; align-items: center;
}
.books-title { margin: 0; font-family: 'Poiret One', cursive; font-size: clamp(21px, 3.8vw, 46px); line-height: 1.08; color: #21301F; }
.books-copy p { margin: 22px 0 30px; font-size: 20px; line-height: 1.62; color: #3B4536; font-weight: 300; text-wrap: pretty; }
.books-copy .btn--solid:hover { background: #2E4034; }
.shelves { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; }

.shelf {
  position: relative; height: 210px;
  border-radius: 999px 999px 6px 6px;
  border: 1px solid rgba(46,64,52,0.3); overflow: hidden;
  box-shadow: inset 0 0 0 6px rgba(250,245,234,0.7);
}
.shelf--offset { margin-top: 30px; }
.shelf--dark { border-color: rgba(46,64,52,0.5); box-shadow: inset 0 0 0 6px rgba(250,245,234,0.35); }
.shelf-row {
  position: absolute; left: 0; right: 0; bottom: 26px;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 4px; padding: 0 18px;
}
.shelf-rail { position: absolute; left: 14px; right: 14px; bottom: 16px; height: 7px; border-radius: 2px; background: rgba(46,64,52,0.55); }

.book {
  width: var(--w); height: var(--h);
  border-radius: 2px 2px 1px 1px;
  background: var(--bg);
  box-shadow: inset 0 8px 0 -6px var(--bandc), inset 0 -12px 0 -10px var(--bandc);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 8px;
  writing-mode: vertical-rl; text-orientation: mixed;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 7px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink, transparent);
  white-space: nowrap; overflow: hidden; cursor: pointer;
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}
.book:hover { transform: translateY(-14px) rotate(var(--tilt, 0deg)); }
.book--dotty { background-image: radial-gradient(var(--dot) 1.3px, transparent 1.4px); background-size: 6px 6px; }

/* ---------- contact ---------- */
.contact { background: #2E4034; color: #F6EFE2; padding: 88px clamp(18px, 5vw, 40px) 64px; position: relative; overflow: hidden; }
.contact .dotfield { background-image: radial-gradient(circle at 2px 2px, rgba(246,239,226,0.06) 2px, transparent 2.1px); }
.contact-inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; text-align: center; }
.contact-pin {
  display: block; width: 46px; height: 46px; margin: 0 auto 26px; border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, #C4622D 0deg 15deg, #E0A83C 15deg 30deg);
  animation: spin 30s linear infinite;
}
.contact-title { margin: 0; font-family: 'Poiret One', cursive; font-size: clamp(20px, 3.7vw, 44px); line-height: 1.1; }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px; margin: 34px auto 0; max-width: 620px; text-align: left;
}
.contact-col { display: flex; flex-direction: column; gap: 12px; }
.contact-label { margin: 0 0 4px; font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(246,239,226,0.55); }
.contact-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  align-self: start; color: #E0A83C;
  padding: 6px 0 4px; border-bottom: 1px solid rgba(224,168,60,0.5);
  overflow-wrap: anywhere; max-width: 100%;
}
.contact-link:hover { color: #F6EFE2; }
.contact-sig { margin: 56px 0 0; font-family: 'Courier Prime', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(246,239,226,0.45); }

/* Fills its positioned ancestor (portrait arch, still card, gallery card, lightbox) */
.ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Images sit inside each card's frame line, keeping the card mat visible around them */
.portrait .ph-img { inset: 16px; width: calc(100% - 32px); height: calc(100% - 32px); border-radius: 226px 226px 4px 4px; object-position: center top; }
.arch-card .ph-img { inset: 14px; width: calc(100% - 28px); height: calc(100% - 28px); border-radius: 148px 148px 3px 3px; }
.gcard .ph-img { inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); border-radius: 6px; }
.gcard .video-thumbnail { object-position: 15% center; }
.gcard .black-rabbit-thumbnail { object-position: 72% center; }
.gcard .richard-thumbnail { object-position: 70% center; }
.gcard .steel-magnolias-thumbnail { object-position: 57% center; }
.gcard .tempest-thumbnail { object-position: 38% center; }
.gcard .cymbeline-action-thumbnail { object-position: 28% center; }
.rail [data-shot="1"],
.rail [data-shot="2"],
.rail [data-shot="3"],
.rail [data-shot="6"],
.rail [data-shot="7"],
.rail [data-shot="8"],
.rail [data-shot="9"],
.rail [data-shot="10"],
.rail [data-shot="11"],
.rail [data-shot="12"],
.rail [data-shot="13"] { display: none; }
.lb-stage .ph-img { inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px); border-radius: 6px; }

/* ---------- shared page bits (actor + bookkeeping) ---------- */
.site-nav a.active { color: #C4622D; border-bottom-color: #C4622D; }
.label {
  margin: 0 0 18px; font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase;
}

/* ---------- actor: stage hero ---------- */
.stage {
  position: relative; background: #2E4034; color: #F6EFE2;
  padding: 78px clamp(18px, 5vw, 40px) 88px; overflow: hidden;
}
.stage .dotfield { background-image: radial-gradient(circle at 2px 2px, rgba(246,239,226,0.05) 2px, transparent 2.1px); }
.curtains { position: absolute; inset: 0; z-index: 5; pointer-events: none; display: flex; }
.curtains span {
  flex: 1; display: block; background: #21301F;
  background-image: repeating-linear-gradient(90deg, rgba(224,168,60,0.14) 0 12px, transparent 12px 24px);
}
.curtains span:first-child { animation: curtainL 1.85s cubic-bezier(0.7,0,0.3,1) both; }
.curtains span:last-child { animation: curtainR 1.85s cubic-bezier(0.7,0,0.3,1) both; }
.stage-rays {
  position: absolute; top: -300px; left: calc(50% - 450px);
  width: 900px; height: 900px; border-radius: 50%;
  background: repeating-conic-gradient(from 186deg, rgba(224,168,60,0.05) 0deg 4deg, rgba(46,64,52,0) 4deg 10deg);
}
.stage-inner { position: relative; max-width: 1080px; margin: 0 auto; text-align: center; animation: riseIn 0.9s cubic-bezier(0.2,0.8,0.2,1) both; }
.stage-title { margin: 0; font-family: 'Poiret One', cursive; font-size: clamp(38px, 6.8vw, 82px); line-height: 0.98; }
.stage-sub { margin: 26px auto 0; max-width: 600px; font-size: 21px; line-height: 1.62; color: rgba(246,239,226,0.8); font-weight: 300; text-wrap: pretty; }
.diamond-rule { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 34px 0 0; }
.diamond-rule .line { height: 1px; width: 60px; background: #E0A83C; display: block; }
.diamond-rule .diamond { width: 9px; height: 9px; background: #E0A83C; transform: rotate(45deg); display: block; }

/* ---------- actor: gallery rail ---------- */
.gal-section { padding: 78px 0 84px; }
.gal-head {
  display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap;
  gap: 16px; max-width: 1120px; margin: 0 auto 24px; padding: 0 clamp(18px, 5vw, 40px);
}
.gal-hint { margin: 0; font-family: 'Courier Prime', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #7E6A4F; }
.round-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(46,64,52,0.4); background: transparent; color: #2E4034;
  font-size: 16px; cursor: pointer; transition: background 0.3s, transform 0.3s;
}
.round-btn:hover { background: rgba(168,185,154,0.4); }
.round-btn--prev:hover { transform: translateX(-3px); }
.round-btn--next:hover { transform: translateX(3px); }
.rail {
  display: flex; gap: 18px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 20px clamp(32px, 6vw, 64px) 48px; scrollbar-width: thin;
}
.gcard {
  position: relative; flex: 0 0 clamp(190px, 24vw, var(--basis, 260px));
  height: clamp(300px, 42vw, 400px); scroll-snap-align: start;
  border-radius: 8px; overflow: hidden;
  background: var(--bg); border: 1px solid var(--bd, rgba(46,64,52,0.3));
  cursor: pointer; padding: 0;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.5s;
}
.gcard:hover,
.gcard:focus-visible { z-index: 2; transform: translateY(-10px); box-shadow: 0 26px 50px -22px rgba(46,64,52,0.55); }
.gcard--arch { border-radius: 999px 999px 8px 8px; }
.gcard--arch .ph-img,
.gcard--arch .gcard-frame { border-radius: 999px 999px 6px 6px; }
.gcard-dots { position: absolute; inset: 0; background: radial-gradient(circle at 2px 2px, var(--dot) 2px, transparent 2.1px); background-size: 26px 26px; }
.gcard-frame { position: absolute; inset: 10px; border-radius: 6px; border: 1px solid rgba(250,245,234,0.55); }
.gcard-foot { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; padding: 14px 16px; }
.gcard-plus {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(250,245,234,0.92); border: 1px solid rgba(46,64,52,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Josefin Sans', sans-serif; font-size: 15px; color: var(--chip); flex-shrink: 0;
}

/* ---------- actor: reel ---------- */
.reel-section { padding: 0 clamp(18px, 5vw, 40px) 84px; max-width: 1120px; margin: 0 auto; }
.reel-box {
  position: relative; overflow: hidden; aspect-ratio: 16 / 9;
  border-radius: 10px; background: #21301F;
  border: 1px solid rgba(46,64,52,0.6);
  box-shadow: 0 24px 55px -36px rgba(33,48,31,0.7);
}
.reel-box::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(224,168,60,0.32); border-radius: 6px; pointer-events: none; }
.reel-box iframe { position: absolute; inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px); border: 0; border-radius: 6px; background: #000; }

/* ---------- actor: lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(33,48,31,0.86);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  animation: lbFade 0.35s ease both; cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lb-inner { position: relative; width: min(880px, 100%); animation: lbRise 0.45s cubic-bezier(0.2,0.8,0.2,1) both; cursor: default; }
.lb-stage { position: relative; aspect-ratio: 4 / 3; border-radius: 10px; overflow: hidden; background: #EFE5D3; border: 1px solid rgba(250,245,234,0.5); }
.lb-stage .dotfield { background-image: radial-gradient(circle at 2px 2px, rgba(46,64,52,0.12) 2px, transparent 2.1px); background-size: 26px 26px; }
.lb-video { position: absolute; inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px); border: 0; border-radius: 6px; background: #000; object-fit: contain; }
.lb-video[hidden] { display: none; }
.lb-bar { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 18px; padding: 20px 4px 0; }
.lb-title { margin: 0 0 6px; font-family: 'Poiret One', cursive; font-size: clamp(22px, 3vw, 32px); color: #F6EFE2; }
.lb-meta { margin: 0; font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: #E0A83C; }
.lb-credit { margin: 6px 0 0; font-family: 'Courier Prime', monospace; font-size: 10px; letter-spacing: 0.12em; color: #7E6A4F; }
.lb-video-link { display: inline-block; margin-top: 9px; font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: #E0A83C; }
.lb-video-link[hidden] { display: none; }
.lb-controls { display: flex; align-items: center; gap: 12px; }
.lb-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(246,239,226,0.5); background: transparent; color: #F6EFE2;
  font-size: 16px; cursor: pointer; transition: background 0.3s, transform 0.3s;
}
.lb-btn:hover { background: rgba(246,239,226,0.14); }
.lb-btn--prev:hover { transform: translateX(-3px); }
.lb-btn--next:hover { transform: translateX(3px); }
.lb-close {
  height: 46px; padding: 0 22px; border-radius: 999px;
  border: 1px solid rgba(246,239,226,0.5); background: transparent; color: #F6EFE2;
  font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s;
}
.lb-close:hover { background: rgba(246,239,226,0.14); }

/* ---------- actor: resume ---------- */
.resume-section {
  position: relative; background: #EFE5D3;
  padding: 84px clamp(18px, 5vw, 40px);
  border-top: 1px solid rgba(46,64,52,0.16); border-bottom: 1px solid rgba(46,64,52,0.16);
}
.resume-section .dotfield { background-image: radial-gradient(circle at 1.5px 1.5px, rgba(46,64,52,0.07) 1.5px, transparent 1.6px); }
.resume-inner { position: relative; max-width: 1000px; margin: 0 auto; }
.resume-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin: 0 0 40px; }
.resume-title { margin: 0; font-family: 'Poiret One', cursive; font-size: clamp(20px, 3.7vw, 44px); color: #2E4034; }
.resume-dl {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Josefin Sans', sans-serif; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #B5591F; padding-bottom: 4px; border-bottom: 1px solid rgba(181,89,31,0.5);
}
.resume-dl:hover { color: #2E4034; }
.rrow {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px; padding: 16px 0; border-top: 1px solid rgba(46,64,52,0.2);
  align-items: baseline; transition: background 0.3s;
}
.rrow:hover { background: rgba(168,185,154,0.28); }
.rrow:last-child { border-bottom: 1px solid rgba(46,64,52,0.2); }
.rrow .credit { margin: 0; font-size: 22px; color: #2E4034; }
.rrow .role { margin: 0; font-size: 18px; font-style: italic; color: #6B5F4B; }
.rrow .co { margin: 0; font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: #7E6A4F; }

/* ---------- actor: training + quotes ---------- */
.training-section {
  padding: 84px clamp(18px, 5vw, 40px); max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 56px;
}
.tr-item { display: flex; gap: 16px; align-items: baseline; }
.tr-diamond { width: 9px; height: 9px; background: #C4622D; transform: rotate(45deg); flex-shrink: 0; }
.tr-item h3 { margin: 0; font-size: 22px; color: #2E4034; font-weight: 400; font-family: 'Cormorant Garamond', Georgia, serif; }
.tr-item .co { margin: 4px 0 0; font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #7E6A4F; }
.quote { margin: 0; padding: 26px 28px; border-radius: 8px; position: relative; overflow: hidden; }
.quote p { position: relative; margin: 0; font-size: 22px; line-height: 1.5; font-style: italic; }
.quote footer { position: relative; margin: 14px 0 0; font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; }
.quote--green { background: #A8B99A; }
.quote--green .dotfield { background-image: radial-gradient(circle at 2px 2px, rgba(33,48,31,0.06) 2px, transparent 2.1px); }
.quote--green p { color: #21301F; }
.quote--green footer { color: #3B4536; }
.quote--pink { background: #E2A08D; }
.quote--pink .dotfield { background-image: radial-gradient(circle at 2px 2px, rgba(46,64,52,0.07) 2px, transparent 2.1px); }
.quote--pink p { color: #58281A; }
.quote--pink footer { color: #6B3520; }

.skills-block { margin-top: 44px; }
.skills-copy { margin: 0; max-width: 520px; font-size: 20px; line-height: 1.65; color: #2E4034; }

/* ---------- actor: representation ---------- */
.rep {
  background: #2E4034; color: #F6EFE2;
  padding: 84px clamp(18px, 5vw, 40px) 64px; position: relative; overflow: hidden;
}
.rep .dotfield { background-image: radial-gradient(circle at 2px 2px, rgba(246,239,226,0.05) 2px, transparent 2.1px); }
.rep-grid { position: relative; max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 48px; }
.rep .label { margin-bottom: 16px; color: #E0A83C; }
.rep h2 { margin: 0 0 14px; font-family: 'Poiret One', cursive; font-size: clamp(17px, 3.2vw, 38px); }
.rep-copy { margin: 0; font-size: 19px; line-height: 1.6; color: rgba(246,239,226,0.78); font-weight: 300; }
.rep-link {
  display: inline-block; margin-top: 18px;
  font-family: 'Josefin Sans', sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #E0A83C; padding-bottom: 4px; border-bottom: 1px solid rgba(224,168,60,0.5);
  overflow-wrap: anywhere; max-width: 100%;
}
.rep-link:hover { color: #F6EFE2; }
.union-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; font-size: 18px; color: rgba(246,239,226,0.85); font-weight: 300; }
.union-list li { display: flex; gap: 12px; align-items: baseline; }
.union-list .dot { width: 7px; height: 7px; border-radius: 50%; background: #E2A08D; flex-shrink: 0; }
.rep-back { display: inline-block; margin: 26px 0 0; font-family: 'Josefin Sans', sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #A8B99A; }
.rep-back:hover { color: #F6EFE2; }
.rep-sig { position: relative; margin: 56px 0 0; text-align: center; font-family: 'Courier Prime', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(246,239,226,0.45); }

/* ---------- bookkeeping page ---------- */
.page-book { background: #FAF5EA; }
.page-book .site-header { background: rgba(250,245,234,0.94); }
.plan-hero { position: relative; padding: 88px clamp(18px, 5vw, 40px) 76px; overflow: hidden; border-bottom: 1px solid rgba(46,64,52,0.14); }
.plan-hero .dotfield { opacity: 0.4; background-image: radial-gradient(circle at 1.5px 1.5px, rgba(46,64,52,0.1) 1.5px, transparent 1.6px); background-size: 28px 28px; }
.plan-hero-inner { position: relative; max-width: 980px; margin: 0 auto; animation: riseIn 0.85s cubic-bezier(0.2,0.8,0.2,1) both; }
.plan-kicker { margin: 0 0 20px; font-family: 'Josefin Sans', sans-serif; font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; color: #7E9370; }
.plan-title { margin: 0; font-family: 'Poiret One', cursive; font-size: clamp(33px, 6.0vw, 72px); line-height: 1.02; color: #2E4034; max-width: 740px; text-wrap: balance; }
.plan-sub { margin: 28px 0 0; max-width: 600px; font-size: 21px; line-height: 1.65; color: #4A473F; font-weight: 300; text-wrap: pretty; }
.plan-quote { margin: 24px 0 0; max-width: 600px; font-style: italic; font-size: clamp(16px, 1.7vw, 20px); line-height: 1.5; color: #7E6A4F; }
.dot-rule { display: flex; align-items: center; gap: 14px; margin: 32px 0 0; }
.dot-rule span { display: block; background: #A8B99A; }
.dot-rule .l1 { height: 1px; width: 70px; }
.dot-rule .d { width: 8px; height: 8px; border-radius: 50%; }
.dot-rule .l2 { height: 1px; width: 26px; }

.offices { padding: 76px clamp(18px, 5vw, 40px); max-width: 1080px; margin: 0 auto; }
.offices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.office-card {
  position: relative; padding: 42px 30px 34px;
  background: #FFFFFF; border: 1px solid rgba(46,64,52,0.16);
  border-radius: 999px 999px 8px 8px; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s;
}
.office-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -26px rgba(46,64,52,0.4); }
.office-card h3 { margin: 0 0 12px; font-family: 'Poiret One', cursive; font-size: 27px; color: #2E4034; text-align: center; font-weight: 400; }
.office-card p { margin: 0; font-size: 18px; line-height: 1.6; color: #4A473F; font-weight: 300; text-align: center; }

.fit {
  position: relative; background: #E7EEDF; padding: 84px clamp(18px, 5vw, 40px);
  border-top: 1px solid rgba(46,64,52,0.16); border-bottom: 1px solid rgba(46,64,52,0.16); overflow: hidden;
}
.fit .dotfield { background-image: radial-gradient(circle at 2px 2px, rgba(46,64,52,0.06) 2px, transparent 2.1px); }
.fit-inner { position: relative; max-width: 900px; margin: 0 auto; }
.fit-title { margin: 0 0 34px; font-family: 'Poiret One', cursive; font-size: clamp(20px, 3.7vw, 44px); line-height: 1.1; color: #21301F; max-width: 620px; }
.fit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px 44px; }
.fit-item { display: flex; gap: 16px; align-items: flex-start; }
.fit-item .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 10px; }
.fit-item p { margin: 0; font-size: 19px; line-height: 1.6; color: #3B4536; font-weight: 300; }
.fit-note { margin: 34px 0 0; font-size: 18px; line-height: 1.6; color: #4A5A47; font-style: italic; }

.fees { padding: 84px clamp(18px, 5vw, 40px); max-width: 1000px; margin: 0 auto; }
.fees-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.fee-card { padding: 34px 30px; background: #FFFFFF; border: 1px solid rgba(46,64,52,0.18); border-radius: 8px; }
.fee-card .label { margin-bottom: 10px; letter-spacing: 0.24em; color: #7E9370; }
.fee-card h3 { margin: 0 0 6px; font-family: 'Poiret One', cursive; font-size: 30px; color: #2E4034; font-weight: 400; }
.fee-price { margin: 0 0 16px; font-size: 28px; color: #C4622D; }
.fee-card > p:last-child { margin: 0; font-size: 18px; line-height: 1.6; color: #4A473F; font-weight: 300; }
.fee-card--dark { background: #2E4034; border-color: rgba(46,64,52,0.4); color: #F6EFE2; }
.fee-card--dark .label { color: #E0A83C; }
.fee-card--dark h3 { color: #F6EFE2; }
.fee-card--dark .fee-price { color: #E0A83C; }
.fee-card--dark > p:last-child { color: rgba(246,239,226,0.82); }
.fees-note { margin: 26px 0 0; font-size: 18px; line-height: 1.6; color: #6B5F4B; font-style: italic; }

.faq {
  position: relative; background: #F6DCD2; padding: 84px clamp(18px, 5vw, 40px);
  border-top: 1px solid rgba(46,64,52,0.16); border-bottom: 1px solid rgba(46,64,52,0.16); overflow: hidden;
}
.faq .dotfield { background-image: radial-gradient(circle at 2px 2px, rgba(107,53,32,0.05) 2px, transparent 2.1px); }
.faq-inner { position: relative; max-width: 780px; margin: 0 auto; }
.faq-title { margin: 0 0 34px; font-family: 'Poiret One', cursive; font-size: clamp(19px, 3.5vw, 42px); color: #58281A; }
.faq-item { padding: 22px 0; border-top: 1px solid rgba(88,40,26,0.22); }
.faq-item:last-child { border-bottom: 1px solid rgba(88,40,26,0.22); }
.faq-item h3 { margin: 0 0 8px; font-size: 24px; color: #58281A; font-weight: 600; font-family: 'Cormorant Garamond', Georgia, serif; }
.faq-item p { margin: 0; font-size: 19px; line-height: 1.6; color: #6B4034; font-weight: 300; }

.book-cta { position: relative; background: #2E4034; color: #F6EFE2; padding: 88px clamp(18px, 5vw, 40px) 64px; overflow: hidden; }
.book-cta .dotfield { background-image: radial-gradient(circle at 2px 2px, rgba(246,239,226,0.05) 2px, transparent 2.1px); }
.book-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; text-align: center; }
.book-title { margin: 0; font-family: 'Poiret One', cursive; font-size: clamp(21px, 3.8vw, 46px); line-height: 1.08; }
.book-sub { margin: 20px auto 32px; max-width: 520px; font-size: 20px; line-height: 1.62; color: rgba(246,239,226,0.8); font-weight: 300; }
.book-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn--gold { padding: 16px 32px; background: #E0A83C; color: #21301F; }
.btn--gold:hover { transform: translateY(-3px); color: #21301F; }
.btn--ghostlight { padding: 16px 32px; border: 1px solid rgba(246,239,226,0.4); color: #F6EFE2; }
.btn--ghostlight:hover { transform: translateY(-3px); color: #F6EFE2; }
.book-legal { margin: 44px 0 0; font-size: 17px; line-height: 1.6; color: rgba(246,239,226,0.6); font-weight: 300; }

/* ---------- financial services ---------- */
.client-section,
.services-section,
.about-story,
.about-cta { padding: 76px clamp(18px, 5vw, 40px); max-width: 1080px; margin: 0 auto; }
.client-list { margin: 18px 0 0; max-width: 920px; font-size: clamp(23px, 3.2vw, 38px); line-height: 1.35; color: #2E4034; font-weight: 300; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; }
.service-card { padding: 34px 30px; background: #FFFFFF; border: 1px solid rgba(46,64,52,0.18); border-radius: 8px; }
.service-card h2 { margin: 0 0 14px; font-family: 'Poiret One', cursive; font-size: 30px; color: #2E4034; font-weight: 400; }
.service-card p { margin: 0; font-size: 18px; line-height: 1.6; color: #4A473F; font-weight: 300; }
.service-card .service-price { margin-top: 20px; font-family: 'Josefin Sans', sans-serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #B5591F; font-weight: 600; }
.service-card--dark { background: #2E4034; border-color: #2E4034; }
.service-card--dark h2 { color: #F6EFE2; }
.service-card--dark p { color: rgba(246,239,226,0.82); }
.service-card--dark .service-price { color: #E0A83C; }
.expertise-section { position: relative; padding: 76px clamp(18px, 5vw, 40px); background: #E7EEDF; overflow: hidden; border-block: 1px solid rgba(46,64,52,0.14); }
.expertise-inner { position: relative; max-width: 900px; margin: 0 auto; }
.expertise-inner > p:last-child { margin: 18px 0 0; font-size: clamp(21px, 2.7vw, 31px); line-height: 1.5; color: #2E4034; font-weight: 300; }

/* ---------- about ---------- */
.about-hero { position: relative; padding: 92px clamp(18px, 5vw, 40px) 80px; background: #F6DCD2; overflow: hidden; }
.about-hero .dotfield { background-image: radial-gradient(circle at 2px 2px, rgba(88,40,26,0.07) 2px, transparent 2.1px); }
.about-inner { position: relative; max-width: 960px; margin: 0 auto; }
.about-title { margin: 12px 0 26px; max-width: 760px; font-family: 'Poiret One', cursive; font-size: clamp(42px, 7vw, 82px); line-height: 1.02; color: #58281A; font-weight: 400; }
.about-lede { margin: 0; max-width: 760px; font-size: clamp(20px, 2.3vw, 27px); line-height: 1.6; color: #6B4034; font-weight: 300; }
.about-story { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.85fr); gap: clamp(36px, 7vw, 80px); align-items: start; }
.about-prose { display: grid; gap: 24px; }
.about-prose p { margin: 0; font-size: 21px; line-height: 1.7; color: #3F443C; font-weight: 300; }
.about-note { padding: 32px; background: #E7EEDF; border: 1px solid rgba(46,64,52,0.16); border-radius: 999px 999px 8px 8px; }
.about-note > p:not(.label) { font-size: 18px; line-height: 1.65; color: #3B4536; font-weight: 300; }
.about-note .about-unions { margin-bottom: 0; font-family: 'Josefin Sans', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.about-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; }

/* ---------- contact page ---------- */
.contact-page { position: relative; min-height: calc(100vh - 112px); padding: 100px clamp(18px, 5vw, 40px) 72px; background: #2E4034; color: #F6EFE2; overflow: hidden; }
.contact-page .dotfield { background-image: radial-gradient(circle at 2px 2px, rgba(246,239,226,0.055) 2px, transparent 2.1px); }
.contact-page-inner { position: relative; max-width: 920px; margin: 0 auto; }
.contact-page-title { margin: 10px 0 52px; font-family: 'Poiret One', cursive; font-size: clamp(54px, 9vw, 104px); line-height: 1; font-weight: 400; }
.contact-page-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 48px; padding-top: 34px; border-top: 1px solid rgba(246,239,226,0.2); }
.contact-page-grid h2 { margin: 8px 0 0; font-family: 'Poiret One', cursive; font-size: 32px; font-weight: 400; }

@media (max-width: 700px) {
  .about-story { grid-template-columns: 1fr; }
  .site-nav { gap: 10px 16px; font-size: 9px; letter-spacing: 0.14em; }
  .brand,
  .site-nav a { min-height: 32px; }
  .site-nav a { display: inline-flex; align-items: center; }
}

@media (max-height: 520px) and (orientation: landscape) {
  .lightbox { align-items: flex-start; overflow-y: auto; padding: 12px; }
  .lb-inner {
    width: min(600px, calc((100vh - 132px) * 1.3333));
    width: min(600px, calc((100svh - 132px) * 1.3333));
    margin: auto;
  }
  .lb-bar { align-items: center; gap: 10px; padding-top: 10px; }
  .lb-title { margin-bottom: 4px; font-size: 20px; }
  .lb-meta,
  .lb-credit { font-size: 9px; }
  .lb-controls { margin-left: auto; }
  .lb-btn { width: 40px; height: 40px; }
  .lb-close { height: 40px; padding-inline: 18px; }
}

/* ---------- scroll reveal ---------- */
.rv {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.2,0.8,0.2,1), transform 0.8s cubic-bezier(0.2,0.8,0.2,1);
  transition-delay: var(--rv-delay, 0s);
}
.rv.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rv { opacity: 1; transform: none; }
  /* the curtain reveal only makes sense animated — without it the curtains would cover the hero */
  .curtains { display: none; }
}
