:root {
  --orange:        #C25A26;   
  --orange-deep:   #9E4318;   
  --orange-bright: #E07A38;   
  --orange-rust:   #6B2E12;   
  --orange-wash:   #F6E3D4;   

  --cacao:         #3B2419;
  --cacao-soft:    #4A3124;

  --amber:         #F6BE4A;
  --amber-press:   #E0A431;

  --blush:  #F3C7AE;
  --oat:    #F2DFAF;
  --sage:   #C3C9AE;
  --sky:    #AFC4C9;
  --rose:   #DDB3AE;

  --thread:        #FFFFFF;   
  --thread-soft:   #FBF7EC;   
  --paper:         #EFE8D6;   
  --paper-alt:     #E5DBC2;   
  --kraft:         #D9BE95;   
  --kraft-deep:    #B9986B;   

  --ink:           #2A2018;   
  --ink-soft:      #574A3D;   
  --ink-muted:     #5C4E42;   

  --green:         #5E8C4E;   
  --red:           #B0432F;   

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-alt:     "Archivo", "Arial Narrow", Helvetica, sans-serif;
  --font-hand:    "Caveat", cursive;

  --wrap:      1180px;  
  --wrap-tight: 860px;  
  --r-sm:  10px;        
  --r-md:  18px;
  --r-lg:  28px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 6px rgba(107, 46, 18, .07);
  --shadow-md: 0 10px 30px rgba(107, 46, 18, .10);
  --shadow-lg: 0 26px 60px rgba(107, 46, 18, .14);
  --thread-shadow: drop-shadow(0 1.5px 2.5px rgba(107, 46, 18, .5));
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  position: relative;   
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;              
  -webkit-font-smoothing: antialiased;
}

img, video, svg { max-width: 100%; display: block; }
a { color: var(--orange-deep); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--orange); }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: 0; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--r-sm) 0;
  clip-path: inset(50%); width: 1px; height: 1px; overflow: hidden; white-space: nowrap;
}
.skip:focus { clip-path: none; width: auto; height: auto; }

body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'>\
<filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/>\
<feColorMatrix type='saturate' values='0'/></filter>\
<rect width='160' height='160' filter='url(%23n)' opacity='0.22'/></svg>");
}

body > *:not(.thread-rail):not(.skip) { position: relative; z-index: 1; }

.woven {
  background-color: var(--orange);
  background-image:
    repeating-linear-gradient(115deg,
      rgba(107,46,18,.20) 0 2px,
      rgba(255,255,255,.10) 2px 5px),
    repeating-linear-gradient(25deg,
      var(--thread-soft) 0 9px,
      #EAE0CE      9px 12px,
      var(--orange-bright) 12px 20px,
      var(--orange)        20px 27px,
      var(--orange-deep)   27px 31px);
  background-size: 7px 7px, auto;
}

.field       { background: var(--orange) url("img/field-hero.jpg")  50% / cover no-repeat; }
.field-deep  { background: var(--cacao)  url("img/field-deep.jpg")  50% / cover no-repeat; }
.field-light { background: var(--oat)    url("img/field-light.jpg") 50% / cover no-repeat; }

