/* ============================================================
   VEXIL STUDIO — the showcase
   ------------------------------------------------------------
   The previous version of this page had "no colour of its own" as a
   rule. Tidy idea; it produced a flat grey page, which is a terrible
   advertisement for someone who builds websites. The page selling the
   work has to be the best-made thing on the property.

   So: a black ground with real depth in it (layered light, grain, a
   copper bloom sitting behind the work), type at proper scale, and —
   the part that actually matters — every demo shown LIVE inside a
   browser frame instead of drawn as a little picture. You are not
   looking at a thumbnail. You are looking at the site itself.
   ============================================================ */

:root{
  --void:     #08090C;
  --void-2:   #0D1015;
  --surface:  #14181F;
  --surface-2:#1A1F28;
  --bone:     #EFEBE4;
  --bone-2:   rgba(239,235,228,.68);
  --bone-3:   rgba(239,235,228,.42);
  --edge:     rgba(239,235,228,.09);
  --edge-2:   rgba(239,235,228,.18);

  --copper:   #D2803F;
  --copper-lt:#E8A268;
  --glow:     rgba(210,128,63,.28);

  --display:'Syne', system-ui, sans-serif;
  --body:   'Archivo', system-ui, sans-serif;
  --mono:   'IBM Plex Mono', ui-monospace, monospace;

  --page: 1320px;
  --pad: clamp(20px, 4.5vw, 68px);
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}

