/* CLICK OBJECTS — v3
   gallery cinema · museum quiet · one gesture per scroll.
   ------------------------------------------------------------ */

:root{
  --paper:        #fbfaf6;
  --ink:          #15151a;
  --ink-soft:     #3a3a40;
  --ink-mute:     #8b8a88;

  --rule:         rgba(21,21,26,.10);
  --rule-soft:    rgba(21,21,26,.05);

  /* 8 royal pop accents */
  --c-red:    #c0292e;
  --c-white:  #f2efe7;
  --c-green:  #2f8a5a;
  --c-blue:   #1c3a78;
  --c-yellow: #e8c44a;
  --c-black:  #181818;
  --c-cyan:   #6db4d6;
  --c-pink:   #d56796;

  --serif: "Fraunces", "EB Garamond", "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "EB Garamond", "Cormorant Garamond", -apple-system, "Helvetica Neue", serif;
  --mono:  "Geist Mono", "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  --display-settings: 'opsz' 96, 'SOFT' 100;

  --gut: clamp(20px, 4vw, 64px);
}

*{ box-sizing:border-box; margin:0; padding:0; }

html, body{
  background: #efece4;            /* if everything fails, we're still calm */
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body{ overflow-x: hidden; }

img, video{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
::selection{ background: var(--ink); color: var(--paper); }

/* ===========================================================
   FIXED VIDEO BASE — protagonist
   =========================================================== */

.base{
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #ffffff;
  pointer-events: none;
}
.base video{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  /* keep the cinematic clouds visible, just lift them a touch */
  filter: brightness(1.12) contrast(0.96) saturate(0.85);
}
.base video.is-on{ opacity: 1; }
.base::after{
  /* very gentle veil — top whiter for type, middle clear, bottom whiter for footer */
  content:"";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0) 70%, rgba(255,255,255,.22) 100%);
  pointer-events: none;
}

