/** Shopify CDN: Minification failed

Line 475:0 Unexpected "}"

**/
:root{
  --ink:#000000;
  --bone:#FFFFFF;
  --gold:#C5A253;
  --gold-dim:#8A7038;
  --grey:#8A8A8A;
  --grey-dim:#5E5E5E;
  --pad:clamp(20px,5vw,64px);
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  background:var(--ink);
  color:var(--bone);
  font-family:'Archivo',system-ui,sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* ---- procedural dust: original texture, no licensed imagery ---- */
.grain{
  position:fixed; inset:0;
  width:100%; height:100%;   /* required: an <svg> is a replaced element, so inset alone
                                leaves it at its intrinsic 300x150 and it renders as a
                                lightened box in the top-left corner */
  pointer-events:none; z-index:2;
  opacity:.10; mix-blend-mode:screen;
}
.haze{
  position:fixed; left:50%; bottom:-10vh;
  width:150vw; height:70vh; transform:translateX(-50%);
  pointer-events:none; z-index:1;
  background:radial-gradient(ellipse at 50% 100%,
     rgba(197,162,83,.16) 0%,
     rgba(197,162,83,.06) 38%,
     rgba(197,162,83,0) 70%);
  animation:drift 26s ease-in-out infinite alternate;
}
@keyframes drift{
  from{transform:translateX(-52%) scale(1)}
  to  {transform:translateX(-48%) scale(1.09)}
}

.wrap{
  position:relative; z-index:3;
  min-height:100%;
  display:flex; flex-direction:column;
  padding:var(--pad);
}

/* ---- utility label: wide-tracked mono ---- */
.lab{
  font-family:'Space Mono',ui-monospace,monospace;
  font-size:10px; letter-spacing:.30em; text-transform:uppercase;
  color:var(--gold);
}

header{display:flex;justify-content:space-between;align-items:baseline;gap:16px}
header .lab.mute{color:var(--grey)}

main{
  flex:1;
  display:flex; flex-direction:column; justify-content:center;
  padding:8vh 0 6vh;
}

.mark{
  width:min(78vw,760px);
  margin-bottom:clamp(22px,4.5vw,44px);
}
.mark svg{width:100%;height:auto;display:block;color:var(--bone)}

/* ---- signature: one gold hairline = horizon, stitch, field underline ---- */
.horizon{
  position:relative;
  height:1px; background:var(--gold);
  margin:0 calc(var(--pad) * -1) clamp(26px,5vw,52px);
  transform-origin:left center;
}
.horizon::after{
  content:''; position:absolute; left:0; right:0; top:-1px; height:3px;
  background:linear-gradient(90deg,transparent,rgba(197,162,83,.5),transparent);
  filter:blur(2px);
}

.state{
  font-family:'Archivo Black',sans-serif;
  font-size:clamp(26px,5.4vw,58px);
  line-height:1.04; letter-spacing:-.025em;
  max-width:15ch;
  text-transform:uppercase;
}
/* contrast by spacing, not by genre: the line tightens, then opens */
.state em{
  font-style:normal;
  color:var(--gold);
  letter-spacing:.10em;
  margin-right:-.10em;
}

.facts{margin-top:clamp(26px,4.6vw,52px)}
.facts span{
  font-family:'Space Mono',monospace;
  font-size:11px; letter-spacing:.20em; text-transform:uppercase; color:var(--grey);
}
.facts b{color:var(--bone);font-weight:400}

/* ---- waitlist ---- */
.signup{margin-top:clamp(24px,3.4vw,38px);max-width:600px}
.signup .lab{display:block;margin-bottom:16px}
.field{display:flex;align-items:center;gap:18px;border-bottom:1.5px solid var(--gold);padding-bottom:18px;transition:border-color .2s}
.field input{
  flex:1; background:none; border:0; outline:none;
  color:var(--bone); font-family:'Archivo',sans-serif;
  font-size:clamp(17px,2.3vw,22px); letter-spacing:.01em;
}
.field input::placeholder{color:#6B6B6B}
.field input:focus-visible{outline:none}
.field:focus-within{border-bottom-color:var(--bone)}
.field button{
  background:none;border:0;cursor:pointer;padding:6px 2px;white-space:nowrap;
  font-family:'Space Mono',monospace;font-size:12px;letter-spacing:.26em;
  text-transform:uppercase;color:var(--gold);transition:color .2s;
}
.field button:hover{color:var(--bone)}
.field button:focus-visible{outline:1px solid var(--gold);outline-offset:4px}
.note{margin-top:14px;font-weight:600;font-size:clamp(14px,1.15vw,16px);color:#D3CDC3;line-height:1.5}
.msg{margin-top:14px;font-family:'Space Mono',monospace;font-size:11px;
     letter-spacing:.18em;text-transform:uppercase;color:var(--gold);min-height:1em}

/* ---- footer ---- */
footer{
  display:flex; gap:clamp(36px,9vw,120px); flex-wrap:wrap;
  padding-top:clamp(28px,4.4vw,44px);
  border-top:1px solid #262626;
}
footer .col{display:flex;flex-direction:column;gap:9px}
footer .lab{margin-bottom:3px}
.social{display:flex;flex-direction:column;gap:9px}
.social a,.contact a{
  font-family:'Space Mono',monospace;font-size:11px;letter-spacing:.14em;
  color:var(--grey);text-decoration:none;transition:color .2s;
}
.social a{letter-spacing:.20em;text-transform:uppercase}
.social a:hover,.social a:focus-visible,.contact a:hover,.contact a:focus-visible{color:var(--gold)}
.contact{display:flex;flex-direction:column;gap:9px}
.contact .k{
  display:block;color:var(--grey-dim);letter-spacing:.24em;text-transform:uppercase;
  font-size:9px;margin-bottom:3px;
}

/* ---- entrance ---- */
.rise{opacity:0;transform:translateY(14px);animation:rise .9s cubic-bezier(.2,.7,.2,1) forwards}
.d1{animation-delay:.15s}.d2{animation-delay:.55s}.d3{animation-delay:.72s}
.d4{animation-delay:.86s}.d5{animation-delay:1s}.d6{animation-delay:1.14s}
@keyframes rise{to{opacity:1;transform:none}}
.draw{transform:scaleX(0);animation:draw 1.1s cubic-bezier(.65,0,.35,1) .35s forwards}
@keyframes draw{to{transform:scaleX(1)}}

@media (max-width:640px){
  .mark{width:88vw}
  footer{gap:32px}
}
@media (prefers-reduced-motion:reduce){
  .rise,.draw,.haze{animation:none;opacity:1;transform:none}
  .draw{transform:scaleX(1)}
}

/* ---------- theme additions ---------- */

/* Liquid richtext wraps the headline in <p>; keep it as the h1 */
.state p{margin:0}

/* accessible label hiding */
.visually-hidden{
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}

/* Shopify form tag emits a <form>; .field already styles it */
form.field{margin:0}

/* merchant-editable password message from Shopify admin */
.shopmsg{
  margin-top:clamp(14px,2.4vw,22px);
  max-width:52ch;font-size:14px;line-height:1.6;color:var(--grey);
}
.shopmsg p{margin:0 0 8px}
.shopmsg p:last-child{margin-bottom:0}

/* inline form errors from Shopify */
.errors,.error-message,.msg ul{
  list-style:none;margin:0;padding:0;
  font-family:'Space Mono',monospace;font-size:11px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--gold);
}

/* discreet storefront-password entry, tucked in the footer */
.enter{margin-left:auto}
.pw summary{
  font-family:'Space Mono',monospace;font-size:11px;letter-spacing:.20em;
  text-transform:uppercase;color:var(--grey-dim);cursor:pointer;list-style:none;
  transition:color .2s;
}
.pw summary::-webkit-details-marker{display:none}
.pw summary:hover,.pw summary:focus-visible{color:var(--gold)}
.pw form{display:flex;gap:12px;align-items:center;margin-top:12px}
.pw input{
  background:none;border:0;border-bottom:1px solid #2E2E2E;outline:none;
  color:var(--bone);font-family:'Archivo',sans-serif;font-size:13px;
  padding-bottom:6px;width:150px;
}
.pw input:focus{border-bottom-color:var(--gold)}
.pw button{
  background:none;border:0;cursor:pointer;padding:0;
  font-family:'Space Mono',monospace;font-size:10px;letter-spacing:.20em;
  text-transform:uppercase;color:var(--gold);
}
@media (max-width:860px){ .enter{margin-left:0} }

/* optional studio credit — deliberately quiet */
.credit{margin-top:clamp(18px,2.6vw,26px);text-align:right}
.credit a{
  font-family:'Space Mono',monospace;font-size:9px;letter-spacing:.18em;
  text-transform:uppercase;color:#3A3A3A;text-decoration:none;transition:color .25s;
}
.credit a:hover,.credit a:focus-visible{color:var(--grey-dim)}

/* fallback <img> wordmark cannot inherit currentColor */
.mark img{width:100%;height:auto;display:block}


/* ============================================================
   VIDEO HERO  —  replaces the old type-only block
   ============================================================ */

.wrap{ padding:0; display:block; min-height:100%; }

.hero{
  position:relative;
  width:100%;
  height:100vh;
  height:100svh;
  min-height:520px;
  overflow:hidden;
  background:var(--ink);
}
@supports not (height:100svh){ .hero{ height:100vh; } }

.hero-media{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:38% center;   /* keeps the driver in frame when cropped */
  z-index:0;
}

/* legibility scrim: darkens top and bottom only, leaves the middle clean */
.hero-veil{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 26%),
    linear-gradient(to top,    rgba(0,0,0,.70) 0%, rgba(0,0,0,0) 42%);
}

.hero .grain{ position:absolute; inset:0; width:100%; height:100%; opacity:.07; z-index:2; }

.hero-inner{
  position:relative; z-index:3;
  height:100%;
  display:flex; flex-direction:column;
  padding:var(--pad);
  box-sizing:border-box;
}

.hero-top{
  display:flex; justify-content:space-between; align-items:baseline; gap:16px;
}

.hero .mark{
  width:46vw;
  max-width:480px;
  margin:auto auto;              /* optically centred in the frame */
}
.hero .mark svg{ width:100%; height:auto; display:block; color:var(--bone); }
.hero .mark img{ width:100%; height:auto; display:block; }

.hero-foot{ margin-top:auto; }

.state{
  font-family:'Archivo Black',sans-serif;
  font-size:clamp(22px,3.9vw,44px);
  line-height:1.05; letter-spacing:-.02em;
  text-transform:uppercase;
  color:var(--bone);
  margin:0;
  text-shadow:0 1px 24px rgba(0,0,0,.45);
}
.hero-foot{ max-width:min(100%, 46ch); }
.substate{
  /* Archivo 600 to match the bold proportional sans in the campaign video.
     Not Archivo Black — that would compete with the headline above it. */
  font-family:'Archivo',system-ui,sans-serif;
  font-weight:600;
  font-size:clamp(12px,1.2vw,14px);
  letter-spacing:.08em; text-transform:uppercase;
  color:#E6E1D8;
  margin:12px 0 0;
  text-shadow:0 1px 18px rgba(0,0,0,.5);
}

/* gold line sits between the video and the waitlist */
.horizon{
  position:relative;
  height:1px; background:var(--gold);
  margin:0; width:100%;
  transform-origin:left center;
}
.horizon::after{
  content:''; position:absolute; left:0; right:0; top:-1px; height:3px;
  background:linear-gradient(90deg,transparent,rgba(197,162,83,.5),transparent);
  filter:blur(2px);
}

/* ---------- everything below the video ---------- */
.below{
  position:relative; z-index:3;
  padding:var(--pad);
}
.below .facts{ margin-top:0; }
.below .signup{ margin-top:clamp(24px,3.4vw,38px); }
.below footer{ margin-top:clamp(34px,5vw,60px); }

/* reduced motion: hold the poster frame instead of playing */
@media (prefers-reduced-motion:reduce){
  .hero-media{ display:none; }
  .hero{
    background-image:url("jac-poster.jpg");
    background-size:cover;
    background-position:38% center;
  }
}

@media (max-width:640px){
  .hero{ height:88vh; height:88svh; min-height:460px; }
  .hero .mark{ width:72vw; max-width:none; }
  .hero-media{ object-position:34% center; }
  .state{ font-size:clamp(20px,6.4vw,30px); }
  .hero-foot{ max-width:min(100%, 46ch); }
}

/* ============================================================
   LAYOUT B  —  wordmark block, video as a band beneath
   ============================================================ */

.topblock{
  padding:var(--pad) var(--pad) clamp(20px,3.4vw,40px);
  background:var(--ink);
}
.topblock .hero-top{
  display:flex; justify-content:space-between; align-items:baseline; gap:16px;
  margin-bottom:clamp(26px,5vw,60px);
}
.topblock .mark{ width:76vw; max-width:840px; }
.topblock .mark svg{ width:100%; height:auto; display:block; color:var(--bone); }
.topblock .mark img{ width:100%; height:auto; display:block; }

.hero--band{
  height:52vh;
  min-height:300px;
  max-height:620px;
}
.hero--band .hero-inner{ justify-content:flex-end; }
.hero--band .hero-veil{
  background:linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,0) 52%);
}
.hero--band .state{ font-size:clamp(20px,3.1vw,34px); }