.on-dark, .on-dark p, .on-dark li { color: #F0E7DC; }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--thread-soft); }
.on-dark a { color: var(--amber); }
.on-dark .eyebrow { color: var(--amber); }
.on-dark .eyebrow::before { background: var(--amber); }
.on-dark .muted, .on-dark .small.muted { color: #C6B8A9; }

.bg-cacao { background: var(--cacao); }
.bg-blush { background: var(--blush); }
.bg-oat   { background: var(--oat); }
.bg-sage  { background: var(--sage); }

.woven-rule {
  height: 14px;
  border-top: 1.5px solid rgba(107,46,18,.18);
  border-bottom: 1.5px solid rgba(107,46,18,.18);
}

.thread-rail {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: none;   
  z-index: 40;            
  overflow: visible;
}
.thread-rail path {
  fill: none;
  stroke: var(--thread);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stitch {
  position: relative;
}
.stitch::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px dashed rgba(255,255,255,0.9);
  border-radius: inherit;
  pointer-events: none;
}

.stitch--ink::after {
  border-color: rgba(194,90,38,.45);
  filter: none;
}

.wrap  { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-tight { width: 100%; max-width: var(--wrap-tight); margin: 0 auto; padding: 0 24px; }

section { padding: 92px 0; position: relative; }
section.tight { padding: 60px 0; }
.bg-alt   { background: var(--paper-alt); }
.bg-kraft { background: linear-gradient(180deg, #EFE2CB, #E7D6B8); }
.bg-ink   { background: var(--ink); color: #E8DFD4; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--thread-soft); }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 .4em;
  font-variation-settings: "SOFT" 20, "WONK" 1;  
}
h1 { font-size: clamp(40px, 6.2vw, 74px); }
h2 { font-size: clamp(32px, 4.4vw, 52px); }
h3 { font-size: clamp(21px, 2.2vw, 27px); }
p  { margin: 0 0 1.1em; }

.lead { font-size: clamp(18px, 2vw, 22px); color: var(--ink-soft); line-height: 1.55; }
.muted { color: var(--ink-muted); }
.small { font-size: 14.5px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-size: 15.2px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; flex: 0 0 26px; width: 26px; height: 2px;
  background: var(--orange);
}

.hl {
  background: linear-gradient(180deg, transparent 62%, rgba(224,122,56,.38) 62%);
  padding: 0 .06em;
}

.note {
  font-family: var(--font-hand);
  font-size: clamp(20px, 2.3vw, 27px);
  line-height: 1.2;
  color: var(--orange-deep);
  transform: rotate(-3deg);
  display: inline-block;
  max-width: 300px;
}
.note--right { transform: rotate(2.5deg); }
.note--ink   { color: var(--ink); }
.note--cream { color: var(--thread-soft); }

.note-arrow { width: 58px; height: 40px; stroke: currentColor; fill: none;
              stroke-width: 2; stroke-linecap: round; display: block; }

.note-pin { position: absolute; z-index: 5; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 800; font-size: 16.5px;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary, .btn.btn-primary {
  background: linear-gradient(160deg, var(--orange) 0%, var(--orange-deep) 70%, #8A3A13);
  color: #fff;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 5px;
  border: 1.5px dashed rgba(255,255,255,0.9);
  border-radius: var(--r-pill);
  pointer-events: none;
}
.btn-primary:hover, .btn.btn-primary:hover { color: #fff; box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.3); }

.btn-ghost {
  background: #FBF8F0;
  color: var(--orange-deep);
  box-shadow: inset 0 0 0 2px rgba(194,90,38,.30), var(--shadow-sm);
}
.btn-ghost:hover { background: #fff; box-shadow: inset 0 0 0 2px var(--orange), var(--shadow-md); }

.btn-cream { background: var(--thread-soft); color: var(--orange-rust); box-shadow: var(--shadow-md); }
.btn-cream:hover { background: #fff; color: var(--orange-rust); }

.btn.btn-amber { background: var(--amber); color: var(--ink); box-shadow: var(--shadow-md); }
.btn.btn-amber::after { content: ""; position: absolute; inset: 5px;
  border: 1.5px dashed rgba(42,32,24,0.58); border-radius: var(--r-pill); pointer-events: none; }
.btn.btn-amber:hover { background: var(--amber-press); color: var(--ink); }

.on-dark .btn.btn-ghost { background: transparent; color: var(--thread-soft);
  box-shadow: inset 0 0 0 2px rgba(251,247,240,.65); }
.on-dark .btn.btn-ghost:hover { background: var(--thread-soft); color: var(--orange-rust); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row.center { justify-content: center; }

.card {
  background: #FBF8F0;
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107,46,18,.08);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }

.card--stitched::before {
  content: ""; position: absolute; inset: 9px;
  border: 2px dashed rgba(194,90,38,0.493);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none;
}

.card--kraft {
  background: linear-gradient(150deg, #F0E2C9, #E6D3B2);
  border-color: rgba(107,46,18,.15);
}

.tape {
  position: absolute;
  width: 108px; height: 30px;
  background: repeating-linear-gradient(90deg,
      rgba(255,255,255,.85) 0 6px, rgba(246,227,212,.85) 6px 12px);
  border-left: 2px dashed rgba(107,46,18,0.362);
  border-right: 2px dashed rgba(107,46,18,0.362);
  box-shadow: 0 2px 5px rgba(107,46,18,.14);
  z-index: 4;
}
.tape--tl { top: -12px; left: 18px;  transform: rotate(-7deg); }
.tape--tr { top: -12px; right: 18px; transform: rotate(6deg); }

.frame {
  position: relative;
  border-radius: var(--r-md);
  overflow: visible;
  background: #FCFAF4;
  padding: 12px;
  box-shadow: var(--shadow-md);
}
.frame img, .frame video {
  border-radius: calc(var(--r-md) - 6px);
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.frame figcaption {
  font-family: var(--font-hand);
  font-size: 20px; color: var(--ink-muted);
  text-align: center; padding-top: 8px;
}

.chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange-wash);
  color: var(--orange-rust);
  border: 1px solid rgba(194,90,38,.22);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-size: 14.5px; font-weight: 700;
}
.chip--cream { background: rgba(255,255,255,.16); color: var(--thread-soft); border-color: rgba(255,255,255,.35); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

.step { position: relative; padding-top: 8px; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  background: linear-gradient(160deg, var(--orange-bright), var(--orange-deep));
  color: #fff;
  box-shadow: var(--shadow-sm), 0 0 0 6px var(--paper), 0 0 0 8px rgba(194,90,38,.28);
  margin-bottom: 18px;
  position: relative; z-index: 2;
}
.step-num::after {
  content: ""; position: absolute; inset: 5px;
  border: 2px dashed rgba(255,255,255,0.9); border-radius: 50%;
}

.callout {
  border-radius: var(--r-lg);
  padding: 34px 32px;
  background: linear-gradient(150deg, var(--orange-wash), #FBEFE6);
  border: 2px dashed rgba(194,90,38,0.58);
  position: relative;
}

.pricetag {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px); font-weight: 700;
  color: var(--orange-deep);
}
.pricetag small { font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--ink-muted); }

.ribbon { overflow: hidden; padding: 16px 0; position: relative; }

.ribbon::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(107,46,18,.42);
  pointer-events: none;
}
.ribbon .ribbon-track { position: relative; z-index: 1;
  text-shadow: 0 1px 3px rgba(107,46,18,.9), 0 0 12px rgba(107,46,18,.55); }
.ribbon-track {
  display: flex; gap: 46px; width: max-content;
  animation: ribbon-slide 32s linear infinite;
  font-family: var(--font-display);
  font-size: 25px; font-weight: 700; color: #fff;
  white-space: nowrap; align-items: center;
}
.ribbon-track span { display: inline-flex; align-items: center; gap: 46px; }
.ribbon-track .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--thread); }
@keyframes ribbon-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.valuebar {
  background: var(--orange-deep);
  color: var(--thread-soft);
  font-size: 14px; font-weight: 700;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: .01em;
  position: relative;
}

.valuebar::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 0;
  border-bottom: 2px dashed rgba(255,255,255,0.652);
}
.valuebar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.reversal { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.reversal > div { border-radius: var(--r-lg); padding: 32px 30px; }
.rev-old {
  background: #EFE7DA;
  border: 1.5px solid rgba(107,46,18,.14);
  color: var(--ink-muted);
}
.rev-new {
  background: linear-gradient(155deg, var(--orange), var(--orange-deep));
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.rev-new::after {
  content: ""; position: absolute; inset: 10px;
  border: 2px dashed rgba(255,255,255,0.87);
  border-radius: calc(var(--r-lg) - 9px); pointer-events: none;
}
.reversal h3 { font-size: 20px; letter-spacing: .01em; }
.rev-new h3 { color: #fff; }
.reversal ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.reversal li { padding-left: 30px; position: relative; line-height: 1.5; }
.rev-old li::before { content: "\2715"; position: absolute; left: 0; top: 0;
                      color: var(--red); font-weight: 900; }
.rev-new li::before { content: "\2713"; position: absolute; left: 0; top: 0;
                      color: #fff; font-weight: 900; }

.statement { padding: 120px 0; text-align: center; }
.statement h2 {
  font-size: clamp(34px, 5.4vw, 62px);
  max-width: 17ch; margin-inline: auto; line-height: 1.05;
}
.statement p { max-width: 52ch; margin-inline: auto; font-size: clamp(17px,1.9vw,20px); }

.maker-wall { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.maker-tile {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 1; background: #EFE7DA; box-shadow: var(--shadow-sm);
}
.maker-tile img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.08) saturate(1.04); }
.maker-tile::after {
  content: ""; position: absolute; inset: 7px;
  border: 1.4px solid rgba(255,255,255,.5); border-radius: calc(var(--r-md) - 6px);
  pointer-events: none;
}
.maker-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(42,32,24,.82));
  color: #fff; font-size: 14px; font-weight: 700; padding: 26px 14px 12px;
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.7vw, 31px);
  line-height: 1.32; color: var(--ink);
  max-width: 22ch;
}
.quote-cite { font-family: var(--font-body); font-size: 15px; font-weight: 800;
              color: var(--orange-deep); margin-top: 14px; display: block; }

@media (max-width: 980px) {
      }
@media (max-width: 860px) {
  .reversal { grid-template-columns: 1fr; }
  .statement { padding: 74px 0; }
  .maker-wall { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
    .maker-wall { grid-template-columns: 1fr; }
}

.chip::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 2px rgba(194,90,38,.20);
  flex: 0 0 7px;
}
.chip--cream::before { background: var(--thread-soft); box-shadow: 0 0 0 2px rgba(255,255,255,.28); }

.icon {
  width: 40px; height: 40px; display: block; margin-bottom: 14px;
  fill: none; stroke: var(--orange); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.icon--lg { width: 92px; height: 92px; stroke-width: 1.4; }
.icon--cream { stroke: var(--thread-soft); }

.eps-map-heading { display: none; }
.eps-map-sub { font-size: 15px !important; margin-bottom: 14px !important; }

.vb-short { display: none; }
@media (max-width: 620px) {
  .vb-full  { display: none; }
  .vb-short { display: inline; }
  .valuebar { font-size: 13.5px; padding: 8px 14px; }
}

@media (max-width: 860px) {

  .btn { min-height: 50px; padding: 15px 26px; }
  .nav-links a { min-height: 46px; display: flex; align-items: center; }
    .site-footer a { display: inline-block; padding: 3px 0; }

  h1 { font-size: clamp(36px, 10.5vw, 52px); }
  h2 { font-size: clamp(28px, 7.6vw, 40px); }
  .lead { font-size: 17.5px; }
  .statement h2 { max-width: none; }
  .statement p  { font-size: 17.5px; }

  .frame { transform: none !important; padding: 9px; }
  .tape { display: none; }

  .note-pin { position: static !important; inset: auto !important;
              margin: 16px auto 0 !important; text-align: center; display: block; }
  .note { transform: rotate(-1.5deg); font-size: 21px; max-width: 30ch; }


  .reversal > div { padding: 26px 22px; }

  section { padding: 56px 0; }
  section.tight { padding: 40px 0; }
  .wrap, .wrap-tight { padding: 0 20px; }

  .ribbon-track { font-size: 19px; gap: 30px; animation-duration: 42s; }
  .ribbon-track span { gap: 30px; }

  .callout { padding: 26px 22px; }
  .card { padding: 24px 22px; }

  .eps-map-wrap { padding: 12px; }
  .eps-map-legend { font-size: 13.5px; gap: 10px 16px; }
  .eps-tooltip { width: min(300px, calc(100vw - 20px)); }
}

@media (max-width: 560px) {
  .btn-row { gap: 12px; }

  .chip { font-size: 13.5px; padding: 7px 13px; }

  .hero .frame video, .hero .frame img { aspect-ratio: 5/4 !important; }

  .the-team .ring { width: 120px !important; }

  .footer-top { gap: 30px; }
}

.filmstage { padding: 0 0 4px; }
.filmstage .frame { margin: 0; }
.filmstage video { width: 100%; height: auto; display: block;
                   border-radius: calc(var(--r-md) - 6px); background: #EFE7DA; }

.hero-film { position: relative; }
.hero-film .frame { transform: rotate(-1deg); }

.film-band { background: var(--paper-alt); padding: 44px 0 52px; }
.film-band .frame { max-width: 900px; margin: 0 auto; transform: rotate(-.4deg); }
.film-band figcaption { font-family: var(--font-hand); font-size: 21px;
                        color: var(--ink-muted); text-align: center; padding-top: 10px; }

.portrait { width: 168px; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
            margin: 0 auto 18px; background: var(--paper-alt);
            outline: 2px dashed rgba(194,90,38,0.725); outline-offset: 8px; }
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.school { height: 30px; width: auto; margin: 14px auto 0; opacity: .75; }

@media (max-width: 860px) {
  .film-band { padding: 28px 0 34px; }
  .film-band .frame, .hero-film .frame { transform: none; }
  .portrait { width: 132px; }
}

.eyebrow { gap: 12px; }

html, body { overflow-x: hidden; }
.site-footer { margin-bottom: 0; }
.thread-rail { max-height: 100%; }

.card, .frame, .callout { background: linear-gradient(150deg, #FBEEE2, #FDF6EE); }
.card--kraft { background: linear-gradient(150deg, #EFE1C6, #E4D2AE); }

.card, 

.step-num { box-shadow: var(--shadow-sm), 0 0 0 6px var(--paper), 0 0 0 8px rgba(194,90,38,.3); }

.reversal { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.reversal > div { border-radius: var(--r-lg); padding: 34px 32px; position: relative; }

.rev-old { background: #F1E9D9; color: var(--ink-muted);
           border: 1px solid rgba(107,46,18,.12); }
.rev-new { background: linear-gradient(155deg, var(--orange), var(--orange-deep));
           color: #F7EDE4; box-shadow: var(--shadow-md); }
.rev-new::after { content: ""; position: absolute; inset: 10px;
                  border: 2px dashed rgba(255,255,255,0.899);
                  border-radius: calc(var(--r-lg) - 9px); pointer-events: none; }

.reversal h3 { font-size: 22px; margin-bottom: .6em; }
.rev-new h3 { color: #fff; }
.reversal ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.reversal li { padding-left: 30px; position: relative; line-height: 1.45; }

.reversal li::before {
  content: ""; position: absolute; left: 0; top: .34em;
  width: 16px; height: 16px; background-repeat: no-repeat; background-size: contain;
}
.rev-old li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' \
viewBox='0 0 16 16' fill='none' stroke='%23A33B27' stroke-width='2' stroke-linecap='round'>\
<path d='M3.5 3.5l9 9M12.5 3.5l-9 9'/></svg>");
}
.rev-new li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' \
viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' \
stroke-linejoin='round'><path d='M3 8.6l3.4 3.4L13 4.8'/></svg>");
}

@media (max-width: 860px) {
  .reversal { grid-template-columns: 1fr; gap: 16px; }
  .reversal > div { padding: 26px 22px; }
}

.step-row { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start; }
.step-row .step-num { margin-bottom: 0; }
.step-row h3 { margin-bottom: .18em; }
.step-row p { margin-bottom: 0; }

.hero-film .frame video { aspect-ratio: 16 / 10; object-fit: cover; }
@media (max-width: 860px) {
  .step-row { grid-template-columns: 46px 1fr; gap: 14px; }
  .hero-film .frame video { aspect-ratio: 4 / 3; }
}

.pvw {
  background: #FCFAF3; border-radius: var(--r-lg);
  border: 1px solid rgba(107,46,18,.12);
  box-shadow: var(--shadow-md);
  padding: 22px; position: relative;
}
.pvw-head { font-family: var(--font-display); font-weight: 600; font-size: 19px;
            color: var(--ink); margin: 0 0 4px; }
.pvw-sub { font-size: 14px; color: var(--ink-muted); margin: 0 0 18px; }

.pvw-steps { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.pvw-steps li { list-style: none; display: flex; align-items: center; gap: 7px;
                font-size: 12.5px; font-weight: 700; color: var(--ink-muted);
                background: var(--paper-alt); border-radius: var(--r-pill);
                padding: 6px 12px 6px 6px; }
.pvw-steps li b { width: 20px; height: 20px; border-radius: 50%; display: grid;
                  place-items: center; font-size: 11.5px;
                  background: rgba(107,46,18,.16); color: var(--ink); }
.pvw-steps li.on { background: var(--orange-wash); color: var(--orange-rust); }
.pvw-steps li.on b { background: var(--orange); color: #fff; }

.pvw-drop {
  display: block; width: 100%; text-align: center; text-decoration: none;
  border: 2px dashed rgba(194,90,38,0.652); border-radius: var(--r-md);
  background: var(--paper); color: inherit;
  padding: 34px 20px; cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}
.pvw-drop:hover, .pvw-drop.is-over { background: var(--orange-wash); border-color: var(--orange); }
.pvw-drop strong { display: block; font-family: var(--font-display); font-weight: 600;
                   font-size: 20px; color: var(--ink); margin-bottom: 6px; }
.pvw-drop span { display: block; font-size: 14px; color: var(--ink-muted); }
.pvw-formats { margin-top: 12px; font-size: 12.5px; font-weight: 700;
               letter-spacing: .06em; color: var(--orange-deep); }
.pvw-foot { display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
            justify-content: space-between; margin-top: 16px; }
.pvw-foot .small { margin: 0; }

@media (max-width: 860px) {
  .pvw { padding: 18px; }
  .pvw-drop { padding: 26px 16px; }
  .pvw-steps li { font-size: 11.5px; padding: 5px 10px 5px 5px; }
}

.note .mark, .note { font-variant-emoji: text; }

.btn.btn-primary, .btn.btn-primary:hover, .btn.btn-primary:focus { color: #fff; }
.nav-links a.btn.btn-primary { color: #fff; }
.on-dark .btn.btn-primary { color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(239,232,214,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid rgba(107,46,18,.12);
}
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 0;
  border-bottom: 2px dashed rgba(194,90,38,0.435);
}
.nav { display: flex; align-items: center; gap: 18px; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand img { height: 27px; width: auto; }
.brand-tag { font-family: var(--font-hand); font-size: 19px; color: var(--orange-deep); white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav .btn { padding: 11px 20px; min-height: 44px; font-size: 15px; }

.hero-mount { padding: 0 18px 18px; background: var(--paper); }
.hero { border-radius: 20px; overflow: hidden; position: relative; padding: 92px 0 84px; }
.hero .wrap { position: relative; z-index: 2; }

@media (max-width: 860px) {
  .hero-mount { padding: 0 10px 10px; }
  .hero { padding: 56px 0 52px; }
  .nav-links a { padding: 14px 12px; font-size: 16.5px; min-height: 46px; display: flex; align-items: center; }
}
@media (max-width: 560px) {
  .nav .btn { width: auto; }
}

.school { height: 52px; margin-top: 18px; opacity: .9; }
.the-team .school, .card .school { height: 56px; }
@media (max-width: 860px) { .school { height: 44px; } }

.nav-toggle {
  display: none; background: none; cursor: pointer;
  border: 1.8px solid rgba(107,46,18,.22); border-radius: var(--r-sm);
  min-width: 46px; min-height: 46px; padding: 0;
  align-items: center; justify-content: center; flex-direction: column;
}
.nav-toggle span { display: block; width: 21px; height: 2.2px; background: var(--ink); border-radius: 2px; }
.nav-toggle span + span { margin-top: 5px; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1.5px solid rgba(107,46,18,.14);
    flex-direction: column; align-items: stretch;
    padding: 12px 20px 20px; gap: 2px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links .btn { margin-top: 10px; justify-content: center; }
}

@media (max-width: 560px) {
  .hero-film .grid-2 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-film .portrait { width: 88px; margin-bottom: 12px; outline-offset: 5px; }
  .hero-film .card { padding: 16px 10px; }
  .hero-film .school { height: 30px; margin-top: 10px; }
}

.hero-portraits .portrait { width: min(150px, 34vw); }
@media (max-width: 620px) {
  .hero-portraits { gap: 10px; }
  .hero-portraits .card { padding: 14px 8px; }
  .hero-portraits .portrait { width: min(96px, 28vw); outline-offset: 5px; margin-bottom: 12px; }
  .hero-portraits .school { height: 26px; margin-top: 8px; }
  .hero-portraits h4 { font-size: 15px; }
}

.hero-portraits { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 100%; }
.hero-portraits > .card { min-width: 0; }
.hero-portraits .portrait { max-width: 100%; }

.hero--light, .hero--light p, .hero--light li { color: var(--ink-soft); }
.hero--light h1, .hero--light h2, .hero--light h3 { color: var(--ink); }
.hero--light .eyebrow { color: var(--ink); }
.hero--light .eyebrow::before { background: var(--orange-deep); }
.hero--light .note { color: var(--orange-rust); }
.hero--light .chip { background: rgba(255,255,255,.62); color: var(--ink);
                     border: 1px solid rgba(107,46,18,.18); }
.hero--light .chip::before { background: var(--orange-deep); }
.hero--light .btn.btn-ghost { background: rgba(255,255,255,.72); color: var(--ink);
                              box-shadow: inset 0 0 0 2px rgba(42,32,24,.35); }
.hero--light .btn.btn-ghost:hover { background: #fff; box-shadow: inset 0 0 0 2px var(--ink); }

.hero--light .hl { background: linear-gradient(180deg, transparent 62%, rgba(194,90,38,.34) 62%); }

.nav-links a {
  color: var(--ink); text-decoration: none;
  font-weight: 700; font-size: 15px;
  padding: 9px 13px; border-radius: var(--r-pill);
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: var(--orange-wash); color: var(--orange-rust); }
.nav-links a[aria-current="page"] { color: var(--orange-deep); background: var(--orange-wash); }
.nav-links a.btn { padding: 11px 20px; }

.offer {
  display: inline-flex; align-items: baseline; flex-wrap: wrap; gap: 0 10px;
  background: var(--amber);
  color: var(--ink);
  border-radius: var(--r-md);
  padding: 16px 22px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.offer::after {
  content: ""; position: absolute; inset: 6px;
  border: 2px dashed rgba(42,32,24,0.609);
  border-radius: calc(var(--r-md) - 5px);
  pointer-events: none;
}
.offer b {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(21px, 2.3vw, 27px); line-height: 1.1;
  letter-spacing: -.01em;
}
.offer span { font-size: 15px; font-weight: 700; }

.offer--line {
  background: none; box-shadow: none; padding: 0;
  color: var(--orange-rust); display: block;
}
.offer--line::after { display: none; }
.on-dark .offer--line { color: var(--amber); }

.valuebar .offer-flag { color: var(--amber); font-weight: 800; }

@media (max-width: 620px) {
  .offer { padding: 14px 16px; width: 100%; }
  .offer b { font-size: 20px; }
}

.school { height: 74px; margin-top: 20px; opacity: .95; }
.card .school, .the-team .school { height: 78px; }
.hero-portraits .school { height: 48px; margin-top: 14px; }
@media (max-width: 860px) {
  .school, .card .school, .the-team .school { height: 58px; }
  .hero-portraits .school { height: 34px; }
}
@media (max-width: 620px) { .hero-portraits .school { height: 28px; } }

.hero-panel {
  background: #FCFAF4;
  border-radius: 26px;
  padding: 40px 38px 36px;
  border: 1px solid rgba(107,46,18,.12);
  position: relative;
}
.hero-panel::after {
  content: ""; position: absolute; inset: 9px;
  border: 2px dashed rgba(194,90,38,0.435);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none;
}
.hero-panel > * { position: relative; z-index: 1; }
.hero-panel h1 { color: var(--ink); }
.hero-panel .lead { color: var(--ink-soft); }
.hero-panel .eyebrow { color: var(--orange-deep); }
.hero-panel .eyebrow::before { background: var(--orange-deep); }
.hero-panel .chip { background: var(--orange-wash); border: 1px solid rgba(194,90,38,.22); }
.hero-panel .btn.btn-ghost { background: transparent; color: var(--ink);
                             box-shadow: inset 0 0 0 2px rgba(42,32,24,.32); }
.hero-panel .btn.btn-ghost:hover { background: var(--ink); color: var(--paper); }

@media (max-width: 860px) { .hero-panel { padding: 26px 22px 24px; } }

.noquote {
  display: inline-flex; flex-direction: column; align-items: center; gap: 16px;
  background: var(--cacao); border-radius: var(--r-lg);
  padding: 34px 40px 28px;
}
.noquote-stage { position: relative; display: inline-block; }

.noquote-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(251,247,236,.10); color: var(--thread-soft);
  box-shadow: inset 0 0 0 1.6px rgba(251,247,236,.34);
  border-radius: var(--r-pill);
  padding: 17px 46px;
  font-family: var(--font-body); font-weight: 800; font-size: 14px;
  letter-spacing: .18em; text-transform: uppercase;
  white-space: nowrap;
  animation: noquote-dim 6s ease-in-out infinite;
}

.noquote-x { position: absolute; inset: -14px; width: calc(100% + 28px); height: calc(100% + 28px); }

.noquote-x path {
  fill: none; stroke: #fff; stroke-linecap: round;
  vector-effect: non-scaling-stroke; stroke-width: 4.5;
  stroke-dasharray: 300; stroke-dashoffset: 300;
}
.noquote-x path:nth-child(1) { animation: noquote-draw 6s ease-in-out infinite; }
.noquote-x path:nth-child(2) { animation: noquote-draw 6s ease-in-out .35s infinite; }

@keyframes noquote-draw {
  0%   { stroke-dashoffset: 300; }
  18%  { stroke-dashoffset: 0; }
  62%  { stroke-dashoffset: 0; }
  78%  { stroke-dashoffset: -300; }
  100% { stroke-dashoffset: -300; }
}
@keyframes noquote-dim {
  0%, 12%   { opacity: 1; }
  30%, 66%  { opacity: .38; }
  84%, 100% { opacity: 1; }
}

.noquote-caption {
  font-family: var(--font-hand); font-size: clamp(22px, 2.4vw, 30px);
  color: var(--amber); transform: rotate(-2deg); margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .noquote-btn { animation: none; opacity: .38; }
  .noquote-x path { animation: none; stroke-dashoffset: 0; }
}
@media (max-width: 560px) {
  .noquote-btn { padding: 15px 26px; font-size: 12.5px; letter-spacing: .14em; }
}

.draw-in { stroke-dasharray: 400; stroke-dashoffset: 400;
           animation: draw-on 1.1s cubic-bezier(.65,0,.35,1) both; }
@keyframes draw-on { to { stroke-dashoffset: 0; } }

.rule-draw { display: block; width: 100%; height: 2px; overflow: visible; }
.rule-draw line { stroke: #fff; stroke-width: 2; stroke-linecap: round;
                  stroke-dasharray: 1000; stroke-dashoffset: 1000;
                  animation: draw-on 1.4s cubic-bezier(.65,0,.35,1) .2s both; }

@media (prefers-reduced-motion: reduce) {
  .draw-in, .rule-draw line { animation: none; stroke-dashoffset: 0; }
}

.hero--light .eyebrow { color: var(--thread-soft); }
.hero--light .eyebrow::before { background: var(--amber); }
.hero--light .note { color: var(--thread-soft); }
.hero--light .frame figcaption { color: var(--ink-muted); }
.hero-panel .eyebrow { color: var(--orange-deep); }
.hero-panel .eyebrow::before { background: var(--orange-deep); }
.hero-panel .note { color: var(--orange-deep); }

.hero .noquote {
  position: absolute; z-index: 6;
  left: 46%; bottom: -26px;
  transform: rotate(-7deg);
  padding: 22px 30px 18px;
  gap: 12px;
}
.hero .noquote-btn { padding: 15px 34px; font-size: 13px; }
.hero .noquote-caption { font-size: 23px; }

@media (max-width: 1100px) {
  .hero .noquote { position: static; transform: rotate(-2deg); margin-top: 26px; }
}
@media (max-width: 860px) {
  .hero .noquote { width: 100%; transform: none; padding: 20px 18px 16px; }
}

.noquote-caption, .hero .noquote-caption { color: var(--amber); opacity: 1; }
.noquote { box-shadow: var(--shadow-md); }
.hero .noquote-btn { color: #EFE3D6; box-shadow: inset 0 0 0 1.6px rgba(251,247,236,.4); }

@media (max-width: 620px) {
  .hero .noquote, .noquote { width: 100%; max-width: 100%; padding: 18px 12px 14px; }
  .noquote-stage { width: 100%; }
  .noquote-btn { width: 100%; padding: 14px 10px; font-size: 11.5px; letter-spacing: .1em; }
  .noquote-x { inset: -9px; width: calc(100% + 18px); height: calc(100% + 18px); }
  .noquote-caption { font-size: 19px; text-align: center; }
}

.ribbon { position: relative; }
.ribbon::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(107,46,18,.55) 0%, rgba(107,46,18,0) 26%),
    linear-gradient(to top,    rgba(107,46,18,.45) 0%, rgba(107,46,18,0) 26%);
}

.ribbon .ribbon-track { position: relative; z-index: 2; }

.woven-rule { position: relative; }
.woven-rule::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(107,46,18,.5) 0%, rgba(107,46,18,0) 40%),
    linear-gradient(to top,    rgba(59,36,25,.6) 0%, rgba(59,36,25,0) 40%);
}

.noquote { align-items: center; text-align: center; }
.noquote-stage { display: inline-flex; justify-content: center; }

.noquote-x {
  position: absolute;
  left: -11px; right: -11px; top: -11px; bottom: -11px;
  width: auto; height: auto;
  overflow: visible;
}
.noquote-caption { text-align: center; width: 100%; }

@media (max-width: 620px) {
  .noquote-x { left: -8px; right: -8px; top: -8px; bottom: -8px; }
}

.noquote-stage {
  position: relative;
  display: block;
  width: max-content;
  margin: 0 auto;
  line-height: 0;
}
.noquote-stage .noquote-btn { line-height: 1; }

.noquote-x {
  position: absolute;
  left: -11px; top: -11px; right: auto; bottom: auto;
  width: calc(100% + 22px);
  height: calc(100% + 22px);
}
@media (max-width: 620px) {
  .noquote-x { left: -8px; top: -8px; width: calc(100% + 16px); height: calc(100% + 16px); }
}

.noquote-x { max-width: none; max-height: none; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 44px;
}

.hero {
  min-height: calc(100vh - 74px - 42px - 18px);
  display: flex; align-items: center;
  padding: 46px 0 54px;
}
.hero > .wrap { width: 100%; }

.hero-film .frame { padding: 10px; }
.hero-film .frame video,
.hero-film .frame img { aspect-ratio: 4 / 3; width: 100%; height: auto; object-fit: cover; }

.hero-panel { padding: 30px 32px 28px; }
.hero-panel h1 { font-size: clamp(42px, 4.6vw, 68px); margin-bottom: .18em; }
.hero-panel .offer { padding: 13px 18px; }
.hero-panel .offer b { font-size: clamp(19px, 1.7vw, 23px); }
.hero-panel .lead { font-size: clamp(16.5px, 1.4vw, 19px); }
.hero-panel .btn-row { margin-top: 20px !important; }
.hero-panel .chip-row { margin-top: 18px !important; }
.hero-panel .btn { min-height: 46px; padding: 13px 24px; font-size: 15px; }

@media (max-height: 820px) {
  .hero { min-height: 0; padding: 34px 0 44px; }
  .hero-panel h1 { font-size: clamp(38px, 4vw, 56px); }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { min-height: 0; }
}

.hero > .wrap { max-width: min(1560px, 94vw); }

@media (max-width: 1080px) { .hero > .wrap { max-width: 100%; } }

.hero > .wrap { max-width: min(1760px, 96vw); }
.hero-grid { grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); gap: 40px; }
.hero-film .frame video,
.hero-film .frame img { aspect-ratio: 16 / 10; }

.hero-film .frame { max-height: calc(100vh - 250px); }
.hero-film .frame video { max-height: calc(100vh - 285px); }

@media (max-width: 1080px) {
  .hero > .wrap { max-width: 100%; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-film .frame, .hero-film .frame video { max-height: none; }
  .hero-film .frame video, .hero-film .frame img { aspect-ratio: 4 / 3; }
}

.hero .noquote {
  left: auto; right: auto; bottom: auto;
  position: absolute;
  top: auto;
}
.hero-panel { position: relative; }
.hero-panel .noquote-anchor { position: absolute; right: -34px; bottom: -46px; }

.noquote-anchor, .noquote-inline { margin-top: 22px; }
.hero .noquote {
  position: static; transform: rotate(-2.5deg);
  padding: 18px 22px 14px; gap: 10px;
}
.hero .noquote-btn { padding: 13px 28px; font-size: 12px; }
.hero .noquote-caption { font-size: 21px; }

.hero--inner {
  min-height: 0;
  padding: 40px 0 46px;
  display: block;
}
.hero--inner > .wrap { max-width: min(1760px, 96vw); }
.hero--inner .hero-grid {
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 40px;
  align-items: center;
}
.hero--inner .hero-panel { padding: 34px 34px 30px; }
.hero--inner .hero-panel h1 { font-size: clamp(38px, 3.9vw, 58px); }
.hero--inner .hero-film .frame video,
.hero--inner .hero-film .frame img { aspect-ratio: 16 / 10; }
.hero--inner .hero-film .frame { max-height: none; }
.hero--inner .hero-film .frame video { max-height: none; }

.hero--inner .hero-panel:only-child { max-width: 62ch; }

@media (max-width: 1080px) {
  .hero--inner > .wrap { max-width: 100%; }
  .hero--inner .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero--inner .hero-film .frame video,
  .hero--inner .hero-film .frame img { aspect-ratio: 4 / 3; }
}
@media (max-width: 860px) {
  .hero--inner { padding: 26px 0 30px; }
  .hero--inner .hero-panel { padding: 24px 20px 22px; }
}

.hero--inner .hero-copy { padding: 0; background: none; border: 0; }
.hero--inner .hero-copy::after { display: none; }
.hero--inner .hero-copy h1 { color: var(--ink); font-size: clamp(38px, 4.1vw, 62px); }
.hero--inner .hero-copy .lead { color: var(--ink-soft); }
.hero--inner .hero-copy .eyebrow { color: var(--orange-deep); }
.hero--inner .hero-copy .eyebrow::before { background: var(--orange-deep); }
.hero--inner .hero-copy .note { color: var(--orange-deep); }
.hero--inner .hero-copy:only-child { max-width: 60ch; }

.hero--inner .hero-grid { grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr); gap: 48px; }
.hero--inner { padding: 52px 0 56px; }

@media (max-width: 1080px) {
  .hero--inner .hero-grid { grid-template-columns: 1fr; gap: 28px; }
}

.hero--inner .hero-grid { grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr); gap: 46px; }
.hero--inner .hero-copy { max-width: 46ch; }
.hero--inner .hero-copy h1 { font-size: clamp(36px, 3.6vw, 56px); }

.hero--inner .hero-film .frame img { aspect-ratio: 3 / 2; }

@media (max-width: 1080px) {
  .hero--inner .hero-grid { grid-template-columns: 1fr; }
  .hero--inner .hero-copy { max-width: none; }
  .hero--inner .hero-film .frame img { aspect-ratio: 4 / 3; }
}

.hero-portraits { gap: 22px; }
.hero-portraits .card { padding: 26px 20px 22px; }
.hero-portraits .portrait { width: min(184px, 40%); }
.hero-portraits h3 { font-size: clamp(17px, 1.35vw, 21px); }
.hero-portraits .school { height: 76px; margin-top: 12px; }

@media (max-width: 860px) {
  .hero-portraits .portrait { width: min(140px, 38%); }
  .hero-portraits .school { height: 56px; }
}
@media (max-width: 620px) {
  .hero-portraits .card { padding: 18px 12px 16px; }
  .hero-portraits .portrait { width: min(104px, 34vw); }
  .hero-portraits h3 { font-size: 15px; }
  .hero-portraits .school { height: 40px; }
}

.person {
  display: block; text-decoration: none; color: inherit;
  transition: transform .18s ease, background .18s ease;
  position: relative;
}
.person:hover, .person:focus-visible { transform: translateY(-4px); background: #FFFDF7; }
.person h3, .person p { color: inherit; }
.person:hover h3 { color: var(--orange-deep); }

.person-li {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 14px; padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--orange-wash); color: var(--orange-rust);
  font-size: 13.5px; font-weight: 800;
  opacity: 0; transform: translateY(5px);
  transition: opacity .18s ease, transform .18s ease;
}
.person:hover .person-li, .person:focus-visible .person-li { opacity: 1; transform: none; }
.li-mark { width: 17px; height: 17px; flex: 0 0 17px; }

@media (hover: none) {
  .person-li { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .person, .person-li { transition: none; }
}

.site-footer {
  background: var(--cacao);
  color: #C6B8A9;
  padding: 0 0 40px;
  margin-bottom: 0;
}
.site-footer .wrap { padding-top: 8px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 56px 0 44px;
}

.site-footer h4 {
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.site-footer li { margin: 0; }
.site-footer a {
  color: #C6B8A9; text-decoration: none; font-size: 15px;
  transition: color .15s ease;
}
.site-footer a:hover { color: var(--amber); }
.site-footer p { color: #9A8C7E; }

.footer-brand img { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand .note { color: var(--thread-soft); }

.footer-bottom {
  border-top: 2px dashed rgba(251,247,236,0.29);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: 14px; color: #9A8C7E;
}

@media (max-width: 980px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 620px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 32px; }
  .site-footer a { display: inline-block; padding: 3px 0; }
}

.eps-map-card {
  --eps-green:       #C25A26;   
  --eps-green-hover: #9E4318;
  --eps-blue:        #D9BE95;   
  --eps-blue-hover:  #B9986B;
  --eps-gray:        #E4DAC2;   
  --eps-stroke:      #EFE8D6;   
  --eps-text:        #2A2018;
  --eps-muted:       #5C4E42;
  --eps-bg:          transparent;

  background: transparent !important;
  max-width: 1080px !important;
  padding: 0 !important;
  font-family: var(--font-body);
  color: var(--ink-soft);
}
.eps-map-heading { display: none; }
.eps-map-sub, .eps-map-note {
  color: var(--ink-muted) !important;
  font-family: var(--font-body) !important;
}
.eps-map-sub { font-size: 15px !important; margin-bottom: 16px !important; }
.eps-map-wrap {
  background: #FCFAF3;
  border-radius: var(--r-md);
  padding: 22px;
  border: 2px dashed rgba(194,90,38,0.435);
}
.eps-map-legend { font-family: var(--font-body); color: var(--ink-soft); margin-top: 18px !important; }
.eps-swatch { border: 1px solid rgba(42,32,24,.18) !important; }
.eps-swatch.green { background: var(--eps-green); }
.eps-swatch.blue  { background: var(--eps-blue); }
.eps-tooltip {
  background: rgba(59,36,25,.97) !important;
  font-family: var(--font-body) !important;
  border-radius: 12px !important;
}
.eps-tooltip strong { font-family: var(--font-serif); }

.frame { position: relative; }
.frame > .tape {
  position: absolute;
  z-index: 4;
  width: clamp(84px, 12%, 132px);
  height: 28px;
}
.frame > .tape--tl { top: -13px; left: 4%;  transform: rotate(-6deg); }
.frame > .tape--tr { top: -13px; right: 4%; transform: rotate(5deg); }

@media (max-width: 620px) {
  .frame > .tape { width: clamp(64px, 16%, 96px); height: 22px; top: -10px; }
}

.valuebar {
  background: var(--cacao);
  color: #EFE3D6;
  font-size: 14px;
  text-align: center;
  padding: 11px 16px;
  letter-spacing: .005em;
}
.valuebar .offer-flag {
  color: #FFD98A;              
  font-weight: 800;
  font-size: 15px;
}
.valuebar .vb-full { color: #EFE3D6; font-weight: 600; }
.valuebar a {
  color: #FFFFFF; font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.valuebar a:hover { color: #FFD98A; }

:root { --orange-lift: #B54E1E; }   

.hero--inner .hero-copy .eyebrow,
.hero--inner .hero-copy .note,
.hero--inner .eyebrow,
.hero--inner .note { color: var(--orange-lift); }
.hero--inner .hero-copy .eyebrow::before,
.hero--inner .eyebrow::before { background: var(--orange-lift); }

.hero--inner .btn.btn-primary,
.hero .btn.btn-primary {
  background: linear-gradient(160deg, #BC5220 0%, #AA491B 62%, #97401A 100%);
  color: #fff;
}
.hero--inner .btn.btn-primary:hover,
.hero .btn.btn-primary:hover {
  background: linear-gradient(160deg, #C85A25 0%, #B44F1E 62%, #A2461C 100%);
  color: #fff;
}

.hero--inner .btn.btn-ghost {
  color: var(--orange-lift);
  box-shadow: inset 0 0 0 2px rgba(181,78,30,.5);
  background: rgba(255,255,255,.72);
}
.hero--inner .btn.btn-ghost:hover {
  background: var(--orange-lift); color: #fff;
  box-shadow: inset 0 0 0 2px var(--orange-lift);
}

.woven-rule {
  height: 20px;
  border: 0;
  position: relative;
  background-color: var(--orange);
  background-image:
    repeating-linear-gradient(152deg,
      rgba(107,46,18,.26) 0 1px,
      rgba(255,255,255,.14) 1px 3px),
    repeating-linear-gradient(62deg,
      var(--thread-soft)   0    4px,
      #E7DCC6              4px  5.5px,
      var(--orange-bright) 5.5px 9px,
      var(--orange)        9px  12px,
      var(--orange-deep)   12px 14px);
  background-size: 5px 5px, auto;
}

.woven-rule::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, var(--paper) 0%, rgba(239,232,214,0) 34%),
    linear-gradient(to top,    var(--cacao) 0%, rgba(59,36,25,0)    46%);
}

.site-footer .woven-rule::after {
  background:
    linear-gradient(to bottom, var(--paper) 0%, rgba(239,232,214,0) 30%),
    linear-gradient(to top,    var(--cacao) 0%, rgba(59,36,25,0)    50%);
}

.hero > .wrap,
.hero--inner > .wrap { max-width: min(1500px, 88vw); }

@media (max-width: 1300px) {
  .hero > .wrap, .hero--inner > .wrap { max-width: min(1600px, 94vw); }
}
@media (max-width: 1080px) {
  .hero > .wrap, .hero--inner > .wrap { max-width: 100%; }
}

.hero-panel { position: relative; }
.noquote-inline, .noquote-anchor {
  position: absolute;
  right: -30px;
  bottom: -34px;
  margin: 0;
  z-index: 7;
}
.hero .noquote {
  position: static;
  transform: rotate(-6deg);
  padding: 16px 20px 12px;
  gap: 9px;
}
.hero .noquote-btn { padding: 12px 24px; font-size: 11.5px; letter-spacing: .12em; }
.hero .noquote-caption { font-size: 19px; }

.hero-grid { align-items: center; }
.hero-panel { margin-bottom: 30px; }

@media (max-width: 1080px) {
  .noquote-inline, .noquote-anchor { position: static; margin-top: 20px; }
  .hero .noquote { transform: rotate(-2deg); }
  .hero-panel { margin-bottom: 0; }
}

.hero .hero-grid { grid-template-columns: minmax(0, 0.66fr) minmax(0, 1.34fr); gap: 34px; }
.hero-panel { padding: 26px 28px 24px; margin-bottom: 26px; }
.hero-panel h1 { font-size: clamp(38px, 4.1vw, 60px); }
.hero-panel .offer { padding: 11px 16px; }
.hero-panel .offer b { font-size: clamp(17px, 1.5vw, 21px); }
.hero-panel .lead { font-size: clamp(15.5px, 1.25vw, 18px); }
.hero-panel .btn { min-height: 44px; padding: 12px 20px; font-size: 14.5px; }
.hero-panel .chip { font-size: 13px; padding: 7px 13px; }

@media (max-height: 800px) {
  .hero { min-height: 0; padding: 26px 0 34px; }
  .hero-panel { padding: 20px 22px 18px; margin-bottom: 20px; }
  .hero-panel h1 { font-size: clamp(34px, 3.4vw, 46px); margin-bottom: .14em; }
  .hero-panel .offer { padding: 9px 14px; }
  .hero-panel .chip-row { margin-top: 12px !important; }
  .hero-panel .btn-row { margin-top: 14px !important; }
  .noquote-inline, .noquote-anchor { bottom: -28px; right: -24px; }
  .hero .noquote { padding: 12px 16px 9px; }
  .hero .noquote-caption { font-size: 17px; }
}

.noquote-inline, .noquote-anchor { right: -52px; bottom: -52px; }
@media (max-height: 800px) {
  .noquote-inline, .noquote-anchor { right: -44px; bottom: -44px; }
}
.hero-panel { margin-bottom: 44px; }
@media (max-height: 800px) { .hero-panel { margin-bottom: 34px; } }

@media (min-width: 1081px) {
  .hero-panel .chip-row { padding-right: 130px; }
}

.hero-film .frame,
.hero--inner .hero-film .frame { max-height: none; }

.hero .hero-film .frame video,
.hero .hero-film .frame img {
  max-height: calc(100vh - 330px);
  min-height: 220px;
  object-fit: cover;
}

.frame { display: flex; flex-direction: column; }
.frame > figcaption { flex: 0 0 auto; margin-top: 8px; }
.frame > video, .frame > img { flex: 1 1 auto; min-height: 0; }

@media (max-height: 820px) {
  .hero .hero-film .frame video,
  .hero .hero-film .frame img { max-height: calc(100vh - 390px); min-height: 180px; }
  .hero { padding: 22px 0 30px; }
  .hero-panel { margin-bottom: 30px; }
  .hero .hero-film .frame { padding: 8px; }
  .hero .hero-film figcaption { font-size: 17px; padding-top: 4px; }
}
@media (max-height: 740px) {
  .hero .hero-film .frame video,
  .hero .hero-film .frame img { max-height: calc(100vh - 400px); }
  .hero-panel h1 { font-size: clamp(30px, 3vw, 40px); }
  .hero-panel .lead { font-size: 15px; }
}

@media (max-height: 790px) {
  .hero { padding: 18px 0 26px; }
  .hero-panel { margin-bottom: 26px; }
  .noquote-inline, .noquote-anchor { bottom: -38px; right: -40px; }
  .hero .noquote { padding: 10px 14px 8px; gap: 7px; }
  .hero .noquote-btn { padding: 10px 20px; font-size: 11px; }
  .hero .noquote-caption { font-size: 16px; }
  .hero .hero-film .frame video,
  .hero .hero-film .frame img { max-height: calc(100vh - 380px); }
}

.person { position: relative; transition: transform .18s ease, background .18s ease; }
.person:hover, .person:focus-within { transform: translateY(-4px); background: #FFFDF7; }

.person-links {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
  margin-top: 14px;
  opacity: 0; transform: translateY(5px);
  transition: opacity .18s ease, transform .18s ease;
}
.person:hover .person-links, .person:focus-within .person-links { opacity: 1; transform: none; }

.person-links a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: var(--r-pill);
  background: var(--orange-wash); color: var(--orange-rust);
  font-size: 13px; font-weight: 800; text-decoration: none;
  transition: background .15s ease, color .15s ease;
  max-width: 100%;
}
.person-links a:hover { background: var(--orange-deep); color: #fff; }
.li-mark { width: 16px; height: 16px; flex: 0 0 16px; }

@media (hover: none) { .person-links { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .person, .person-links { transition: none; } }

@media (max-width: 560px) {
  .person-links { flex-direction: column; align-items: stretch; gap: 6px; }
  .person-links a { justify-content: center; padding: 8px 10px; font-size: 12.5px; }
  .li-mark { width: 14px; height: 14px; flex: 0 0 14px; }
}

.nav-links a {
  border: 2px solid transparent;
  padding: 7px 13px;
  font-weight: 700;
  transition: background .16s ease, color .16s ease;
}

.nav-links a:hover {
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    linear-gradient(160deg, #C85A25 0%, #B44F1E 60%, #A2461C 100%) border-box;
  color: var(--orange-deep);
}

.nav-links a[aria-current="page"] {
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    linear-gradient(160deg, #BC5220 0%, #AA491B 62%, #97401A 100%) border-box;
  color: var(--orange-deep);
  font-weight: 800;
}
.nav-links a[aria-current="page"]:hover {
  background:
    linear-gradient(var(--orange-wash), var(--orange-wash)) padding-box,
    linear-gradient(160deg, #C85A25 0%, #B44F1E 60%, #A2461C 100%) border-box;
}

.nav-links a.btn { border: none; padding: 11px 20px; }

@media (max-width: 860px) {
  .nav-links a, .nav-links a:hover, .nav-links a[aria-current="page"] {
    background: none; border: 0; border-left: 3px solid transparent;
    border-radius: var(--r-sm); padding: 14px 12px;
  }
  .nav-links a:hover { background: var(--paper-alt); }
  .nav-links a[aria-current="page"] {
    border-left-color: var(--orange-deep);
    background: var(--orange-wash);
    color: var(--orange-deep);
  }
}

.hero .hero-film figcaption { font-size: clamp(19px, 1.5vw, 24px); padding-top: 10px; }
@media (max-height: 820px) { .hero .hero-film figcaption { font-size: clamp(18px, 1.35vw, 21px); } }
@media (max-width: 860px)  { .hero .hero-film figcaption { font-size: 19px; } }

.chip--ico { gap: 8px; padding-left: 13px; }
.chip--ico::before { display: none; }   
.chip-ico { width: 17px; height: 17px; flex: 0 0 17px; color: var(--orange-deep); }
.on-dark .chip-ico, .hero--light .chip-ico { color: currentColor; }

@media (max-width: 620px) {
  .chip-ico { width: 15px; height: 15px; flex: 0 0 15px; }
}

.hero .noquote { padding: 20px 26px 16px; gap: 12px; }
.hero .noquote-btn { padding: 15px 32px; font-size: 13.5px; letter-spacing: .14em; }
.hero .noquote-caption { font-size: 23px; }
.hero .noquote-x { left: -13px; top: -13px; width: calc(100% + 26px); height: calc(100% + 26px); }
.hero .noquote-x path { stroke-width: 5.5; }

.hero .hero-film figcaption { font-size: clamp(21px, 1.75vw, 28px); padding-top: 12px; }

@media (max-height: 820px) {
  .hero .noquote { padding: 15px 20px 12px; gap: 9px; }
  .hero .noquote-btn { padding: 12px 24px; font-size: 12px; }
  .hero .noquote-caption { font-size: 19px; }
  .hero .hero-film figcaption { font-size: clamp(19px, 1.5vw, 23px); padding-top: 8px; }
}
@media (max-height: 790px) {
  .hero .noquote { padding: 13px 17px 10px; }
  .hero .noquote-btn { padding: 10px 20px; font-size: 11.5px; }
  .hero .noquote-caption { font-size: 18px; }
  .hero .hero-film figcaption { font-size: 19px; padding-top: 6px; }
}

.hero .hero-film { display: flex; flex-direction: column; align-items: flex-end; }
.hero .hero-film > .frame { margin-left: auto; margin-right: 0; }

@media (max-width: 1080px) {
  .hero .hero-film { align-items: stretch; }
  .hero .hero-film > .frame { margin-left: 0; }
}

.brand { gap: 14px; }
.brand img { height: 34px; }
.brand-tag { font-size: 24px; }

@media (max-width: 1200px) { .brand img { height: 30px; } .brand-tag { font-size: 21px; } }
@media (max-width: 860px)  { .brand img { height: 28px; } .brand-tag { font-size: 20px; } }

.chip-glyph {
  font-size: 19px; line-height: 1;
  color: var(--orange-deep);
  flex: 0 0 auto;
  font-variant-emoji: text;   
}
@media (max-width: 620px) { .chip-glyph { font-size: 17px; } }

.center.note { font-size: clamp(26px, 2.6vw, 34px); line-height: 1.2; }
@media (max-width: 860px) { .center.note { font-size: clamp(22px, 5.4vw, 27px); } }

.qr-block {
  position: relative;
  display: inline-block;
  margin: 4px 0 16px;
  overflow: hidden;               
  border-radius: 10px;
  line-height: 0;                 
}
.qr {
  display: block;
  width: 168px; height: 168px;
  border-radius: 10px;
  border: 1px solid rgba(42, 32, 24, .12);
}
.soon-sash {
  position: absolute;
  left: -34%; right: -34%;        
  top: 50%;
  transform: translateY(-50%) rotate(-21deg);
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.9;
  letter-spacing: .01em;
  text-align: center;
  box-shadow: 0 3px 10px rgba(42, 32, 24, .28);
}

.hero-copy .note {
  font-size: clamp(26px, 3.1vw, 36px);
  max-width: 24ch;
}
@media (max-width: 860px) {
  .hero-copy .note { font-size: 24px; }
}

.frame figcaption { font-size: 25px; }
@media (max-width: 860px) { .frame figcaption { font-size: 21px; } }

.usa-line {
  display: inline-flex; align-items: center; gap: 7px;
}
.flag-ico {
  width: 17px; height: 17px; flex: 0 0 17px;
  color: #C8B7A4;                 
}

.nav-links { gap: 12px; }
.nav-links > a { flex: 0 0 auto; white-space: nowrap; }

.woven-rule {
  height: 46px;
  background-image:
    repeating-linear-gradient(115deg,
      rgba(107, 46, 18, .22) 0 2px,
      rgba(255, 255, 255, .12) 2px 6px),
    repeating-linear-gradient(25deg,
      var(--thread-soft)   0     9px,
      #E7DCC6              9px   12px,
      var(--orange-bright) 12px  20px,
      var(--orange)        20px  27px,
      var(--orange-deep)   27px  31px);
  background-size: 10px 10px, auto;
}

.woven-rule::after {
  background:
    linear-gradient(to bottom,
      var(--paper) 0%,
      rgba(239, 232, 214, 0.748) 14%,
      rgba(239, 232, 214, 0.468) 30%,
      rgba(239, 232, 214, 0.204) 48%,
      rgba(239, 232, 214, 0.060) 66%,
      rgba(239, 232, 214, 0)   82%),
    linear-gradient(to top,
      var(--cacao) 0%,
      rgba(59, 36, 25, 0.748) 14%,
      rgba(59, 36, 25, 0.468) 30%,
      rgba(59, 36, 25, 0.204) 48%,
      rgba(59, 36, 25, 0.060) 66%,
      rgba(59, 36, 25, 0)   82%);
}
.site-footer .woven-rule::after {
  background:
    linear-gradient(to bottom,
      var(--paper) 0%,
      rgba(239, 232, 214, 0.560) 13%,
      rgba(239, 232, 214, 0.300)  28%,
      rgba(239, 232, 214, 0.110)  46%,
      rgba(239, 232, 214, 0)   70%),
    linear-gradient(to top,
      var(--cacao) 0%,
      rgba(59, 36, 25, 0.590)  14%,
      rgba(59, 36, 25, 0.345) 30%,
      rgba(59, 36, 25, 0.145) 48%,
      rgba(59, 36, 25, 0)   74%);
}

.eps-map-heading {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 10px;
}
.eps-map-sub {
  font-size: 20.3px !important;
  margin-bottom: 18px !important;
  max-width: 68ch;
}
.eps-map-legend { font-size: 19.3px; }

.eyebrow--wide {
  white-space: nowrap;
  letter-spacing: .11em;
  margin-bottom: 22px;
}
@media (max-width: 1180px) {
  .eyebrow--wide { font-size: 14px; letter-spacing: .08em; }
}
@media (max-width: 860px) {
  .eyebrow--wide { white-space: normal; }
}

.offer, .offer b, .offer span { color: var(--ink); }
.offer span { font-weight: 800; }

.chip-glyph { color: currentColor; }

.hero .hero-grid:has(.hero-film) .hero-film,
.hero--inner .hero-grid:has(.hero-film) .hero-film { justify-self: stretch; width: 100%; }
.hero .hero-film .frame,
.hero--inner .hero-film .frame { width: 100%; max-height: none; margin-left: 0; margin-right: 0; }
.hero .hero-film .frame video,
.hero--inner .hero-film .frame video {
  width: 100%; height: auto;
  max-height: calc(100vh - 250px);
  object-fit: cover;
}

@media (max-width: 1100px) {
  .hero .hero-film .frame video,
  .hero--inner .hero-film .frame video { max-height: none; }
}

.hero .noquote { padding: 18px 20px 14px; }
.hero .noquote-btn { padding: 13px 24px; font-size: 12.5px; }
.hero .noquote-caption { font-size: 21px; }
@media (max-width: 1100px) {
  .hero .noquote { padding: 18px 22px 14px; }
  .hero .noquote-btn { padding: 13px 26px; font-size: 12.5px; }
  .hero .noquote-caption { font-size: 20px; }
}

.film-half .frame { max-height: none; margin: 0; }
.film-half .frame video { max-height: none; width: 100%; height: auto; display: block; }

section .wrap.center > .note,
section .wrap > .note {
  font-size: clamp(26px, 3.1vw, 36px);
  max-width: 24ch;
}
@media (max-width: 860px) {
  section .wrap.center > .note,
  section .wrap > .note { font-size: 24px; }
}

.eps-map-sub { max-width: none; white-space: nowrap; }
@media (max-width: 1250px) {
  .eps-map-sub { white-space: normal; font-size: 17.5px !important; }
}

.h2-marked {
  display: flex; align-items: center; gap: 14px;
}
.h2-ico {
  width: .92em; height: .92em; flex: 0 0 auto;
  color: var(--orange-lift);
}
@media (max-width: 620px) {
  .h2-marked { gap: 10px; }
}

.noquote-inline, .noquote-anchor {
  left: 100%; right: auto;
  margin-left: -14px;
  bottom: -104px;
}
.hero-panel .chip-row {
  flex-wrap: nowrap;
  max-width: 100%;
}
.hero-panel .chip {
  white-space: nowrap;
  font-size: 13.5px;
  padding: 8px 13px;
}
@media (max-width: 1500px) {
  .hero-panel .chip { font-size: 12.5px; padding: 7px 11px; }
  .noquote-inline, .noquote-anchor { margin-left: -10px; bottom: -96px; }
}
@media (max-width: 1100px) {
  .hero-panel .chip-row { flex-wrap: wrap; }
  .hero-panel .chip { font-size: 13px; }
}

.hero { padding-bottom: 74px; }
.noquote-inline, .noquote-anchor { bottom: -62px; }
@media (max-width: 1500px) {
  .noquote-inline, .noquote-anchor { bottom: -56px; }
}
@media (max-width: 1100px) {
  .hero { padding-bottom: 40px; }
}

.frame figcaption,
.hero .hero-film figcaption,
.hero--inner .hero-film figcaption {
  text-align: center;
  padding-right: 0;
}

.frame figcaption { font-size: 28px; }
@media (max-width: 860px) { .frame figcaption { font-size: 22px; } }

.note-ico {
  width: .82em; height: .82em;
  display: inline-block; vertical-align: -.06em;
  margin-left: .12em;
}

.hero--inner .hero-copy .note { margin-top: 46px; }
@media (max-width: 1100px) {
  .hero--inner .hero-copy .note { margin-top: 24px; }
}

.eps-map-wrap svg {
  max-height: calc(100vh - 330px);
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .eps-map-wrap svg { max-height: none; width: 100%; }
}

#eps-map { padding-top: 34px; padding-bottom: 26px; }
#eps-map + section { padding-top: 40px; }

.step-head {
  display: flex; align-items: center; gap: 11px;
}
.step-ico {
  width: 1.05em; height: 1.05em; flex: 0 0 auto;
  color: var(--orange-lift);
}

.noquote-inline, .noquote-anchor { bottom: -132px; }
@media (max-width: 1500px) {
  .noquote-inline, .noquote-anchor { bottom: -120px; }
}
.hero { padding-bottom: 118px; }
@media (max-width: 1100px) {
  .hero { padding-bottom: 40px; }
}

.hero-film .noquote-inline {
  position: absolute;
  left: -26px; right: auto;
  bottom: 118px;
  margin: 0;
  z-index: 7;
}
@media (max-width: 1500px) {
  .hero-film .noquote-inline { left: -18px; bottom: 106px; }
}

@media (max-width: 1340px) {
  .hero-film .noquote-inline { left: 6px; bottom: 100px; }
}
@media (max-width: 1100px) {
  .hero-film .noquote-inline { position: static; margin: 20px auto 0; }
}

.hero { padding-bottom: 132px; }
@media (max-width: 1100px) { .hero { padding-bottom: 40px; } }

@media (max-width: 1100px) {
  .hero-film .noquote-inline {
    position: static !important;
    left: auto !important; right: auto !important; bottom: auto !important;
    margin: 22px auto 0 !important;
    width: fit-content;
    max-width: 100%;
  }
  .hero-film .note-pin {
    position: static !important;
    inset: auto !important;
    margin: 14px auto 0 !important;
    display: block;
    text-align: center;
  }
  .hero .noquote { transform: rotate(-2deg); }
}

@media (max-width: 1100px) {
  .hero .hero-grid,
  .hero--inner .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero .hero-film,
  .hero--inner .hero-film { justify-self: stretch; width: 100%; }
}

.frame figcaption { font-size: 31px; }
.hero .hero-film figcaption,
.hero--inner .hero-film figcaption { font-size: clamp(24px, 2vw, 31px); }
@media (max-height: 820px) {
  .hero .hero-film figcaption { font-size: clamp(23px, 1.8vw, 28px); }
}
@media (max-width: 860px) {
  .frame figcaption,
  .hero .hero-film figcaption,
  .hero--inner .hero-film figcaption { font-size: 24px; }
}

.hero-panel .chip-row { max-width: 100%; }
.hero-panel .chip {
  font-size: 12.5px;
  padding: 7px 11px;
  gap: 7px;
  min-width: 0;
}
.hero-panel .chip .chip-ico,
.hero-panel .chip .chip-glyph { flex: 0 0 auto; }
@media (max-width: 1100px) {
  .hero-panel .chip { font-size: 13px; padding: 8px 13px; }
}

.site-footer { position: relative; overflow: hidden; }
.footer-flourish {
  position: absolute;
  bottom: 10px;
  width: 190px;
  color: rgba(255, 255, 255, .30);
  pointer-events: none;
  z-index: 0;
}
.footer-flourish svg { width: 100%; height: auto; display: block; }
.footer-flourish--left  { left: 14px; }
.footer-flourish--right { right: 14px; transform: scaleX(-1); }

.site-footer .wrap { position: relative; z-index: 1; }

@media (max-width: 1100px) {
  .footer-flourish { width: 128px; bottom: 6px; opacity: .8; }
}
@media (max-width: 620px) {
  .footer-flourish { display: none; }
}

.portrait {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  outline-offset: 7px;
}
.hero-portraits .portrait { width: min(210px, 44%); }
@media (max-width: 1100px) { .hero-portraits .portrait { width: min(168px, 42%); } }
@media (max-width: 860px)  { .portrait { width: 150px; border-radius: 14px; } }
@media (max-width: 620px)  { .hero-portraits .portrait { width: min(124px, 38vw); } }

section { padding: 62px 0; }
section.tight { padding: 44px 0; }
#eps-map { padding-top: 30px; padding-bottom: 22px; }
#eps-map + section { padding-top: 34px; }
@media (max-width: 860px) {
  section { padding: 46px 0; }
  section.tight { padding: 34px 0; }
}

.hero-panel .chip-row { flex-wrap: wrap; max-width: 100%; }
.hero-panel .chip {
  flex: 0 0 auto;
  min-width: auto;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
  font-size: 12.5px;
  padding: 7px 11px;
}

.pay-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: 26px;
}
.pay-label {
  font-size: 12.5px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: #9A8C7E; margin-right: 6px;
}
.pay-mark {
  height: 28px; width: auto; display: block;
  background: #fff;
  border-radius: 5px;
  padding: 3px 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}
@media (max-width: 620px) {
  .pay-mark { height: 24px; }
  .pay-label { width: 100%; margin-bottom: 2px; }
}

.logo-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 18px 34px;
  margin-top: 26px;
}
.logo-mark {
  height: 44px; width: auto; display: block;
  opacity: .9;
}
.logo-plate {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--cacao);
  padding: 10px 22px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .55);
  border: 2px dashed rgba(194, 90, 38, .5);
}
@media (max-width: 620px) {
  .logo-row { gap: 12px 18px; }
  .logo-plate { font-size: 19px; padding: 8px 16px; }
}

.slides {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
}
.slides img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slideFade 21s infinite;
}
.slides img:nth-child(1) { animation-delay: 0s; opacity: 1; }
.slides img:nth-child(2) { animation-delay: 7s; }
.slides img:nth-child(3) { animation-delay: 14s; }

@keyframes slideFade {
  0%     { opacity: 0; }
  8%     { opacity: 1; }
  33%    { opacity: 1; }
  41%    { opacity: 0; }
  100%   { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .slides img { animation: none; opacity: 0; }
  .slides img:nth-child(1) { opacity: 1; }
}

.footer-flourish:empty { display: none; }
.corner-swirl { width: 100%; height: auto; display: block; opacity: .34; }

.logo-mark { height: 73px; }
.logo-evervive { height: 104px; }
.logo-electro-winds { height: 81px; }
.logo-etsy { height: 64px; }
.logo-row { gap: 20px 42px; }

.logo-row--tight { justify-content: flex-start; margin-top: 0; }
@media (max-width: 860px) {
  .logo-mark { height: 56px; }
  .logo-evervive { height: 81px; }
  .logo-electro-winds { height: 64px; }
  .logo-etsy { height: 50px; }
}

.hero-film .note-pin { bottom: -18px; }
@media (max-width: 1500px) { .hero-film .note-pin { bottom: -14px; } }
.woven.ribbon { position: relative; z-index: 9; }

.hero-copy h1 .nowrap { white-space: nowrap; }
@media (max-width: 1100px) {
  .hero-copy h1 .nowrap { white-space: normal; }
}

.hero .step-num,
.hero--inner .step-num {
  box-shadow: 0 2px 8px rgba(42, 32, 24, .22);
}

.logo-ebay { height: 62px; }
@media (max-width: 860px) { .logo-ebay { height: 48px; } }

.hero .noquote-inline {
  position: absolute !important;
  left: auto !important;
  right: -10px !important;
  top: calc(100% - 34px) !important;
  bottom: auto !important;
  margin: 0 !important;
  z-index: 6;
}
@media (max-width: 1100px) {
  .hero .noquote-inline {
    position: static;
    margin: 20px auto 0;
    width: fit-content;
  }
}

.hero-mount > .ribbon {
  margin-left: -18px;
  margin-right: -18px;
}

.hero-mount > .hero:has(+ .ribbon) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media (max-width: 860px) {
  .hero-mount > .ribbon { margin-left: -10px; margin-right: -10px; }
}

body.page-the-team .person { position: relative; }

body.page-the-team .person .school {
  height: 114px;
  margin-top: 18px;
  transition: opacity .2s ease;
}
body.page-the-team .person:hover .school,
body.page-the-team .person:focus-within .school { opacity: 0; }

body.page-the-team .person .person-links {
  position: absolute;
  left: 14px; right: 14px;
  bottom: 34px;
  margin-top: 0;
}

@media (max-width: 860px) {
  body.page-the-team .person .school { height: 78px; }
  body.page-the-team .person .person-links { bottom: 22px; }
}
@media (hover: none) {
  body.page-the-team .person .school { opacity: .25; }
}

@media (max-width: 1400px) {
  body.page-index .hero .noquote-inline { top: calc(100% + 8px) !important; }
}

body.page-index section.bg-alt { position: relative; }

body.page-index section.bg-alt::before,
body.page-index section.bg-alt::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 56px;
  pointer-events: none;
}
body.page-index section.bg-alt::before {
  top: 0;
  background: linear-gradient(to bottom, var(--paper), rgba(239, 232, 214, 0));
}
body.page-index section.bg-alt::after {
  bottom: 0;
  background: linear-gradient(to top, var(--paper), rgba(239, 232, 214, 0));
}

body.page-how-gridlock-works .hero-copy .step-row { position: relative; }

body.page-how-gridlock-works .hero-copy .step-row:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 26px;                 
  top: 58px;                  
  bottom: -22px;              
  border-left: 2px dashed rgba(42, 32, 24, .62);
  pointer-events: none;
}

body.page-pro section.bg-alt { position: relative; }

body.page-pro section.bg-alt::before,
body.page-pro section.bg-alt::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 56px;
  pointer-events: none;
}
body.page-pro section.bg-alt::before {
  top: 0;
  background: linear-gradient(to bottom, var(--paper), rgba(239, 232, 214, 0));
}
body.page-pro section.bg-alt::after {
  bottom: 0;
  background: linear-gradient(to top, var(--paper), rgba(239, 232, 214, 0));
}

.footer-bottom {
  border-top: 0;
  position: relative;
}
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  border-top: 2px dashed rgba(251, 247, 236, .62);
  pointer-events: none;
}

body.page-how-gridlock-works section.bg-alt { position: relative; }

body.page-how-gridlock-works section.bg-alt::before,
body.page-how-gridlock-works section.bg-alt::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 56px;
  pointer-events: none;
}
body.page-how-gridlock-works section.bg-alt::before {
  top: 0;
  background: linear-gradient(to bottom, var(--paper), rgba(239, 232, 214, 0));
}
body.page-how-gridlock-works section.bg-alt::after {
  bottom: 0;
  background: linear-gradient(to top, var(--paper), rgba(239, 232, 214, 0));
}

body.page-sustainability section.bg-alt { position: relative; }

body.page-sustainability section.bg-alt::before,
body.page-sustainability section.bg-alt::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 56px;
  pointer-events: none;
}
body.page-sustainability section.bg-alt::before {
  top: 0;
  background: linear-gradient(to bottom, var(--paper), rgba(239, 232, 214, 0));
}
body.page-sustainability section.bg-alt::after {
  bottom: 0;
  background: linear-gradient(to top, var(--paper), rgba(239, 232, 214, 0));
}

body.page-the-team section.bg-alt { position: relative; }

body.page-the-team section.bg-alt::before,
body.page-the-team section.bg-alt::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 56px;
  pointer-events: none;
}
body.page-the-team section.bg-alt::before {
  top: 0;
  background: linear-gradient(to bottom, var(--paper), rgba(239, 232, 214, 0));
}
body.page-the-team section.bg-alt::after {
  bottom: 0;
  background: linear-gradient(to top, var(--paper), rgba(239, 232, 214, 0));
}

body.page-the-team section.bg-alt .lead { margin-left: auto; margin-right: auto; }

.site-footer .wrap { max-width: 1272px; }

.pay-ribbon {
  height: 24px;
  width: auto;
  display: block;
  align-self: center;
}
@media (max-width: 860px) {
  .pay-ribbon { height: 20px; }
  .footer-bottom { justify-content: flex-start; }
}

.site-footer .footer-top {
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
}
.site-footer .footer-brand { max-width: 400px; }

@media (max-width: 1100px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }
}

body.page-index section.bg-alt,
body.page-pro section.bg-alt,
body.page-sustainability section.bg-alt {
  background: #D2C29C;
}

body.page-index section.bg-alt::before,
body.page-index section.bg-alt::after,
body.page-pro section.bg-alt::before,
body.page-pro section.bg-alt::after,
body.page-sustainability section.bg-alt::before,
body.page-sustainability section.bg-alt::after {
  display: none;
}

body.page-index section.bg-alt,
body.page-pro section.bg-alt,
body.page-sustainability section.bg-alt {
  background-image: linear-gradient(
    to bottom,
    #EFE8D6 0,
    #D2C29C 130px,
    #D2C29C calc(100% - 130px),
    #EFE8D6 100%);
}

body.page-index .hero .noquote-caption {
  transform: none;
  line-height: 1.15;
}

.rotator {
  display: grid;
  margin: 22px 0 4px;
}
.rot-item {
  grid-area: 1 / 1;
  opacity: 0;
  animation: rotFade 15s infinite;
}

.rot-item .card { margin: 0; height: 100%; }
.rot-item .card h3 { margin-top: 0; }
.rot-item .card p { margin-bottom: 0; }
.rot-item:nth-child(1) { animation-delay: 0s; opacity: 1; }
.rot-item:nth-child(2) { animation-delay: 5s; }
.rot-item:nth-child(3) { animation-delay: 10s; }

@keyframes rotFade {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  30%  { opacity: 1; }
  34%  { opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .rot-item { animation: none; opacity: 0; }
  .rot-item:nth-child(1) { opacity: 1; }
}

.ico-draw path,
.ico-draw circle,
.ico-draw rect { stroke-dasharray: 90; stroke-dashoffset: 0; }

.reveal.in .ico-draw path,
.reveal.in .ico-draw circle,
.reveal.in .ico-draw rect {
  animation: icoDraw .75s ease both;
}
.reveal.in .ico-draw :nth-child(2) { animation-delay: .12s; }
.reveal.in .ico-draw :nth-child(3) { animation-delay: .24s; }
.reveal.in .ico-draw :nth-child(4) { animation-delay: .36s; }

@keyframes icoDraw {
  from { stroke-dashoffset: 90; }
  to   { stroke-dashoffset: 0; }
}

.ico-leaf { transform-origin: 60% 80%; }
.h2-marked:hover .ico-leaf { animation: icoSway 1.6s ease-in-out 1 both; }

@keyframes icoSway {
  0%, 100% { transform: rotate(0) translate(0, 0); }
  20%      { transform: rotate(-8deg) translate(2px, -4px); }
  45%      { transform: rotate(4deg) translate(-2px, -2px); }
  70%      { transform: rotate(-3deg) translate(1px, -1px); }
}

body.page-the-team .person .ico-draw path,
body.page-the-team .person .ico-draw circle { animation: none; }
body.page-the-team .person:hover .ico-draw path,
body.page-the-team .person:hover .ico-draw circle,
body.page-the-team .person:focus-within .ico-draw path,
body.page-the-team .person:focus-within .ico-draw circle {
  animation: icoDraw .7s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .reveal.in .ico-draw path,
  .reveal.in .ico-draw circle,
  .reveal.in .ico-draw rect,
  .h2-marked:hover .ico-leaf { animation: none; }
}

section.bg-alt::before,
section.bg-alt::after { display: none; }

section.bg-alt {
  background-image: linear-gradient(
    to bottom,
    #EFE8D6 0,
    #D2C29C 130px,
    #D2C29C calc(100% - 130px),
    #EFE8D6 100%);
}

.cmp {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
  --pos: 50%;
}
.cmp img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.cmp .cmp-b { clip-path: inset(0 0 0 var(--pos)); }

.cmp-line {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos);
  width: 4px; margin-left: -2px;
  background: linear-gradient(180deg,
    var(--orange-bright) 0%, var(--orange) 55%, var(--orange-rust) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .45), 0 2px 10px rgba(42, 32, 24, .4);
  pointer-events: none;
  z-index: 2;
}
.cmp-line::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 46px; height: 46px; margin: -23px 0 0 -23px;
  border-radius: 50%;
  background: linear-gradient(180deg,
    var(--orange-bright) 0%, var(--orange) 55%, var(--orange-rust) 100%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .8), 0 3px 14px rgba(42, 32, 24, .45);
}

.cmp-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  margin: 0; padding: 0;
  appearance: none; -webkit-appearance: none;
  background: transparent;
  cursor: ew-resize;
  z-index: 3;
}
.cmp-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 52px; height: 100%;
  background: transparent;
  cursor: ew-resize;
}
.cmp-range::-moz-range-thumb {
  width: 52px; height: 100%;
  border: 0; background: transparent;
  cursor: ew-resize;
}

.cmp-range:focus-visible { outline: 3px solid var(--orange-deep); outline-offset: 4px; }

.compare { max-width: 760px; margin-left: auto; margin-right: auto; }

.inspiration-shot {
  margin: 34px auto 0;
  max-width: 560px;
  text-align: center;
}
.inspiration-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.inspiration-shot figcaption {
  margin-top: 12px;
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--ink-muted);
}

.steps-card {
  padding: 26px 20px 24px;
  margin: 26px -8px 4px;
}
.steps-card::before { inset: 7px; }

.steps-card:hover { transform: none; box-shadow: var(--shadow-sm); }

@media (max-width: 860px) {
  .steps-card { padding: 22px 16px 20px; margin-left: 0; margin-right: 0; }
}

.ico-mailbox .mb-flag {
  transform-box: view-box;
  transform-origin: 18px 11px;
  transform: rotate(0deg);
  transition: transform .55s cubic-bezier(.34, 1.46, .64, 1);
}
.h2-marked:hover .ico-mailbox .mb-flag { transform: rotate(-90deg); }

.ico-mailbox line { stroke-dasharray: 90; stroke-dashoffset: 0; }
.reveal.in .ico-mailbox line { animation: icoDraw .75s ease both; }

@media (prefers-reduced-motion: reduce) {
  .ico-mailbox .mb-flag { transition: none; }
  .reveal.in .ico-mailbox line { animation: none; }
}

.hero-film .frame video,
.film-band .frame video,
.frame video {
  aspect-ratio: auto;
  object-fit: contain;
  height: auto;
  max-height: none;
  background: #000;   
}

.rot-card { padding: 0; background: none; border: 0; box-shadow: none; }
.rot-card h3 { margin: 0 0 .35em; }
.rot-card p:last-child { margin-bottom: 0; }

.hero-copy .steps-card { padding: 26px 26px 24px; }
.hero-copy .steps-card .lead { margin: 0; }
.hero-copy .steps-card .lead + .rotator { margin-top: 16px; }

.hero-film .frame img {
  aspect-ratio: auto;
  object-fit: contain;
  height: auto;
}

.cmp-tag {
  position: absolute; top: 14px;
  z-index: 4; pointer-events: none;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-family: var(--font-alt); font-weight: 700;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(42, 32, 24, .3);
}

.cmp-tag--a {
  left: 14px;
  background: rgba(42, 32, 24, .82); color: #F6EFE2;
}
.cmp-tag--b {
  right: 14px;
  background: var(--orange); color: #fff;
}

.rot-item .card,
.rot-card { height: auto; }

body.page-pro .hero-copy .btn-row {
  flex-wrap: nowrap;
  align-items: stretch;
  margin-top: auto;          
  padding-top: 26px;
}
body.page-pro .hero-copy { display: flex; flex-direction: column; }
body.page-pro .hero-copy .btn-row .btn { white-space: nowrap; }

body.page-pro .hero-grid { align-items: stretch; }

.sample-line { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; }
.rabbit-ico { width: 20px; height: 20px; flex: 0 0 20px; color: var(--orange); }
.pvw-foot:hover .rabbit-ico { animation: rabbitHop .6s cubic-bezier(.42,0,.58,1) 1; }
@keyframes rabbitHop {
  0%   { transform: rotate(0)    translate(0, 0); }
  20%  { transform: rotate(5deg) translate(3px, 1.5px); }
  40%  { transform: rotate(-5deg) translate(-3px, -1.5px); }
  60%  { transform: rotate(3deg) translate(2px, 1px); }
  80%  { transform: rotate(-3deg) translate(-2px, -1px); }
  100% { transform: rotate(0)    translate(0, 0); }
}
.sample-credit { font-size: 12.5px; line-height: 1.45; opacity: .8; margin: 0; }

@media (prefers-reduced-motion: reduce) {
  .pvw-foot:hover .rabbit-ico { animation: none; }
}

body.page-how-gridlock-works .hero-copy .btn-row {
  flex-wrap: nowrap;
}
body.page-how-gridlock-works .hero-copy .btn-row .btn { white-space: nowrap; }
body.page-how-gridlock-works .hero-copy .note { margin-top: 18px; }

.noline { max-width: none; }
.noline-lead { display: block; margin-bottom: .35em; }
.noline-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  justify-items: center;
  gap: 4px 28px;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.35;
}
.noline-grid > span { white-space: nowrap; }

@media (max-width: 700px) {
  .noline-grid { gap: 4px 20px; font-size: 15px; }
}

.social-row {
  display: flex;
  flex-direction: row;      
  align-items: center;
  gap: 12px;
  margin: 16px 0 0;
}
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: #E8DCCB;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.social-link svg { width: 19px; height: 19px; }
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.social-row--ink { justify-content: flex-start; margin-top: 18px; }
.social-row--ink .social-link {
  color: var(--orange-deep);
  background: rgba(194, 90, 38, .10);
  border-color: rgba(194, 90, 38, .28);
}
.social-row--ink .social-link:hover { color: #fff; }

body.page-pro .hero-copy .btn-row { gap: 10px; }
body.page-pro .hero-copy .btn-row .btn {
  padding-left: 18px; padding-right: 18px;
  font-size: 15px;
  min-width: 0;
  flex: 0 1 auto;
}

body.page-pro .pvw { display: flex; flex-direction: column; }
body.page-pro .pvw-drop { flex: 1 1 auto; min-height: 300px; }

.footer-motto {
  font-size: 27px;
  margin-top: 40px;
  transform: rotate(-8deg);
  transform-origin: left center;
}

.hero-panel { container-type: inline-size; }
.noline-rest { font-size: min(21px, 3.7cqi); }

.hero-film .frame,
.film-band .frame,
.film-half .frame {
  transition: background-color .35s ease, box-shadow .35s ease, transform .35s ease;
}
.hero-film .frame > figcaption,
.film-band .frame > figcaption,
.film-half .frame > figcaption {
  transition: opacity .35s ease;
}

.hero-film .frame:hover,
.film-band .frame:hover,
.film-half .frame:hover {
  background-color: rgba(252, 250, 244, 0.12);
  box-shadow: 0 4px 14px rgba(107, 46, 18, .05);
  transform: scale(.985);          
}
.hero-film .frame:hover > figcaption,
.film-band .frame:hover > figcaption,
.film-half .frame:hover > figcaption {
  opacity: 0;
}

.frame:hover > .tape { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero-film .frame,
  .film-band .frame,
  .film-half .frame,
  .hero-film .frame > figcaption { transition: none; }
  .hero-film .frame:hover,
  .film-band .frame:hover,
  .film-half .frame:hover { transform: none; }
}

body.page-pro .hero--inner { padding-top: 26px; }
body.page-pro .hero-copy .eyebrow { margin-top: 0; }

body.page-pro .pvw-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body.page-pro .hero-copy .btn-row .btn { font-size: 16px; padding-left: 24px; padding-right: 24px; }

body.page-the-team .steps-card .lead .hl {
  display: inline-block;
  white-space: nowrap;
  font-size: min(1em, 4.8cqi);   
}
body.page-the-team .hero-copy { container-type: inline-size; }

body.page-the-team .hero-copy { display: flex; flex-direction: column; }
body.page-the-team .hero-copy .btn-row {
  margin-top: auto;
  padding-top: 26px;
}
body.page-the-team .hero-grid { align-items: stretch; }

.btn-primary, .btn.btn-primary {
  background: linear-gradient(150deg,
    var(--orange-bright) 0%,
    var(--orange) 42%,
    var(--orange-deep) 78%,
    var(--orange-rust) 100%);
}
.btn-primary:hover, .btn.btn-primary:hover {
  background: linear-gradient(150deg,
    #EE8A44 0%,
    var(--orange-bright) 42%,
    var(--orange) 78%,
    var(--orange-deep) 100%);
}

.step-num, .rot-num {
  background: linear-gradient(150deg,
    #F09A54 0%,
    var(--orange-bright) 34%,
    var(--orange) 66%,
    var(--orange-deep) 100%);
}

.rev-new {
  background: linear-gradient(150deg,
    var(--orange-bright) 0%,
    var(--orange) 38%,
    var(--orange-deep) 76%,
    var(--orange-rust) 100%);
}

.pvw-drop strong { display: inline-flex; align-items: center; gap: 10px; }
.drop-arrow { width: 26px; height: 26px; flex: 0 0 26px; color: var(--orange); }
.drop-arrow .da-dash,
.drop-arrow .da-arrow { transform-box: view-box; transform-origin: center; }

.pvw-drop:hover .da-dash  { animation: daDash  .4s ease 1; }
.pvw-drop:hover .da-arrow { animation: daArrow .4s ease 1; }

@keyframes daDash {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(1px); }
  100% { transform: translateY(0); }
}
@keyframes daArrow {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(3px); }
  100% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .pvw-drop:hover .da-dash,
  .pvw-drop:hover .da-arrow { animation: none; }
}

.hero-film .frame > figcaption,
.film-band .frame > figcaption,
.film-half .frame > figcaption {
  overflow: hidden;
  max-height: 5em;
  transition: opacity .28s ease,
              max-height .35s ease,
              margin-top .35s ease,
              padding-top .35s ease;
}

.hero-film .frame:hover > figcaption,
.film-band .frame:hover > figcaption,
.film-half .frame:hover > figcaption {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero-film .frame > figcaption,
  .film-band .frame > figcaption,
  .film-half .frame > figcaption { transition: none; }
}

.col-head {
  display: flex;
  align-items: center;
  gap: 9px;
}
.col-ico {
  width: 18px; height: 18px;
  flex: 0 0 18px;          
  color: var(--orange-bright);
  overflow: visible;
}
.col-ico path { transition: transform .3s ease; transform-box: view-box; }

.col-head:hover .ico-files .fs-a { transform: translate(-4px, 4px); }
.col-head:hover .ico-files .fs-b { transform: translate(4px, -4px); }

.ico-handheart .hh-heart { transform-origin: 16px 8px; }
.col-head:hover .ico-handheart .hh-heart { transform: translateY(-2px) scale(1.1); }

.ico-gavel { transform-box: fill-box; transform-origin: 0% 100%; }
.col-head:hover .ico-gavel { animation: gavelSwing .8s ease-in-out 1; }
@keyframes gavelSwing {
  0%   { transform: rotate(0); }
  60%  { transform: rotate(-20deg); }
  80%  { transform: rotate(25deg); }
  100% { transform: rotate(0); }
}

@media (prefers-reduced-motion: reduce) {
  .col-ico path { transition: none; }
  .col-head:hover .ico-gavel { animation: none; }
}

.social-link .yt-play { fill: var(--cacao); }
.social-link:hover .yt-play { fill: var(--orange); }
.social-row--ink .social-link .yt-play { fill: #FBF3EC; }
.social-row--ink .social-link:hover .yt-play { fill: var(--orange); }

.hero--inner .btn.btn-primary,
.hero .btn.btn-primary,
.nav-links a.btn.btn-primary,
.valuebar .btn.btn-primary,
.on-dark .btn.btn-primary {
  background: linear-gradient(150deg,
    var(--orange-bright) 0%,
    var(--orange) 42%,
    var(--orange-deep) 78%,
    var(--orange-rust) 100%);
  color: #fff;
}
.hero--inner .btn.btn-primary:hover,
.hero .btn.btn-primary:hover,
.nav-links a.btn.btn-primary:hover,
.valuebar .btn.btn-primary:hover,
.on-dark .btn.btn-primary:hover {
  background: linear-gradient(150deg,
    #EE8A44 0%,
    var(--orange-bright) 42%,
    var(--orange) 78%,
    var(--orange-deep) 100%);
  color: #fff;
}

.frame video,
.hero-film .frame video,
.film-band .frame video,
.film-half .frame video {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: fill;        
  background: transparent;
  border-radius: 12px;     
  display: block;
}

body.page-index .hero .hero-film .frame video {
  max-width: calc((100vh - 425px) * 16 / 9);
  max-height: none;
  margin-left: auto; margin-right: auto;
}

.hero .hero-film .frame video,
.hero-film .frame video { max-height: none; }

.film-half .frame:hover { transform: scale(1.035); z-index: 3; }
@media (prefers-reduced-motion: reduce) {
  .film-half .frame:hover { transform: none; }
}

.frame video,
.hero-film .frame video,
.film-band .frame video,
.film-half .frame video,
.hero .frame video {
  aspect-ratio: auto !important;
  object-fit: contain;
  background: transparent;
  height: auto;
  max-height: none;
  flex: 0 0 auto;
}

body.page-pro .pvw-drop { min-height: 0; padding: 30px 24px; }
body.page-pro .hero--inner { padding-top: 18px; padding-bottom: 22px; }
.steps-card { padding: 20px 18px 18px; }
.rotator { margin: 18px 0 0; }

body.page-the-team .hero-copy .steps-card .lead {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}

body.page-the-team .hero-copy .steps-card .hl {
  padding: 0 .12em;
}

.btn-primary, .btn.btn-primary { position: relative; overflow: hidden; }
.btn-primary::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: -60%;
  width: 38%;
  background: linear-gradient(100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, .17) 50%,
    rgba(255, 255, 255, 0) 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
}
.btn-primary:hover::before { animation: btnShimmer .95s ease-out 1; }
@keyframes btnShimmer {
  0%   { left: -60%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 115%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover::before { animation: none; }
}

.inspiration-stack {
  position: relative;
  max-width: 560px;
  margin: 34px auto 0;
  min-height: 460px;
}
.ins-card {
  position: absolute;
  inset: 0;
  margin: 0;
  text-align: center;
  animation: insCycle 16s cubic-bezier(.4, 0, .2, 1) infinite;
  will-change: transform, opacity;
}
.ins-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.ins-card figcaption {
  margin-top: 12px;
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--ink-muted);
}
.ins-card:nth-child(1) { animation-delay: 0s; }
.ins-card:nth-child(2) { animation-delay: 8s; }

@keyframes insCycle {
  0%   { transform: translateX(0) scale(1);          opacity: 1; z-index: 3; }
  40%  { transform: translateX(0) scale(1);          opacity: 1; z-index: 3; }
  50%  { transform: translateX(125%) scale(.96);     opacity: 0; z-index: 3; }
  51%  { transform: translateX(-125%) scale(.9);     opacity: 0; z-index: 1; }
  62%  { transform: translateX(-22px) scale(.93);    opacity: 1; z-index: 1; }
  92%  { transform: translateX(-22px) scale(.93);    opacity: 1; z-index: 1; }
  100% { transform: translateX(0) scale(1);          opacity: 1; z-index: 3; }
}

@media (prefers-reduced-motion: reduce) {
  .ins-card { animation: none; opacity: 0; }
  .ins-card:nth-child(1) { opacity: 1; z-index: 3; }
}
@media (max-width: 700px) {
  .inspiration-stack { min-height: 380px; }
}

.turns-up {
  max-width: 760px;
  margin: 26px auto 0;
}
.turns-up img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.turns-up-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
  max-width: 1040px;
  margin: 26px auto 0;
}
.turns-up-pair .turns-up { max-width: none; margin: 0; }
.turns-up-pair .turns-up:nth-child(1) { transform: rotate(-.7deg); }
.turns-up-pair .turns-up:nth-child(2) { transform: rotate(.8deg); }

.turns-up-pair .turns-up:nth-child(3) {
  grid-column: 1 / -1;
  width: calc(50% - 13px);      
  margin: 0 auto;
  transform: rotate(-.5deg);
}

@media (max-width: 860px) {
  .turns-up-pair { grid-template-columns: 1fr; gap: 30px; }
  .turns-up-pair .turns-up { transform: none; }
  .turns-up-pair .turns-up:nth-child(3) { width: 100%; transform: none; }
}

body.page-how-gridlock-works .hero-copy .note { margin-top: 34px; }

.rot-card h3 { margin-top: 0; }
.rot-card p { margin-bottom: 0; }
.rot-card .step-row::after { display: none; }

.hero-note { display: block; margin-top: 22px; }

body.page-how-gridlock-works .hero-note { margin-top: 66px; }

.turns-up-pair { max-width: none; gap: 34px; }

.comes-back-grid > .reveal:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;   
}
.comes-back-grid > .reveal:first-child .lead { margin-bottom: 0; }
.comes-back-btns { margin-top: auto; padding-top: 26px; }

.slides img {
  object-fit: contain;
  background: #FCFAF4;
}

.slides--js img,

.slides--js img:nth-child(1) { animation: none; opacity: 0; transition: opacity .6s ease; }
.slides--js img.on,
.slides--js img:nth-child(1).on { opacity: 1; }

.slide-dots {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex; justify-content: center; gap: 0;
  z-index: 3;
  opacity: 0;
  transition: opacity .25s ease;
}
.slides:hover .slide-dots,
.slide-dots:focus-within { opacity: 1; }

.slide-dot { padding: 0; cursor: pointer; }
.slide-dot:focus-visible { outline: 2px solid var(--orange-deep); outline-offset: -8px; border-radius: 50%; }

.inspiration-shot {
  max-width: 620px;
  margin: 34px auto 0;
}
.inspiration-shot .slides { border-radius: 12px; overflow: hidden; }
.inspiration-shot .slides-cap { min-height: 2.4em; }

.hero-film .frame,
.film-half .frame,
.film-band .frame {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-film .frame > figcaption,
.film-half .frame > figcaption,
.film-band .frame > figcaption { text-align: center; }

.slide-dot {
  width: 44px; height: 44px;
  border: 0;
  background: none;
  box-shadow: none;
  display: grid;
  place-items: center;
}
.slide-dot::before {
  content: "";
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1.5px solid rgba(42, 32, 24, .45);
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 1px 4px rgba(42, 32, 24, .35);
  transition: background .2s ease, transform .2s ease;
}
.slide-dot:hover::before { transform: scale(1.15); }
.slide-dot.on::before { background: var(--orange); border-color: #fff; }

.inspiration-shot .slides-cap { font-size: 26px; }

body.page-assembly .step-track .step { position: relative; }
body.page-assembly .step-track .step-num {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

body.page-assembly .step-track .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  left: calc(50% + 33px);
  right: calc(-50% - 26px + 33px);
  border-top: 2px dashed rgba(194, 90, 38, .55);
  z-index: 1;
}

@media (max-width: 900px) {
  body.page-assembly .step-track .step:not(:last-child)::after { display: none; }
}

.btn-ico {
  width: 19px; height: 19px;
  flex: 0 0 19px;
  margin-left: 4px;   
  vertical-align: -3px;
}
.btn:has(.btn-ico) { display: inline-flex; align-items: center; }

.ico-mailcheck .mc-check {
  stroke-dasharray: 12;
  stroke-dashoffset: 0;
  opacity: 1;
}
.btn:hover .ico-mailcheck .mc-check { animation: mcDraw .45s ease-in-out 1; }
@keyframes mcDraw {
  from { stroke-dashoffset: 12; opacity: 0; }
  to   { stroke-dashoffset: 0;  opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover .ico-mailcheck .mc-check { animation: none; }
}

:root { --hero-gap: 67px; }

.hero,
.hero--inner { padding-top: var(--hero-gap); }

.hero .hero-panel,
.hero .hero-copy,
.hero--inner .hero-copy { margin-top: 0; }
.hero .hero-panel > :first-child,
.hero .hero-copy > :first-child,
.hero .eyebrow:first-child { margin-top: 0; }

body.page-pro .hero--inner { padding-top: var(--hero-gap); }

.hero-grid,
.hero--inner .hero-grid { align-items: start; }

body.page-pro .hero-grid > .hero-copy,
body.page-the-team .hero-grid > .hero-copy { align-self: stretch; }

@media (max-height: 960px) {
  body.page-index .hero-panel { padding-top: 22px; padding-bottom: 20px; }
  body.page-index .hero-panel h1 { margin-bottom: 12px; }
  body.page-index .hero-panel .offer { margin-bottom: 12px; }
  body.page-index .hero-panel .noline { margin-bottom: 12px; }
  body.page-index .hero-panel .chip-row { margin-top: 14px; }
  body.page-index .noquote-inline { margin-top: 0; }

  body.page-index .hero .noquote {
    transform: rotate(-7deg);
  }
}

body.page-sustainability .hero-note {
  white-space: normal;
  max-width: 24ch;
}
body.page-sustainability .hero-copy { container-type: inline-size; }

.h3-marked { font-size: 26px; }
.h3-marked .h2-ico { width: 30px; height: 30px; flex: 0 0 30px; }
.h3-plain { font-size: 26px; margin-bottom: .3em; }
body.page-sustainability .h3-marked + p,
body.page-sustainability .h3-plain + p { margin-bottom: 0; }

@media (max-height: 960px) {
  .hero .hero-film .frame video,
  .hero .hero-film .frame img,
  body.page-index .hero .hero-film .frame video {
    max-height: none;
    min-height: 0;
    max-width: none;
    width: 100%;
  }
  body.page-index .hero .hero-film .frame { max-width: 100%; width: auto; }
}

.frame > .slides,
.frame > img,
.frame > video,
.frame > .cmp {
  border-radius: calc(var(--r-md) - 12px);
}
.frame > .slides img { border-radius: 0; }   

.hero-film .frame > .slides,
.hero-film .frame > img,
.hero-film .frame > video {
  border-radius: calc(var(--r-md) - 10px);
}

@media (max-width: 900px) {
  .steps-card { margin-left: 0; margin-right: 0; }
  body.page-how-gridlock-works .hero-copy .btn-row,
  body.page-pro .hero-copy .btn-row { flex-wrap: wrap; }
  body.page-how-gridlock-works .hero-copy .btn-row .btn,
  body.page-pro .hero-copy .btn-row .btn { white-space: normal; }
  .hero-copy h1 .nowrap { white-space: normal; }
}

.slides { position: relative; }

.slide-dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 10px;              
  top: auto;
  display: flex; justify-content: center; gap: 0;
  z-index: 4;
  opacity: 0;
  transition: opacity .22s ease;
}

.slide-dots::before {
  content: "";
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 34px;
  border-radius: var(--r-pill);
  background: rgba(42, 32, 24, .28);
  z-index: -1;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(42, 32, 24, .42);
  color: #fff;
  cursor: pointer;
  z-index: 4;
  opacity: 0;
  transition: opacity .22s ease, background .2s ease;
}
.slide-arrow svg { width: 20px; height: 20px; }
.slide-arrow--prev { left: 10px; }
.slide-arrow--next { right: 10px; }
.slide-arrow:hover { background: var(--orange); }
.slide-arrow:focus-visible { outline: 2px solid #fff; outline-offset: -4px; }

.slides:hover .slide-dots,
.slides:hover .slide-arrow,
.slides:focus-within .slide-dots,
.slides:focus-within .slide-arrow { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .slide-dots, .slide-arrow { transition: none; }
}

.inv-list { list-style: none; margin: 0 0 1.2em; padding: 0; display: grid; gap: 14px; }
.inv-list li { position: relative; padding-left: 26px; line-height: 1.62; }
.inv-list li::before {
  content: "";
  position: absolute; left: 3px; top: .62em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.venn-figure {
  margin: 30px 0;
  width: min(1180px, 96vw);
  margin-left: 50%;
  transform: translateX(-50%);
}
.venn-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.venn-figure figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-muted);
}

@media (max-width: 700px) {
  .venn-figure { width: 100%; margin-left: 0; transform: none; }
  .venn-figure img { width: 100%; max-width: 100%; }
}

.slides img,
.frame > .slides img {        
  inset: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.slides--js img,
.frame > .slides--js img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

.ico-flask { fill: currentColor; stroke: none; }
.ico-flask .fl-bubbles,
.ico-flask .fl-body { transform-origin: 50% 55%; }

.h2-marked:hover .ico-flask .fl-bubbles { animation: flaskRise .8s ease-out both; }
.h2-marked:hover .ico-flask .fl-body { animation: flaskWobble .8s ease-in-out both; }

@keyframes flaskRise {
  0%   { transform: translateY(0);     opacity: 1; }
  60%  { transform: translateY(-34px); opacity: .55; }
  100% { transform: translateY(-52px); opacity: 0; }
}
@keyframes flaskWobble {
  0%, 100% { transform: rotate(0); }
  20%  { transform: rotate(6deg); }
  45%  { transform: rotate(-6deg); }
  70%  { transform: rotate(3deg); }
  88%  { transform: rotate(-3deg); }
}

.ico-earth circle,
.ico-earth path { stroke-dasharray: 1; stroke-dashoffset: 0; }

.reveal.in .ico-earth circle,
.reveal.in .ico-earth path,
.h2-marked:hover .ico-earth circle,
.h2-marked:hover .ico-earth path { animation: earthDraw .7s ease both; }

.reveal.in .ico-earth path,
.h2-marked:hover .ico-earth path { animation-delay: .3s; }

@keyframes earthDraw {
  from { stroke-dashoffset: 1; opacity: 0; }
  to   { stroke-dashoffset: 0; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .h2-marked:hover .ico-flask .fl-bubbles,
  .h2-marked:hover .ico-flask .fl-body,
  .reveal.in .ico-earth circle,
  .reveal.in .ico-earth path,
  .h2-marked:hover .ico-earth circle,
  .h2-marked:hover .ico-earth path { animation: none; }
}

.cform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  margin-top: 22px;
}
.cfield { display: flex; flex-direction: column; gap: 6px; }
.cfield--wide { grid-column: 1 / -1; }
.cfield > span {
  font-size: 14px; font-weight: 700; letter-spacing: .01em;
  color: var(--ink-muted);
}
.cfield input,
.cfield textarea {
  font: inherit; font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--kraft);
  border-radius: 10px;
  padding: 11px 13px;
  width: 100%;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.cfield textarea { resize: vertical; min-height: 108px; }
.cfield input:focus,
.cfield textarea:focus {
  outline: none;
  border-color: var(--orange-lift);
  box-shadow: 0 0 0 3px rgba(197, 84, 8, .16);
}
.cform-actions {
  grid-column: 1 / -1;
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
}
.cform-note { font-size: 14px; color: var(--ink-muted); }
.cform-alt { margin: 16px 0 0; font-size: 15px; color: var(--ink-muted); }

@media (max-width: 620px) {
  .cform { grid-template-columns: 1fr; }
}

.btn { overflow: hidden; }
.btn > * { position: relative; z-index: 1; }

.btn-ripple {
  position: absolute;
  left: 50%; top: 50%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle,
    rgba(197, 84, 8, .32) 0%,
    rgba(197, 84, 8, .22) 55%,
    rgba(197, 84, 8, 0) 72%);
  transform: translate(-50%, -50%) scale(0);
  animation: btnRipple .44s cubic-bezier(.22,.61,.36,1) forwards;
}

.btn-primary .btn-ripple,
.btn-cream .btn-ripple,
.btn.btn-amber .btn-ripple {
  background: radial-gradient(circle,
    rgba(255, 255, 255, .55) 0%,
    rgba(255, 240, 224, .34) 55%,
    rgba(255, 240, 224, 0) 72%);
}

@keyframes btnRipple {
  0%   { transform: translate(-50%, -50%) scale(0);   opacity: 1; }
  70%  { opacity: .85; }
  100% { transform: translate(-50%, -50%) scale(1);   opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-ripple { display: none; }
}

.struck { position: relative; display: inline-block; white-space: nowrap; }

.noline-grid > .struck { justify-self: center; }
.struck-line {
  position: absolute; left: -4px; right: -4px; top: 50%;
  width: calc(100% + 8px); height: 12px;
  transform: translateY(-50%);
  overflow: visible; pointer-events: none;
}
.struck-line path {
  fill: none; stroke: var(--red); stroke-linecap: round;
  vector-effect: non-scaling-stroke; stroke-width: 2.6;
  stroke-dasharray: 300; stroke-dashoffset: 300;
  animation: struck-draw 6s ease-in-out infinite;
}
.struck:nth-child(2) .struck-line path { animation-delay: .22s; }
.struck:nth-child(3) .struck-line path { animation-delay: .44s; }
.struck:nth-child(4) .struck-line path { animation-delay: .66s; }

@keyframes struck-draw {
  0%   { stroke-dashoffset: 300; }
  18%  { stroke-dashoffset: 0; }
  62%  { stroke-dashoffset: 0; }
  78%  { stroke-dashoffset: -300; }
  100% { stroke-dashoffset: -300; }
}

@media (prefers-reduced-motion: reduce) {
  .struck-line path { animation: none; stroke-dashoffset: 0; }
}

.callout--row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
@media (max-width: 620px) {
  .callout--row { justify-content: flex-start; }
}

.legal-prose { font-size: 16.5px; line-height: 1.72; color: var(--ink-soft); }
.legal-prose h2 {
  font-size: clamp(21px, 2.1vw, 26px);
  margin: 1.9em 0 .5em;
  color: var(--ink);
}
.legal-prose h3 {
  font-size: 18.5px;
  margin: 1.5em 0 .4em;
  color: var(--ink);
}
.legal-prose h2:first-child,
.legal-prose h3:first-child { margin-top: 0; }
.legal-prose p { margin: 0 0 1em; }
.legal-prose ul,
.legal-prose ol { margin: 0 0 1.1em 1.25em; padding: 0; }
.legal-prose li { margin-bottom: .45em; }
.legal-prose a { color: var(--orange-deep); text-decoration: underline; }
.legal-prose a:hover { color: var(--orange-rust); }
.legal-prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.2em; }
.legal-prose th,
.legal-prose td {
  text-align: left; vertical-align: top;
  padding: 9px 12px;
  border-bottom: 1px solid var(--kraft);
  font-size: 15.5px;
}
.legal-prose th { color: var(--ink); font-weight: 800; }

.lead-light { font-weight: 500; }

@media (max-width: 760px) {

  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .hero-film .grid-2,
  .hero-portraits.grid-2 { grid-template-columns: 1fr 1fr; }

  .hero .noquote-inline,
  body.page-index .hero .noquote-inline {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 22px auto 0 !important;
    width: fit-content;
  }

  .comes-back-grid { grid-template-columns: 1fr !important; gap: 30px !important; }

  body.page-the-team .steps-card .lead .hl {
    white-space: normal;
    font-size: 1em;
    display: inline;
  }
}

@media (max-width: 400px) {
  .site-footer .footer-top { grid-template-columns: 1fr; }
  .site-footer a { overflow-wrap: anywhere; }
}

@media (max-width: 900px) {
  .legal-prose table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (hover: none) {
  body.page-the-team .person .school { opacity: .75; }
  body.page-the-team .person .person-links {
    position: static;
    left: auto; right: auto; bottom: auto;
    margin-top: 14px;
  }
}

@media (max-width: 1023px) {
  .hero .noquote-inline,
  body.page-index .hero .noquote-inline {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    margin: 22px auto 0 !important;
    width: fit-content;
  }
}

@media (max-width: 380px) {
  .hero .noquote-x {
    left: -5px; top: -5px; right: -5px; bottom: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
  }
  .hero .noquote { padding-left: 12px; padding-right: 12px; }
  .hero .noquote-btn { padding-left: 18px; padding-right: 18px; }
}