/* cloud fallback shapes if video missing */
.cloud{
  position:absolute; inset:0;
  background:
    radial-gradient(45% 35% at 25% 30%, #ffffff 0%, rgba(255,255,255,0) 70%),
    radial-gradient(50% 40% at 75% 60%, #ffffff 0%, rgba(255,255,255,0) 70%),
    radial-gradient(60% 50% at 50% 90%, #ffffff 0%, rgba(255,255,255,0) 70%);
  filter: blur(10px);
  animation: cloud-breathe 30s ease-in-out infinite alternate;
}
@keyframes cloud-breathe{
  to{ transform: translate3d(2vw, -1vh, 0) scale(1.08); }
}

/* ===========================================================
   TINY CHROME — never compete with the work
   =========================================================== */

.mark{
  position: fixed;
  top: 22px; left: var(--gut);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
}
.mark .mark-logo{
  height: 28px;
  width: auto;
  display: block;
  /* the wordmark_light is white outline — drop a soft shadow so it survives any video frame */
  filter: drop-shadow(0 1px 8px rgba(0,0,0,.30)) drop-shadow(0 0 2px rgba(0,0,0,.20));
  opacity: .95;
  transition: opacity .25s, transform .4s ease;
}
.mark a:hover .mark-logo{ opacity: 1; transform: scale(1.04); }
@media (max-width: 600px){
  .mark .mark-logo{ height: 22px; }
}

.ctx{
  position: fixed;
  bottom: 22px; right: var(--gut);
  z-index: 50;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: right;
  line-height: 1.7;
  mix-blend-mode: difference;
  filter: invert(1);
}
.ctx a:hover{ opacity:.5; }

/* scroll progress hairline */
.progress{
  position: fixed;
  top: 0; left:0;
  height: 1px;
  background: linear-gradient(90deg,
      #c0292e, #de7038, #e8c44a, #2f8a5a, #6db4d6, #1c3a78, #6c4ea8, #d56796);
  z-index: 60;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .15s linear;
}

/* ===========================================================
   SCREENS — each section is one big quiet gesture
   =========================================================== */

.shell{ position: relative; z-index: 2; }

.screen{
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(80px, 14vh, 140px) var(--gut);
}

.screen.tall{ min-height: 120vh; }
.screen.short{ min-height: 70vh; }

.fade{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.6s cubic-bezier(.2,.7,.2,1), transform 1.6s cubic-bezier(.2,.7,.2,1);
}
.fade.in{ opacity: 1; transform: none; }

.fade.slow{ transition-duration: 2.4s; }

/* ===========================================================
   001 — TITLE BREATH
   over the video. Tiny watermark only.
   =========================================================== */

.title-breath{
  text-align: center;
}
.brandmark{
  display: block;
  margin: 0 auto;
  width: min(560px, 70vw);
  height: auto;
  filter: drop-shadow(0 6px 30px rgba(0,0,0,.18));
  animation: float 9s ease-in-out infinite;
}
@keyframes float{
  50%{ transform: translateY(-8px); }
}
.title-breath .sub{
  margin-top: clamp(28px, 4vh, 56px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.rainbow.inline{
  display: inline-block;
  width: 80px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg,
      #c0292e 0%, #de7038 14%, #e8c44a 28%, #2f8a5a 44%,
      #6db4d6 58%, #1c3a78 72%, #6c4ea8 85%, #d56796 100%);
  background-size: 240% 100%;
  animation: rainbow-shift 28s linear infinite;
  vertical-align: middle;
}
@keyframes rainbow-shift{
  to{ background-position: -240% 0; }
}

.scroll-cue{
  position:absolute;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 56px;
  background: linear-gradient(180deg, transparent 0%, var(--ink) 100%);
  opacity:.35;
  animation: cue 2.6s ease-in-out infinite;
}
@keyframes cue{
  50%{ transform: translate(-50%, 10px); opacity:.7; }
}

/* ===========================================================
   002 — INVITATION STATEMENT (one line, big, alone)
   =========================================================== */

.statement{
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.statement .line{
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: var(--display-settings);
  font-size: clamp(34px, 5vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.statement .line em{ font-style: italic; }
.statement .meta{
  margin-top: 56px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.statement .meta span.dot{
  display:inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--ink); margin: 0 14px; vertical-align: middle;
}

/* a soft white halo behind any content that sits over the video — keeps type readable without a hard card edge */
.halo{
  position: relative;
  display: block;
  isolation: isolate;
}
.halo::before{
  content:"";
  position: absolute;
  inset: -10% -8%;
  background: radial-gradient(60% 60% at 50% 50%, rgba(255,255,255,.85) 0%, rgba(255,255,255,.55) 55%, rgba(255,255,255,0) 100%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(8px);
}
.halo.pad{ padding: clamp(40px, 6vw, 96px) clamp(28px, 5vw, 96px); }

/* ===========================================================
   003 — FULL-BLEED OBJECT
   =========================================================== */

.full{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);   /* break out of grid */
  height: 100vh;
  overflow: hidden;
}
.full img{
  position:absolute; inset:0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.02);
  transition: transform 18s ease-in-out;
}
.full.in img{ transform: scale(1.10); }
.full .cap{
  position: absolute;
  bottom: clamp(28px, 6vh, 64px); left: var(--gut);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
  line-height: 1.8;
  max-width: 60%;
}
.full .cap em{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 42px);
  text-transform: none;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 12px;
  color: #fff;
}
.full::after{
  /* gentle vignette */
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}

/* ===========================================================
   004 — THE EIGHT (just names, in a column. art-edition feel)
   =========================================================== */

.eight-list{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.eight-list .lede{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 30px);
  color: var(--ink-soft);
  margin-bottom: clamp(36px, 5vh, 72px);
  line-height: 1.35;
}
.eight-list ol{
  list-style: none;
  display: grid;
  gap: 18px;
  font-family: var(--serif);
  font-variation-settings: var(--display-settings);
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.eight-list li{
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 22px;
  padding: 14px 0;
  border-top: 1px solid var(--rule-soft);
  font-style: italic;
  color: var(--ink);
  text-align: left;
}
.eight-list li:last-child{ border-bottom: 1px solid var(--rule-soft); }
.eight-list li .dot{
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--c, #ccc);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
  justify-self: center;
}
.eight-list li .lg{
  font-family: var(--mono);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  justify-self: end;
}

/* ===========================================================
   005 — THE ARTIST
   =========================================================== */

.artist{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 140px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 900px){ .artist{ grid-template-columns: 1fr; } }
.artist figure{
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.artist figure img{
  width:100%; height:100%; object-fit: cover;
  transition: transform 18s ease-in-out;
}
.artist figure.in img{ transform: scale(1.06); }
.artist .body{
  position: relative;
}
.artist .body .who{
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.artist .body h2{
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: var(--display-settings);
  font-size: clamp(48px, 6vw, 96px);
  line-height: .95;
  letter-spacing: -0.025em;
  margin-bottom: clamp(28px, 4vh, 48px);
}
.artist .body h2 em{ font-style: italic; }
.artist .body p{
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1em;
  max-width: 36ch;
}
.artist .body .quote{
  margin-top: 36px;
  padding-left: 18px;
  border-left: 1px solid var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.35;
  color: var(--ink-soft);
  max-width: 30ch;
}
.artist .body .quote .name{
  display: block;
  margin-top: 14px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ===========================================================
   006 — IN SITU (full-bleed photo)
   reuses .full
   =========================================================== */

/* ===========================================================
   007 — INVITATION (no form theatre, a written letter)
   =========================================================== */

.invitation{
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}
.invitation .preamble{
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 36px;
}
.invitation h2{
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: var(--display-settings);
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: clamp(28px, 4vh, 48px);
}
.invitation h2 em{ font-style: italic; }
.invitation p{
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.1em;
  max-width: 42ch;
}
.invitation p em{ font-style: italic; }
.invitation .write{
  margin-top: clamp(40px, 5vh, 72px);
  display: flex; align-items: baseline; gap: 22px;
  flex-wrap: wrap;
}
.invitation .write a{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: var(--display-settings);
  font-size: clamp(28px, 3.4vw, 52px);
  letter-spacing: -0.015em;
  color: var(--ink);
  position: relative;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: padding-bottom .3s, letter-spacing .3s;
}
.invitation .write a:hover{
  padding-bottom: 10px;
}
.invitation .write .badge{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.invitation .anti{
  margin-top: clamp(48px, 6vh, 84px);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 2;
  max-width: 50ch;
}

/* Invitation logo (top of each split section: qualify · request · about) */
.invitation-logo{
  display: block;
  width: clamp(72px, 7vw, 108px);
  height: auto;
  margin: 0 0 clamp(28px, 4vh, 44px) 0;
  opacity: 0.96;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.45));
}

/* About section · 2-col bio grid */
.about-screen .about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  margin-top: clamp(24px, 3vh, 40px);
  max-width: 100%;
}
@media (max-width: 800px){
  .about-screen .about-grid{ grid-template-columns: 1fr; gap: 44px; }
}
.about-block h3{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: var(--display-settings);
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.about-block .about-meta{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink-mute);
  max-width: 32ch;
}
.about-block p{
  font-family: var(--serif);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 14px;
  max-width: 44ch;
}
.about-block p:last-child{ margin-bottom: 0; }
.about-block p em{ font-style: italic; color: var(--ink-mute); }

/* ===========================================================
   FOOTER — almost invisible
   =========================================================== */

footer{
  position: relative;
  z-index: 2;
  padding: 64px var(--gut) 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: rgba(255,255,255,.6);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-top: 1px solid var(--rule);
}
footer .wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
}
footer .foot-mark{
  display: inline-flex;
  align-items: center;
}
footer .foot-mark img{
  height: 28px;
  width: auto;
  display: block;
  opacity: .9;
}
footer a:hover{ color: var(--ink); }