body{
  margin:0;
  background:var(--void);
  color:var(--bone);
  font-family:var(--body);
  font-size:clamp(16px,1.02vw,17.5px);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* the ground is not flat: a cool field, a warm bloom behind the work, and grain */
body::before{
  content:''; position:fixed; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(120% 80% at 78% -10%, rgba(210,128,63,.16) 0%, transparent 55%),
    radial-gradient(90% 60% at 10% 8%, rgba(90,130,180,.10) 0%, transparent 60%),
    linear-gradient(180deg, #0A0C10 0%, #08090C 42%, #0A0C10 100%);
}
body::after{
  content:''; position:fixed; inset:0; z-index:0; pointer-events:none; opacity:.045;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > *{ position:relative; z-index:1; }

h1,h2,h3{ font-family:var(--display); font-weight:800; margin:0; line-height:1; letter-spacing:-.035em; }
a{ color:inherit; }
img,svg{ max-width:100%; }

.sr{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
.skip{ position:absolute; left:-9999px; top:0; z-index:200; background:var(--copper); color:#100A05; padding:12px 18px; font-family:var(--mono); font-size:13px; }
.skip:focus{ left:12px; top:12px; }
:focus-visible{ outline:2px solid var(--copper-lt); outline-offset:3px; }

/* ---------------------------------- entrance: one sequence, not scattered effects */
@keyframes rise{ from{ opacity:0; transform:translateY(22px); } to{ opacity:1; transform:none; } }
.rise{ animation:rise .85s cubic-bezier(.16,.8,.28,1) both; }
.d1{ animation-delay:.05s } .d2{ animation-delay:.14s } .d3{ animation-delay:.23s }
.d4{ animation-delay:.32s } .d5{ animation-delay:.46s }

/* ---------------------------------- nav */
.nav{
  position:sticky; top:0; z-index:100;
  display:flex; align-items:center; gap:24px;
  padding:16px var(--pad);
  background:rgba(8,9,12,.72);
  backdrop-filter:blur(14px) saturate(1.2);
  border-bottom:1px solid var(--edge);
}
.brand{ display:flex; align-items:center; gap:11px; font-family:var(--display); font-weight:800; font-size:17px; letter-spacing:-.03em; text-decoration:none; }
.brand-mark{ width:20px; height:20px; fill:var(--copper); }
.nav-links{ display:flex; gap:28px; margin-left:auto; }
.nav-links a{
  font-family:var(--mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  text-decoration:none; color:var(--bone-3); transition:color .2s ease;
}
.nav-links a:hover{ color:var(--bone); }
@media (max-width:900px){ .nav-links{ display:none; } .nav .btn-sm{ margin-left:auto; } }

/* ---------------------------------- buttons */
.btn{
  display:inline-block; cursor:pointer; text-align:center; text-decoration:none;
  font-family:var(--body); font-weight:600; font-size:14.5px;
  background:var(--copper); color:#100A05;
  border:1px solid var(--copper); border-radius:100px;
  padding:14px 28px;
  box-shadow:0 6px 24px -6px var(--glow);
  transition:transform .2s cubic-bezier(.16,.8,.28,1), box-shadow .2s ease, background .2s ease;
}
.btn:hover{ transform:translateY(-2px); background:var(--copper-lt); box-shadow:0 14px 40px -8px var(--glow); }
.btn-sm{ padding:9px 18px; font-size:13px; }
.btn-ghost{
  background:rgba(239,235,228,.04); color:var(--bone);
  border-color:var(--edge-2); box-shadow:none; backdrop-filter:blur(6px);
}
.btn-ghost:hover{ background:rgba(239,235,228,.09); border-color:var(--bone-3); }

/* ---------------------------------- hero */
.hero{ max-width:var(--page); margin:0 auto; padding:clamp(46px,7vw,104px) var(--pad) clamp(24px,3vw,44px); }
.eyebrow{
  display:inline-flex; align-items:center; gap:10px; white-space:nowrap;
  font-family:var(--mono); font-size:11.5px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--bone-3); margin:0 0 26px;
  padding:7px 16px 7px 13px; border:1px solid var(--edge); border-radius:100px;
  background:rgba(239,235,228,.03);
}
.eyebrow::before{ content:''; width:6px; height:6px; border-radius:50%; background:var(--copper); box-shadow:0 0 10px 2px var(--glow); }

.hero h1{
  font-size:clamp(44px,7.4vw,116px); letter-spacing:-.05em; margin-bottom:28px;
  max-width:none;                 /* the line breaks are authored with <br>, not guessed by a measure */
  text-wrap:balance;
}
.hero h1 em{ font-style:normal; color:var(--copper); }
.lede{ font-size:clamp(17px,1.5vw,21px); color:var(--bone-2); max-width:52ch; margin:0 0 16px; }
.lede-note{ font-family:var(--mono); font-size:12.5px; letter-spacing:.04em; color:var(--bone-3); margin:0 0 32px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:12px; }

/* ---------------------------------- the stage: a real browser running a real site */
.stage{ max-width:var(--page); margin:0 auto; padding:0 var(--pad) clamp(44px,6vw,84px); }
.stage-glow{ position:relative; }
.stage-glow::before{
  content:''; position:absolute; inset:10% 6% -8% 6%; z-index:0;
  background:radial-gradient(60% 60% at 50% 40%, var(--glow) 0%, transparent 70%);
  filter:blur(54px);
}
.frame{
  position:relative; z-index:1;
  border:1px solid var(--edge-2); border-radius:16px; overflow:hidden;
  background:var(--surface);
  box-shadow:0 2px 4px rgba(0,0,0,.4), 0 14px 30px rgba(0,0,0,.45), 0 52px 96px -22px rgba(0,0,0,.72);
}
.frame-bar{ display:flex; align-items:center; gap:14px; padding:11px 16px; background:var(--surface-2); border-bottom:1px solid var(--edge); }
.frame-dots{ display:flex; gap:7px; flex:none; }
.frame-dots i{ width:11px; height:11px; border-radius:50%; background:rgba(239,235,228,.16); }
.frame-url{
  flex:1; text-align:center; margin:0 auto; max-width:360px;
  font-family:var(--mono); font-size:11.5px; letter-spacing:.04em; color:var(--bone-3);
  background:rgba(0,0,0,.3); border-radius:100px; padding:6px 14px;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.frame-open{ flex:none; font-family:var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--copper); text-decoration:none; }
.frame-open:hover{ color:var(--copper-lt); }
.frame-stage{ position:relative; aspect-ratio:16/10; background:var(--void-2); }
@media (max-width:760px){ .frame-stage{ aspect-ratio:4/3; } }
.frame-stage iframe{
  position:absolute; top:0; left:0; width:1440px; height:900px; border:0;
  transform-origin:0 0; pointer-events:none;   /* a picture you click through, not a trap */
}
.frame-load{
  position:absolute; inset:0; display:grid; place-items:center; background:var(--void-2);
  font-family:var(--mono); font-size:11.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--bone-3);
  transition:opacity .5s ease;
}
.frame-load.gone{ opacity:0; pointer-events:none; }

.chips{ display:flex; gap:9px; margin:22px 0 0; flex-wrap:wrap; justify-content:center; }
.chip{
  width:52px; height:36px; padding:0; cursor:pointer;
  border:1px solid var(--edge-2); border-radius:8px;
  background:linear-gradient(112deg, var(--c1) 0 60%, var(--c2) 60% 100%);
  transition:transform .2s cubic-bezier(.16,.8,.28,1), box-shadow .2s ease, border-color .2s ease;
}
.chip:hover{ transform:translateY(-3px) scale(1.04); }
.chip.is-on{ border-color:var(--copper); box-shadow:0 0 0 2px rgba(210,128,63,.4), 0 8px 20px -6px var(--glow); transform:translateY(-2px); }
.chips-hint{ text-align:center; font-family:var(--mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--bone-3); margin:14px 0 0; }

/* ---------------------------------- sections */
.section{ max-width:var(--page); margin:0 auto; padding:clamp(56px,7vw,116px) var(--pad); }
.section--band{ max-width:none; background:linear-gradient(180deg, rgba(239,235,228,.025), transparent); border-block:1px solid var(--edge); }
.section--band > *{ max-width:var(--page); margin-inline:auto; }
.section-head{ max-width:62ch; margin-bottom:clamp(34px,4vw,56px); }
.section-head h2{ font-size:clamp(32px,4.6vw,62px); margin-bottom:18px; letter-spacing:-.04em; }
.section-head p{ color:var(--bone-2); margin:0; font-size:clamp(16px,1.25vw,19px); }

/* ---------------------------------- filters */
.filters{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:30px; }
.filter{
  font-family:var(--mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase;
  background:rgba(239,235,228,.03); color:var(--bone-3); cursor:pointer;
  border:1px solid var(--edge); border-radius:100px; padding:10px 18px;
  transition:color .2s ease, border-color .2s ease, background .2s ease;
}
.filter:hover{ color:var(--bone); border-color:var(--edge-2); }
.filter.is-on{ background:var(--bone); color:#0B0B0B; border-color:var(--bone); }

/* ---------------------------------- the gallery: every card is a live site */
.grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(370px,1fr)); gap:26px; }
@media (max-width:520px){ .grid{ grid-template-columns:1fr; } }

.card{
  display:flex; flex-direction:column;
  background:linear-gradient(180deg, var(--surface) 0%, var(--void-2) 100%);
  border:1px solid var(--edge); border-radius:14px; overflow:hidden;
  transition:transform .3s cubic-bezier(.16,.8,.28,1), border-color .3s ease, box-shadow .3s ease;
}
.card:hover{
  transform:translateY(-6px); border-color:var(--edge-2);
  box-shadow:0 30px 60px -24px rgba(0,0,0,.85), 0 0 0 1px rgba(210,128,63,.14);
}
.card.is-hidden{ display:none; }

.card-spec{ position:relative; aspect-ratio:16/10; overflow:hidden; background:var(--void-2); border-bottom:1px solid var(--edge); }
.card-spec iframe{
  position:absolute; top:0; left:0; width:1440px; height:900px; border:0;
  transform-origin:0 0; pointer-events:none;
}
.shot-load{
  position:absolute; inset:0; display:grid; place-items:center; background:var(--void-2);
  font-family:var(--mono); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--bone-3);
  transition:opacity .5s ease;
}
.shot-load.gone{ opacity:0; }
.shot-open{
  position:absolute; inset:0; z-index:2; display:grid; place-items:center;
  background:rgba(8,9,12,.62); backdrop-filter:blur(2px);
  opacity:0; transition:opacity .28s ease; text-decoration:none;
}
.card:hover .shot-open,.shot-open:focus-visible{ opacity:1; }
.shot-open span{
  font-family:var(--mono); font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color:#100A05; background:var(--copper); padding:12px 22px; border-radius:100px;
  box-shadow:0 10px 30px -8px var(--glow);
}

.card-body{ padding:24px 26px 28px; display:flex; flex-direction:column; flex:1; }
.card-body h3{ font-size:25px; margin-bottom:11px; letter-spacing:-.035em; }
.card-for{ margin:0 0 20px; color:var(--bone-2); font-size:15.5px; }
.card-meta{ display:grid; grid-template-columns:auto 1fr; gap:6px 16px; margin:0 0 20px; }
.card-meta dt{ font-family:var(--mono); font-size:10px; letter-spacing:.13em; text-transform:uppercase; color:var(--bone-3); padding-top:3px; }
.card-meta dd{ margin:0; font-size:14px; color:var(--bone-2); }

.sw{ display:flex; list-style:none; padding:0; margin:0 0 24px; gap:6px; }
.sw li{ flex:1; text-align:center; font-family:var(--mono); font-size:9px; letter-spacing:.04em; color:var(--bone-3); }
.sw li::before{ content:''; display:block; height:34px; margin-bottom:6px; border-radius:5px; background:var(--s); border:1px solid var(--edge-2); }

.card-actions{ display:flex; gap:9px; margin-top:auto; flex-wrap:wrap; }
.grid-empty{ font-family:var(--mono); font-size:13px; color:var(--bone-3); margin-top:26px; }
.grid-note{ margin-top:34px; color:var(--bone-3); font-size:16px; max-width:70ch; }

/* ---------------------------------- real work */
.work{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
@media (max-width:760px){ .work{ grid-template-columns:1fr; } }
.work-item{
  position:relative; overflow:hidden;
  background:linear-gradient(180deg, var(--surface) 0%, var(--void-2) 100%);
  border:1px solid var(--edge); border-radius:14px;
  padding:32px 32px 34px; display:flex; flex-direction:column;
  transition:border-color .3s ease, transform .3s cubic-bezier(.16,.8,.28,1);
}
.work-item::after{
  content:''; position:absolute; inset:-40% -10% auto -10%; height:70%;
  background:radial-gradient(50% 60% at 50% 100%, rgba(210,128,63,.16), transparent 70%);
  opacity:0; transition:opacity .4s ease; pointer-events:none;
}
.work-item:hover{ transform:translateY(-4px); border-color:var(--edge-2); }
.work-item:hover::after{ opacity:1; }
.work-live{
  display:flex; align-items:center; gap:9px; margin:0 0 20px;
  font-family:var(--mono); font-size:10.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--bone-3);
}
.live-dot{ width:8px; height:8px; border-radius:50%; background:#63E6A8; box-shadow:0 0 10px 1px rgba(99,230,168,.55); flex:none; }
@media (prefers-reduced-motion:no-preference){ .live-dot{ animation:pulse 2.4s ease-in-out infinite; } }
@keyframes pulse{ 0%,100%{ opacity:1 } 50%{ opacity:.4 } }
.work-item h3{ font-size:30px; margin-bottom:14px; letter-spacing:-.035em; }
.work-what{ margin:0 0 20px; color:var(--bone-2); font-size:16px; }
.work-url{ margin:0 0 24px; font-family:var(--mono); font-size:12.5px; color:var(--copper); }
.work-item .btn{ align-self:flex-start; margin-top:auto; }

/* ---------------------------------- process */
.steps{ list-style:none; padding:0; margin:0; display:grid; grid-template-columns:repeat(auto-fit,minmax(215px,1fr)); gap:26px; }
.steps li{
  background:rgba(239,235,228,.02); border:1px solid var(--edge); border-radius:12px;
  padding:26px 24px 30px; transition:border-color .3s ease, background .3s ease;
}
.steps li:hover{ border-color:var(--edge-2); background:rgba(239,235,228,.04); }
.step-n{
  display:grid; place-items:center; width:34px; height:34px; margin-bottom:20px;
  border-radius:50%; border:1px solid var(--copper); color:var(--copper);
  font-family:var(--mono); font-size:12px;
}
.steps h3{ font-size:19px; margin-bottom:11px; letter-spacing:-.02em; }
.steps p{ margin:0; color:var(--bone-2); font-size:15px; }

/* ---------------------------------- included */
.incl{ list-style:none; padding:0; margin:0; display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:36px 44px; }
.incl h3{ font-size:19px; margin-bottom:10px; letter-spacing:-.02em; }
.incl h3::before{ content:''; display:block; width:28px; height:2px; background:var(--copper); margin-bottom:16px; }
.incl p{ margin:0; color:var(--bone-2); font-size:15.5px; }

/* ---------------------------------- faq */
.faq{ max-width:80ch; }
.faq details{ border-bottom:1px solid var(--edge); }
.faq details:first-child{ border-top:1px solid var(--edge); }
.faq summary{
  cursor:pointer; list-style:none; padding:24px 46px 24px 0; position:relative;
  font-family:var(--display); font-weight:700; font-size:clamp(17px,1.7vw,21px); letter-spacing:-.02em;
  transition:color .2s ease;
}
.faq summary:hover{ color:var(--copper-lt); }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:''; position:absolute; right:8px; top:31px; width:11px; height:11px;
  border-right:1.5px solid var(--copper); border-bottom:1.5px solid var(--copper);
  transform:rotate(45deg); transition:transform .25s ease;
}
.faq details[open] summary::after{ transform:rotate(-135deg); top:35px; }
.faq p{ margin:0 0 26px; color:var(--bone-2); max-width:68ch; }

/* ---------------------------------- form */
.form{ max-width:820px; }
.row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:640px){ .row{ grid-template-columns:1fr; } }
.field{ display:block; margin-bottom:18px; }
.field > span{ display:block; font-family:var(--mono); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--bone-3); margin-bottom:9px; }
.field input,.field select,.field textarea{
  width:100%; font-family:var(--body); font-size:16px; color:var(--bone);
  background:rgba(239,235,228,.03); border:1px solid var(--edge-2); border-radius:10px;
  padding:14px 16px; transition:border-color .2s ease, background .2s ease;
}
.field textarea{ resize:vertical; }
.field input::placeholder,.field textarea::placeholder{ color:var(--bone-3); }
.field input:focus,.field select:focus,.field textarea:focus{ border-color:var(--copper); background:rgba(239,235,228,.05); outline:none; }
.field select{ appearance:none; background-image:linear-gradient(45deg,transparent 50%,var(--bone-3) 50%),linear-gradient(135deg,var(--bone-3) 50%,transparent 50%); background-position:calc(100% - 20px) 24px,calc(100% - 15px) 24px; background-size:5px 5px,5px 5px; background-repeat:no-repeat; }
.form-err{ font-family:var(--mono); font-size:13px; color:#FFB4A2; margin:4px 0 12px; }
.form-actions{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; margin-top:12px; }
.form-note{ margin:0; font-size:14.5px; color:var(--bone-3); }
.form-note a{ color:var(--copper); }

/* ---------------------------------- footer */
.foot{
  border-top:1px solid var(--edge); padding:clamp(46px,5vw,76px) var(--pad);
  max-width:var(--page); margin:0 auto; color:var(--bone-3); font-size:15px;
}
.foot p{ margin:0 0 8px; }
.foot-brand{ font-family:var(--display); font-weight:800; font-size:22px; color:var(--bone); letter-spacing:-.035em; }
.foot-fine{ margin-top:24px; font-family:var(--mono); font-size:11px; letter-spacing:.03em; max-width:66ch; line-height:1.8; }

/* the hero stacks: copy, then the live browser at full width beneath it */
.hero--stacked{ display:block; }
.hero--stacked .hero-copy{ max-width:min(100%, 1100px); }
.hero--stacked .lede,.hero--stacked .lede-note{ max-width:56ch; }
.hero--stacked .hero-spec{ margin-top:clamp(40px,6vw,76px); }


/* ---------------------------------- real work, shown properly
   The proof was getting worse treatment than the demos: plain text cards next
   to live browser frames. Now both real sites fill the same 16:10 frame —
   Redstick as a live iframe, the Log as its own og:image, because the Log
   correctly refuses to be framed and that header is not worth weakening. */
.work-item{ padding:0; }
.work-shot{ position:relative; border-bottom:1px solid var(--edge); }
.work-shot .frame-bar{ border-radius:0; }
.work-stage{ position:relative; aspect-ratio:16/10; overflow:hidden; background:var(--void-2); }
.work-stage iframe{
  position:absolute; top:0; left:0; width:1440px; height:900px; border:0;
  transform-origin:0 0; pointer-events:none;
}
.work-stage img{ width:100%; height:100%; object-fit:cover; display:block; }
.work-item:hover .shot-open{ opacity:1; }
.work-body{ padding:26px 30px 30px; display:flex; flex-direction:column; flex:1; }
.work-body .work-live{ margin-bottom:16px; }
.work-body h3{ margin-bottom:12px; }
.work-body .btn{ align-self:flex-start; margin-top:auto; }

/* ---------------------------------- price */
.price{
  display:grid; grid-template-columns:minmax(240px,300px) 1fr; gap:clamp(28px,4vw,64px);
  align-items:start;
}
.price-tag{
  border:1px solid var(--edge); background:var(--surface);
  padding:34px 30px 30px; position:sticky; top:96px;
}
.price-num{
  font-family:var(--display); font-weight:800; letter-spacing:-.04em;
  font-size:clamp(52px,6vw,74px); line-height:.92; margin:0; color:var(--bone);
}
.price-unit{
  font-family:var(--mono); font-size:13px; letter-spacing:.04em; text-transform:uppercase;
  color:var(--copper); margin:12px 0 26px;
}
.price-tag .btn{ width:100%; justify-content:center; text-align:center; }

.price-detail h3{
  font-family:var(--mono); font-weight:500; font-size:12.5px; letter-spacing:.1em;
  text-transform:uppercase; color:var(--bone-3); margin:0 0 18px;
}
.price-detail h3 + ul{ margin-bottom:38px; }
.price-what, .price-not{ list-style:none; padding:0; margin:0; display:grid; gap:13px; }
.price-what li, .price-not li{
  position:relative; padding-left:30px; color:var(--bone-2); font-size:16px; line-height:1.5;
}
.price-what li::before{
  content:''; position:absolute; left:0; top:9px; width:13px; height:2px; background:var(--copper);
}
.price-not li::before{
  content:''; position:absolute; left:0; top:9px; width:13px; height:2px;
  background:var(--edge-2);
}
.price-fine{
  margin:26px 0 0; padding-top:22px; border-top:1px solid var(--edge);
  color:var(--bone-3); font-size:15px; max-width:62ch;
}

@media (max-width:820px){
  .price{ grid-template-columns:1fr; }
  .price-tag{ position:static; }
}

/* ---------------------------------- form success */
.form-ok{
  font-size:16px; line-height:1.55; color:var(--bone);
  border-left:2px solid var(--copper); background:var(--surface);
  padding:16px 20px; margin:4px 0 14px;
}

/* the price block leads with the promise rather than a number */
.price-lead{ font-family:var(--display); font-weight:800; font-size:clamp(24px,2.8vw,36px); line-height:1.06; letter-spacing:-.035em; margin:0 0 12px; }