@media (max-width:640px){
  .topblock .mark{ width:86vw; max-width:none; }
  .hero--band{ height:42vh; min-height:240px; }
}

/* ============================================================
   LAYOUT A (overlay) — waitlist sits inside the hero
   ============================================================ */
.hero--overlay{ height:auto; min-height:100vh; min-height:100svh; }
.hero--overlay .hero-inner{ min-height:100vh; min-height:100svh; }
.hero--overlay .mark{ width:38vw; max-width:400px; }

/* stronger bottom scrim: the form lives here, legibility first */
.hero--overlay .hero-veil{
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 24%),
    linear-gradient(to top,    rgba(0,0,0,.88) 0%, rgba(0,0,0,.62) 32%, rgba(0,0,0,0) 64%);
}
.hero--overlay .hero-foot{ max-width:640px; }
.hero--overlay .signup{ margin-top:clamp(22px,3.4vw,36px); max-width:560px; }
.hero--overlay .field input{ text-shadow:0 1px 14px rgba(0,0,0,.5); }
.hero--overlay .field input::placeholder{ color:#9A9A9A; }
.hero--overlay .note{ text-shadow:0 1px 14px rgba(0,0,0,.6); }
.hero--overlay .state{ font-size:clamp(22px,3.6vw,42px); }

/* launch line, promoted into the hero */
.eyeline{
  font-family:'Space Mono',monospace; font-size:10px;
  letter-spacing:.24em; text-transform:uppercase;
  color:#D8D2C8;               /* mid-grey failed over the brighter video frames */
  margin:0 0 12px;
}
.eyeline b{ color:var(--bone); font-weight:400; }
.hero--overlay .eyeline{ text-shadow:0 1px 12px rgba(0,0,0,.85); }

/* band layout keeps the launch line above the waitlist, below the rule */
.hero--band .eyeline{ display:none; }
.below .eyeline{ margin-bottom:clamp(20px,3vw,30px); }

@media (max-width:820px){
  .hero--overlay .mark{ width:52vw; max-width:none; }
  .hero--overlay .hero-foot{ max-width:none; }
}
@media (max-width:640px){
  .hero--overlay .mark{ width:58vw; }
  .hero--overlay .state{ font-size:clamp(20px,6vw,28px); }
}

/* ============================================================
   FOOTER SEPARATION
   The gold rule under the hero already divides the page. When the
   footer is the only thing below it (overlay layout) a second rule
   adds a beat that isn't needed — so drop it and let space do the work.
   In the band layout the waitlist sits between the two, so a hairline
   still earns its place, just quieter.
   ============================================================ */

/* overlay: footer is the only thing below the gold rule.
   No border, and no extra padding — .below already provides equal
   space above and below, so the footer sits optically centred. */
.below > footer:first-child{
  border-top:0;
  padding-top:0;
  margin-top:0;   /* .below's own padding supplies equal space above and below */
}

/* band: keep a hairline, but thinner and dimmer than before */
.below > footer:not(:first-child){
  border-top:1px solid #1B1B1B;
  padding-top:clamp(30px,4.6vw,46px);
}
@media (min-resolution:2dppx){
  .below > footer:not(:first-child){ border-top-width:0.5px; }
}

/* ============================================================
   SUBTEXT — sizing and weight (client revision)
   Weights come from families already requested: Archivo 500/600.
   ============================================================ */
.hero--overlay .note{ color:#DCD6CC; }

.eyeline{
  font-size:clamp(10px,1.05vw,12px);
  letter-spacing:.20em;
}

@media (max-width:640px){
  .substate{ font-size:12.5px; letter-spacing:.07em; }
  .note{ font-size:14px; }
  .eyeline{ font-size:10.5px; letter-spacing:.18em; }
}
}
