@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&display=swap');


/* =========================================================
   FONTS
========================================================= */

@font-face {
  font-family: 'boxen light';
  src: url('webfonts/boxen/boxen-light.eot');
  src: url('webfonts/boxen/boxen-light.eot?#iefix') format('embedded-opentype'),
       url('webfonts/boxen/boxen-light.woff') format('woff'),
       url('webfonts/boxen/boxen-light.ttf') format('truetype'),
       url('webfonts/boxen/boxen-light.svg') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Boxen Bold';
  src: url('fonts/boxen-bold-serif.woff2') format('woff2'),
       url('fonts/boxen-bold-serif.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GothamPro Light';
  src: url('webfonts/GothamPro_Light/GothamPro-Light.eot');
  src: url('webfonts/GothamPro_Light/GothamPro-Light.eot?#iefix') format('embedded-opentype'),
       url('webfonts/GothamPro_Light/GothamPro-Light.woff') format('woff'),
       url('webfonts/GothamPro_Light/GothamPro-Light.ttf') format('truetype'),
       url('webfonts/GothamPro_Light/GothamPro-Light.svg') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   GLOBAL TYPOGRAPHY
========================================================= */


body {
  font-family: 'GothamPro Light', Arial, sans-serif;
}

h1, h2, h3 {
  font-family: 'boxen light', serif;
}

strong, b,
.logo-bold {
  font-family:'Boxen Bold', Georgia, "Times New Roman", serif;
  font-weight:700;
}

:root{
  --ink:#111111;
  --ink-soft:rgba(17,17,17,.6);
  --accent:#982068;
  --backroom-bg-top:#eaf2f7;
  --backroom-bg-bottom:#f4f8fb;
  --backroom-panel:#e6eef4;
  --line-soft:rgba(17,17,17,.15);

  --sans:'GothamPro Light', Arial, sans-serif;
  --script:'EB Garamond', Georgia, serif;
  --serif:'boxen light', Georgia, "Times New Roman", serif;
  --serif-bold:'Boxen Bold', Georgia, "Times New Roman", serif;
}

/* =========================================================
   GLOBAL BASE
========================================================= */

a{
  color:inherit;
  transition:color .2s ease;
  text-decoration:none;
}

img{
  display:block;
  width:100%;
  height:auto;
}

.fracture-link{
  position:relative;
  color:inherit;
  text-decoration:none;
  opacity:.9;
  transition:
    opacity .25s ease,
    text-shadow .35s ease;
}

.fracture-link:hover,
.fracture-link:focus{
  color:inherit;
  text-decoration:none;
  opacity:1;
  text-shadow:0 0 8px rgba(255,255,255,.12);
}

.fracture-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-1px;
  width:100%;
  height:1px;
  background:currentColor;
  opacity:.14;
}

.page-top-spacing{
  margin-top:24px;
}

.container{
  max-width:70rem;
  margin-left:auto;
  margin-right:auto;
}

.container-fluid .container h1{
  font-family:var(--sans);
  font-size:20px;
  color:var(--ink);
}

.container-fluid .container p{
  font-family:var(--sans);
  font-size:12px;
  padding-left:20px;
}

.section.title{
  font-family:var(--sans);
  font-size:25px;
  padding-left:20px;
  padding-top:20px;
}

h2.section.title{
  color:#E2D3E2;
  font-size:20px;
}

/* =========================================================
   NAVIGATION
========================================================= */

.navbar-nav.ml-auto{
  align-items:flex-start;
}

.navbar-nav.ml-auto .nav-item{
  display:flex;
  align-items:flex-start;
}

.navbar-nav.ml-auto .nav-link{
  margin-top:30px;
  margin-left:28px;
  padding-top:0;
  padding-bottom:0;
  line-height:1;
  font-family:var(--sans);
  color:var(--ink);
  display:inline-flex;
  align-items:center;
}

.navbar-nav.ml-auto .nav-link:hover,
.navbar-nav .nav-link:hover{
  color:var(--accent) !important;
}

.navbar-nav .nav-link{
  letter-spacing:0.04em;
}

#navbarDropdown1{
  color:var(--ink);
}

#navbarDropdown1:hover{
  color:var(--accent);
}

.navbar-nav.ml-auto .dropdown-toggle::after{
  margin-left:0.35em;
  vertical-align:middle;
  position:relative;
  top:-1px;
}

.dropdown-item:hover,
.dropdown-item.active{
  background:transparent;
  color:var(--accent);
}

/* =========================================================
   CONTACT FORM
========================================================= */

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact button[type="submit"]{
  font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif;
}

#contact{
  background:#F9F9F9;
  padding:0;
  margin:0;
}

#contact h3{
  color:#F96;
  display:block;
  font-size:30px;
  font-weight:400;
}

#contact h4{
  margin:5px 0 15px;
  display:block;
  font-size:13px;
}

fieldset{
  border:medium none !important;
  margin:0 0 10px;
  min-width:100%;
  padding:10px;
  width:100%;
}

#contact input,
#contact textarea{
  width:100%;
  border:1px solid #CCC;
  background:#FFF;
  margin:0 0 5px;
  padding:10px;
}

#contact input:hover,
#contact textarea:hover{
  transition:border-color .3s ease-in-out;
  border:1px solid #AAA;
}

#contact textarea{
  height:100px;
  max-width:100%;
  resize:none;
}

#contact button[type="submit"]{
  cursor:pointer;
  width:20%;
  border:none;
  background:var(--accent);
  color:#FFF;
  margin:0 0 5px;
  padding:10px;
  font-size:15px;
}

#contact button[type="submit"]:hover{
  background:var(--accent);
  transition:background .3s ease-in-out;
}

#contact button[type="submit"]:active{
  box-shadow:inset 0 1px 3px rgba(17,17,17,0.5);
}

#contact input:focus,
#contact textarea:focus{
  outline:0;
  border:1px solid #999;
}

.success{
  color:var(--accent);
  font-family:var(--sans);
  font-size:12px;
  letter-spacing:.06em;
  margin-top:12px;
}

/* =========================================================
   SECTION HEADER / SUBTITLE
========================================================= */

.section-header{
  margin-top:90px;
  margin-left:104px;
  margin-bottom:18px;
  max-width:60ch;
}

.container-fluid .container h1.section-title{
  font-family:var(--sans);
  font-size:20px;
  letter-spacing:.05em;
  margin-bottom:4px;
  margin-left:-1px;
  color:var(--accent);
}

.container-fluid .container p.section-subtitle{
  font-family:var(--sans);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(152,32,104,.58);
  margin:0;
  padding-left:0;
}

/* =========================================================
   PLACEHOLDERS
========================================================= */

::-webkit-input-placeholder{ color:#888; }
:-moz-placeholder{ color:#888; }
::-moz-placeholder{ color:#888; }
:-ms-input-placeholder{ color:#888; }

/* =========================================================
   MEDIA SCROLLER
========================================================= */


.media-scroller-wrap{
  position:relative;
  overflow:visible;
  padding-bottom:20px;
}

.media-scroller-wrap::before,
.media-scroller-wrap::after{
  content:"";
  position:absolute;
  top:0;
  width:120px;
  height:702px;
  pointer-events:none;
  z-index:2;
  transition:opacity .25s ease;
}

.media-scroller-wrap::before{
  left:0;
  background:linear-gradient(
    to right,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,.92) 30%,
    rgba(255,255,255,0) 100%
  );
}

.media-scroller-wrap::after{
  right:0;
  background:linear-gradient(
    to left,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,.92) 30%,
    rgba(255,255,255,0) 100%
  );
}

.media-scroller{
  overflow-x:auto;
  overflow-y:visible;
  overscroll-behavior-inline:contain;
  display:grid;
  grid-auto-flow:column;
  scroll-behavior:smooth;
  scroll-snap-type:x mandatory;
  scroll-snap-stop:always;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  align-items:start;
  padding-bottom:40px;
}

.media-scroller::-webkit-scrollbar{
  display:none;
}

/* =========================================================
   MEDIA ELEMENT
========================================================= */


.media-element{
  flex:0 0 auto;
  display:grid;
  grid-template-rows:min-content;
  justify-items:start;
  scroll-snap-align:center;
  scroll-snap-stop:always;
  margin-right:60px;
  padding-bottom:18px;
  position:relative;
  transition:transform .42s cubic-bezier(.22,.61,.36,1);
}

.media-element.active{
  z-index:2;
  transform:translateY(-2px);
}

.media-element img{
  height:702px;
  width:auto;
  display:block;
  cursor:zoom-in;
  transition:
    opacity .42s cubic-bezier(.22,.61,.36,1),
    filter .42s cubic-bezier(.22,.61,.36,1),
    transform .42s cubic-bezier(.22,.61,.36,1),
    outline-color .42s cubic-bezier(.22,.61,.36,1);
  opacity:.42;
  filter:saturate(.92);
  transform:none;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  outline:1px solid transparent;
  outline-offset:0;
}

.media-element.active img{
  opacity:1;
  filter:saturate(1);
  transform:none;
  outline:1px solid rgba(17,17,17,.06);
}

/* =========================================================
   VIDEO
========================================================= */

.media-element.video-element{
  flex:0 0 auto;
  width:min(1248px, calc(100vw - 220px));
}

.bee-video-wrap{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  background:#000;
  overflow:hidden;
  z-index:3;
  border-radius:2px;
}

.bee-video{
  display:block;
  width:100%;
  height:100%;
  max-width:100%;
  object-fit:contain;
  background:#000;
  cursor:pointer;
  opacity:.82;
  filter:saturate(.98);
  transition:
    opacity .35s ease,
    filter .35s ease,
    outline-color .35s ease;
  outline:1px solid transparent;
}

.media-element.active .bee-video{
  opacity:1;
  filter:saturate(1);
  outline:1px solid rgba(17,17,17,.07);
}

.bee-video-toggle{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  background:rgba(0,0,0,.18);
  cursor:pointer;
  z-index:8;
  transition:
    opacity .25s ease,
    background .25s ease,
    transform .25s ease;
}

.bee-video-toggle:hover{
  background:rgba(0,0,0,.28);
}

.bee-video-icon{
  width:68px;
  height:68px;
  border-radius:50%;
  background:rgba(0,0,0,.55);
  position:relative;
}

.bee-video-play::before{
  content:"";
  position:absolute;
  top:50%;
  left:54%;
  transform:translate(-50%, -50%);
  width:0;
  height:0;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
  border-left:18px solid #fff;
}

.bee-video-pause::before,
.bee-video-pause::after{
  content:"";
  position:absolute;
  top:50%;
  width:7px;
  height:22px;
  background:#fff;
  transform:translateY(-50%);
}

.bee-video-pause::before{
  left:22px;
}

.bee-video-pause::after{
  right:22px;
}



/* =========================================================
   CAPTIONS — MASTER SYSTEM
========================================================= */

.title,
.art-actions{
  position:relative;
  z-index:6;
}

.media-element .title,
.media-element .print-price{
  padding-left:0;
  margin-bottom:0;
  font-family:var(--sans);
  color:#888888;
}

.media-element .title{
  position:relative;
  display:block;
  justify-self:end;
  width:240px;
  margin-top:12px;
  margin-right:28px;
  text-align:right;
  line-height:1.35;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.print-price{
  position:relative;
  z-index:6;
  justify-self:end;
  width:max-content;
  max-width:none;
  margin-top:4px;
  margin-right:28px;
  text-align:right;
  font-size:12px;
  letter-spacing:.04em;
}

.art-actions{
  display:flex;
  gap:12px;
  padding-top:6px;
  padding-left:0;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
  opacity:1;
  transform:none;
  transition:none;
  pointer-events:auto;
  margin-right:28px;
}

.media-element .art-actions{
  opacity:0;
  transform:translateY(6px);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}

.media-element:hover .art-actions{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.media-element.video-element .title{
  display:block;
  width:100%;
  margin-top:12px;
  margin-right:0;
  text-align:center;
  justify-self:stretch;
  white-space:normal;
  overflow:visible;
  text-overflow:clip;
}

.media-element.video-element .art-actions{
  margin-right:0;
  justify-content:center;
}

/* =========================================================
   GALLERY ARROWS
========================================================= */

.selectedworks-page .gallery-nav,
.beesides-page .gallery-nav,
.prints-page .gallery-nav,
.offerings-page .gallery-nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:18px;
  pointer-events:auto;
  position:relative;
  height:auto;
  z-index:20;
  padding:0 28px;
}

.arrow{
  position:relative;
  top:auto;
  transform:none;
  cursor:pointer;
  color:rgba(17,17,17,.45);
  transition:color .25s ease, transform .25s ease, opacity .25s ease;
  z-index:20;
  pointer-events:auto;
}

.arrow:hover{
  color:var(--accent);
  transform:scale(1.03);
}

/* =========================================================
   LIGHTBOX
========================================================= */

body.lightbox-open{
  overflow:hidden;
  overscroll-behavior-x:none;
}

.lightbox{
  overscroll-behavior-x:none;
}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(10,10,10,.94);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:
    opacity .36s cubic-bezier(.22,.61,.36,1),
    visibility .36s cubic-bezier(.22,.61,.36,1);
  z-index:9999;
  padding:40px 90px;
}

.lightbox.is-open{
  opacity:1;
  visibility:visible;
}

.lightbox-content{
  max-width:100%;
  max-height:100%;
  text-align:right;
}

.lightbox-image{
  max-width:100%;
  max-height:80vh;
  width:auto;
  height:auto;
  display:block;
  margin:0 auto;
  animation:lightboxFade .42s cubic-bezier(.22,.61,.36,1);
}

@keyframes lightboxFade{
  from{
    opacity:0;
    transform:scale(.992);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

.lightbox-caption,
.lightbox-price{
  padding-left:0;
  color:#888888;
  font-family:var(--sans);
  font-size:12px;
  text-align:right;
  white-space:nowrap;
}

.lightbox-caption{
  margin-top:14px;
  letter-spacing:.02em;
}

.lightbox-price{
  margin-top:6px;
  letter-spacing:.04em;
}

.lightbox-close{
  position:absolute;
  top:18px;
  right:24px;
  background:none;
  border:none;
  color:#f2f2f2;
  font-size:36px;
  line-height:1;
  cursor:pointer;
  opacity:.85;
  transition:
    opacity .28s cubic-bezier(.22,.61,.36,1),
    transform .28s cubic-bezier(.22,.61,.36,1);
}

.lightbox-close:hover{
  opacity:1;
  transform:scale(1.04);
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:none;
  border:none;
  color:#f2f2f2;
  cursor:pointer;
  opacity:.85;
  transition:
    opacity .28s cubic-bezier(.22,.61,.36,1),
    transform .28s cubic-bezier(.22,.61,.36,1);
  padding:12px;
}

.lightbox-arrow:hover{
  opacity:1;
  transform:translateY(-50%) scale(1.04);
}

.lightbox-prev{ left:22px; }
.lightbox-next{ right:22px; }

.lightbox-actions{
  margin-top:14px;
  display:flex;
  justify-content:flex-end;
  gap:12px;
}

.lightbox-actions .art-button{
  border-color:#f2f2f2;
  color:#f2f2f2;
}

.lightbox-actions .art-button:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#ffffff;
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.about-cards{
  margin-top:0;
  margin-bottom:56px;
}

.about-cards .card{
  border:none;
  background:transparent;
  text-align:center;
  transition:transform .35s ease, box-shadow .35s ease;
}

.about-cards .card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 35px rgba(17,17,17,.15);
}

.about-cards .card-body{
  padding-top:14px;
}

.about-cards .btn{
  background:none;
  border:1px solid rgba(17,17,17,.7);
  color:rgba(17,17,17,.8);
  font-size:11px;
  letter-spacing:.08em;
  padding:6px 18px;
  text-transform:uppercase;
  transition:all .25s ease;
}

.about-cards .btn:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#ffffff;
}

.about-cards .btn:focus,
.about-cards .btn:active{
  outline:none;
  box-shadow:none;
}

.about-cards img{
  transition:transform .35s cubic-bezier(.16,.84,.44,1);
}

.about-cards .card:hover img{
  transform:scale(1.02);
}

.about-text{
  max-width:700px;
  margin-top:100px;
  margin-left:104px;
  margin-right:auto;
  padding-right:12px;
}

.about-text::before{
  content:"";
  display:block;
  width:40px;
  height:1px;
  background:var(--line-soft);
  margin-bottom:40px;
  margin-left:2px;
}

.about-intro{
  font-family:'Boxen Bold', Georgia, "Times New Roman", serif !important;
  font-weight:700 !important;
  font-size:30px;
  letter-spacing:.01em;
  line-height:1.05;
  margin:0 0 46px;
  margin-left:-1px;
  padding-left:0;
  position:relative;
  transform:translateY(1px);
  color:rgba(17,17,17,.4);
}

.about-intro::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:28px;
  height:1px;
  background:rgba(17,17,17,.14);
}

.about-subhead{
  font-family:var(--sans);
  font-size:10px;
  font-weight:400;
  letter-spacing:.18em;
  text-transform:uppercase;
  line-height:1.3;
  margin:0 0 20px;
  color:rgba(17,17,17,.6);
}

.bio-head{
  margin-top:80px;
}

.about-statement{ max-width:34rem; }
.about-bio{ max-width:36rem; }

.about-statement p,
.about-bio p{
  padding-left:0;
  font-family:var(--sans);
  font-size:14px;
  letter-spacing:.01em;
  color:var(--ink);
}

.about-statement p{
  margin-bottom:24px;
  line-height:2.05;
  max-width:34rem;
}

.about-bio p{
  margin-bottom:14px;
  line-height:1.75;
  max-width:36rem;
}

.about-statement p:first-child{
  margin-top:6px;
}

.about-statement p:last-child,
.about-bio p:last-child{
  margin-bottom:0;
}

.about-hero{
  margin-top:20px;
  margin-bottom:44px;
}

/* =========================================================
   GENERIC BUTTONS
========================================================= */

body.hide-inquire .inquire-button{
  display:none;
}

body.hide-acquire .buy-button{
  display:none;
}

.art-button{
  display:inline-block;
  padding:5px 12px;
  border:1px solid rgba(17,17,17,.45);
  background:transparent;
  color:rgba(17,17,17,.58);
  font-family:var(--sans);
  font-size:9px;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-decoration:none;
  transition:all .25s ease;
}

.art-button:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#ffffff;
  text-decoration:none;
}

.buy-button,
.venmo-button{
  border-color:var(--ink);
}

.inquire-button{
  border-color:rgba(17,17,17,.5);
  color:rgba(17,17,17,.6);
}

.inquire-button:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}

.btn-primary{
  background:none !important;
  border:1px solid rgba(17,17,17,.7) !important;
  color:rgba(17,17,17,.8) !important;
}

.btn-primary:hover{
  background:var(--accent) !important;
  border-color:var(--accent) !important;
  color:#fff !important;
}

.btn-primary:focus,
.btn-primary:active{
  outline:none !important;
  box-shadow:none !important;
}

/* =========================================================
   PAGE-SPECIFIC SCROLLER TUNING
========================================================= */

.prints-page .media-scroller{
  padding-left:56px;
  padding-right:56px;
  box-sizing:border-box;
  scroll-padding-left:56px;
  scroll-padding-right:56px;
}

.beesides-page .media-scroller,
.offerings-page .media-scroller{
  padding-left:56px;
  padding-right:56px;
  box-sizing:border-box;
}

.prints-page .media-element{
  position:relative;
  display:grid;
  grid-template-rows:min-content;
  justify-items:start;
  scroll-snap-align:center;
  scroll-snap-stop:always;
  width:auto;
  margin-right:60px;
  padding-bottom:18px;
  vertical-align:top;
}

.prints-page .media-element:last-child{
  margin-right:60px;
}

.prints-page .media-element .title{
  position:relative;
  right:auto;
  top:auto;
  margin-top:14px;
  margin-right:28px;
  margin-bottom:0;
  width:240px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  text-align:right;
}

.prints-page .media-element .art-actions{
  position:relative;
  right:auto;
  top:auto;
  margin-top:8px;
  margin-right:28px;
  padding-top:0;
  justify-content:flex-end;
}

.offerings-page .media-element{
  margin-right:90px;
}

.offerings-page .title,
.beesides-page .title{
  letter-spacing:.03em;
}

.offerings-page .art-actions,
.beesides-page .art-actions{
  padding-top:12px;
}

.offerings-page .art-button{
  padding:7px 15px;
  font-size:10px;
  letter-spacing:.1em;
  opacity:.8;
}

.offerings-page .art-button:hover,
.beesides-page .art-button:hover{
  opacity:1;
}

.offerings-page .media-element.active{
  transform:translateY(-1px);
}

.offerings-page .media-element img{
  opacity:.48;
  filter:saturate(.88);
}

.offerings-page .media-element.active img{
  opacity:1;
  filter:saturate(1);
  outline:1px solid rgba(17,17,17,.08);
}

.beesides-page .art-button{
  opacity:.75;
}

.beesides-page .media-element img{
  opacity:.45;
  filter:saturate(.9);
}

.beesides-page .media-element.active img{
  opacity:1;
  filter:saturate(1);
  outline:1px solid rgba(17,17,17,.07);
}

/* =========================================================
   SELECTED WORKS
========================================================= */

.selectedworks-page .media-scroller-wrap{
  position:relative;
  overflow:visible;
  padding:0 28px 40px;
}

.selectedworks-page .media-scroller-wrap::before,
.selectedworks-page .media-scroller-wrap::after{
  height:702px;
}

.selectedworks-page .media-scroller{
  gap:0;
  align-items:start;
  padding-bottom:24px;
}

.selectedworks-page .media-element{
  position:relative;
  display:inline-block;
  width:max-content;
  margin-right:60px;
  padding-bottom:64px;
  vertical-align:top;
  scroll-snap-align:center;
  scroll-snap-stop:always;
  transition:transform .35s cubic-bezier(.16,.84,.44,1);
}

.selectedworks-page .media-element:last-child{
  margin-right:0;
}

.selectedworks-page .media-element.active{
  z-index:2;
  transform:translateY(-2px);
}

.selectedworks-page .media-element img{
  height:702px;
  width:auto;
  max-width:none;
  display:block;
  object-fit:contain;
}

.selectedworks-page .media-element .title{
  position:absolute;
  right:28px;
  bottom:28px;
  width:max-content;
  max-width:none;
  margin:0;
  padding:0;
  text-align:right;
  white-space:nowrap;
  overflow:visible;
  line-height:1.35;
  color:#888888;
}

.selectedworks-page .media-element .art-actions{
  position:absolute;
  left:28px;
  bottom:0;
  margin:0;
  padding:0;
  width:max-content;
  justify-content:flex-start;
  opacity:0;
  transform:translateY(6px);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
  z-index:8;
}

.selectedworks-page .media-element:hover .art-actions{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.selectedworks-page .lightbox-arrow{
  display:flex;
  align-items:center;
  justify-content:center;
}

.selectedworks-page .lightbox-prev,
.selectedworks-page .lightbox-next{
  display:none;
}

.lightbox.is-open .lightbox-prev,
.lightbox.is-open .lightbox-next{
  display:flex;
}

.selectedworks-page .lightbox-image{
  max-width:min(92vw, 1400px);
  max-height:80vh;
}

.selectedworks-page .lightbox-caption{
  white-space:nowrap;
  max-width:none;
  margin-left:0;
  margin-right:0;
  text-align:right;
}

/* =========================================================
   SITE LOGO
========================================================= */
.site-logo{
  height:40px;
  width:auto;
  display:block;
}

/* =========================================================
   CV PAGE
========================================================= */

.cv-wrap{
  font-family:var(--sans);
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  max-width:62ch;
  margin-top:96px;
  margin-left:104px;
  margin-right:auto;
  color:var(--ink);
}

.cv-wrap h1{
  font-family:var(--serif);
  font-size:21px;
  font-weight:400;
  letter-spacing:.03em;
  margin-bottom:14px;
  margin-left:-1px;
  color:var(--ink);
}

.cv-wrap p{
  padding-left:0;
  margin-bottom:22px;
  line-height:1.9;
  font-size:13px;
  letter-spacing:.01em;
  max-width:58ch;
  color:var(--ink);
}

.cv-section{
  margin-top:56px;
  position:relative;
  padding-top:18px;
}

.cv-section::before{
  content:"";
  display:block;
  width:40px;
  height:1px;
  background:var(--line-soft);
  position:absolute;
  top:0;
  left:2px;
}

.cv-section h2{
  font-family:var(--serif);
  font-size:12px;
  font-weight:400;
  letter-spacing:.08em;
  text-transform:none;
  margin-bottom:18px;
  margin-left:-1px;
  color:var(--ink);
}

.cv-entry{
  margin-bottom:10px;
  font-size:13px;
  line-height:1.8;
  font-weight:300;
  letter-spacing:.01em;
  color:var(--ink);
}

.cv-year{
  display:inline-block;
  width:54px;
  opacity:.42;
  font-weight:300;
  color:var(--ink);
}

.cv-download{
  margin-top:24px;
  display:inline-block;
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-decoration:none;
  border-bottom:1px solid rgba(17,17,17,.55);
  padding-bottom:3px;
  color:var(--ink);
}

.cv-download:hover{
  color:var(--accent);
  border-color:var(--accent);
}

/* =========================================================
   ABOUT FOOTER + ENTRY
========================================================= */

.about-footer{
  margin-top:80px;
  padding-bottom:20px;
}

.footer-line{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:nowrap;
}

.copyright-wrap{
  display:flex;
  align-items:center;
  gap:8px;
  color:rgba(17,17,17,.35);
  font-family:var(--sans);
  font-size:9px;
  letter-spacing:.08em;
  text-transform:uppercase;
  flex:0 0 auto;
}

.copyright-text{
  line-height:1;
  white-space:nowrap;
}

.footer-symbol{
  width:16px;
  height:20px;
  flex:0 0 auto;
}

.entry-zone{
  position:relative;
  width:220px;
  height:32px;
  flex:0 0 220px;
  margin-left:auto;
}

.key-object{
  position:absolute;
  left:0;
  top:6px;
  width:78px;
  height:24px;
  color:var(--accent);
  cursor:grab;
  user-select:none;
  z-index:10;
  opacity:1;
  transform-origin:18% 50%;
  transition:
    transform .18s cubic-bezier(.2,.8,.3,1),
    left .18s cubic-bezier(.2,.8,.3,1),
    top .18s cubic-bezier(.2,.8,.3,1);
}

.key-object:hover:not(.is-dragging):not(.is-magnetized){
  transform:translateX(2px) translateY(-1px);
}

.key-object:active,
.key-object.is-dragging{
  cursor:grabbing;
}

.key-object.is-dragging{
  color:rgba(17,17,17,.78);
  transition:none;
}

.key-object.is-magnetized{
  transform:translateX(6px) translateY(-1px) rotate(1.5deg);
}

.key-svg{
  display:block;
  width:100%;
  height:100%;
  overflow:visible;
}

.keyhole{
  position:absolute;
  right:24px;
  top:0;
  width:20px;
  height:28px;
  cursor:pointer;
  opacity:1;
  transition:transform .2s ease, filter .2s ease;
}

.keyhole-top{
  position:absolute;
  left:50%;
  top:0;
  width:13px;
  height:13px;
  margin-left:-6.5px;
  background:#7c5871;
  border-radius:50%;
  transition:background .2s ease;
}

.keyhole-stem{
  position:absolute;
  left:50%;
  top:10px;
  width:5px;
  height:15px;
  margin-left:-2.5px;
  background:#7c5871;
  border-bottom-left-radius:3px;
  border-bottom-right-radius:3px;
  transition:background .2s ease;
}

.keyhole:hover .keyhole-top,
.keyhole:hover .keyhole-stem,
.keyhole.is-active .keyhole-top,
.keyhole.is-active .keyhole-stem{
  background:#111111;
}

.keyhole.is-active{
  transform:scale(1.18);
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.12));
}

.keyhole.is-magnetized{
  transform:scale(1.28);
  filter:drop-shadow(0 4px 10px rgba(0,0,0,.18));
}

.entry-zone::after{
  content:"back room";
  position:absolute;
  left:52px;
  bottom:-4px;
  font-size:.52rem;
  letter-spacing:.08em;
  text-transform:lowercase;
  opacity:.4;
}

/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-signup{
  margin-top:100px;
  margin-left:104px;
  max-width:700px;
  padding-right:12px;
}

.newsletter-signup hr{
  border:none;
  height:1px;
  width:40px;
  background:var(--line-soft);
  margin-bottom:34px;
  margin-left:2px;
}

.newsletter-signup .newsletter-text{
  padding-left:0;
  margin-bottom:18px;
  line-height:1.85;
  font-size:14px;
  letter-spacing:.01em;
  color:var(--ink-soft);
  max-width:36rem;
}

.newsletter-signup form{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.newsletter-signup input[type="email"]{
  border:none;
  border-bottom:1px solid rgba(17,17,17,.35);
  background:transparent;
  padding:6px 2px;
  font-family:var(--sans);
  font-size:12px;
  letter-spacing:.04em;
  color:var(--ink);
  min-width:220px;
  transition:
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease,
    opacity .25s ease;
  transform:translateY(0);
  opacity:.88;
}

.newsletter-signup input[type="email"]::placeholder{
  color:rgba(17,17,17,.45);
  transition:color .25s ease, opacity .25s ease;
  opacity:1;
}

.newsletter-signup input[type="email"]:hover{
  border-bottom:1px solid rgba(17,17,17,.55);
  opacity:1;
}

.newsletter-signup input[type="email"]:focus{
  outline:none;
  border-bottom:1px solid var(--accent);
  transform:translateY(-1px);
  opacity:1;
  box-shadow:0 1px 0 rgba(152,32,104,.18);
}

.newsletter-signup input[type="email"]:focus::placeholder{
  color:rgba(152,32,104,.55);
}

.newsletter-signup button{
  background:none;
  border:1px solid rgba(17,17,17,.7);
  color:rgba(17,17,17,.8);
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:6px 14px;
  font-family:var(--sans);
  transition:all .25s ease;
}

.newsletter-signup button:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#ffffff;
}

.newsletter-signup button:focus,
.newsletter-signup button:active{
  outline:none;
  box-shadow:none;
}

/* =========================================================
   THANK YOU PAGE
========================================================= */

.thank-you-wrap{
  min-height:58vh;
  display:flex;
  align-items:center;
}

.thank-you-inner{
  max-width:60ch;
  margin-left:104px;
  margin-right:auto;
}

.thank-you-line{
  width:40px;
  height:1px;
  background:var(--line-soft);
  margin-bottom:28px;
  margin-left:2px;
}

.thank-you-title{
  font-family:var(--sans);
  font-size:22px;
  letter-spacing:.05em;
  margin-bottom:12px;
  margin-left:-1px;
  color:var(--ink);
}

.thank-you-text{
  padding-left:0 !important;
  margin-bottom:14px;
  line-height:1.85;
  font-size:14px;
  letter-spacing:.01em;
  max-width:48ch;
  color:var(--ink-soft);
}

.thank-you-note{
  padding-left:0 !important;
  margin-bottom:26px;
  line-height:1.85;
  font-size:12px;
  letter-spacing:.04em;
  color:rgba(17,17,17,.48);
}

.thank-you-fade{
  opacity:0;
  transform:translateY(8px);
  animation:thankYouFade 1s cubic-bezier(.16,.84,.44,1) forwards;
  animation-delay:.18s;
}

@keyframes thankYouFade{
  from{
    opacity:0;
    transform:translateY(8px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* =========================================================
   BACK ROOM PAGE
========================================================= */

body.backroom{
  margin:0;
  font-family:var(--serif);
  color:var(--ink);
  background:linear-gradient(
    to bottom,
    var(--backroom-bg-top) 0%,
    var(--backroom-bg-bottom) 100%
  );
  line-height:1.45;
}

.backroom-home-link{
  position:fixed;
  top:20px;
  left:24px;
  z-index:100;
}

.home-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:rgba(17,17,17,.6);
  transition:all .25s ease;
}

.home-icon:hover{
  color:var(--accent);
  transform:translateY(-1px);
}

.page-wrap{
  width:min(1320px, calc(100% - 48px));
  margin:0 auto;
  padding:48px 0 72px;
}

.backroom-header{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:end;
  margin-bottom:48px;
  border-bottom:1px solid rgba(0,0,0,.14);
  padding-bottom:28px;
}

.backroom-title{
  font-family:var(--script);
  font-size:clamp(1.8rem, 2.4vw, 2.6rem);
  letter-spacing:.02em;
  color:var(--accent);
  margin:0;
}

.backroom-intro{
  margin-top:18px;
  max-width:34ch;
  font-size:.9rem;
  line-height:1.6;
  color:rgba(17,17,17,.45);
  letter-spacing:.02em;
}

.shop-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
}

.shop-toolbar div:first-child,
.shop-toolbar div:last-child{
  font-family:var(--sans);
  font-size:.72rem;
}

.shop-toolbar div:first-child{
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(17,17,17,.42);
}

.shop-toolbar div:last-child{
  letter-spacing:.06em;
  color:rgba(17,17,17,.38);
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

.product-grid:hover .product-card{
  opacity:.82;
  transition:opacity .35s ease;
}

.product-grid:hover .product-card:hover{
  opacity:1;
}

.product-card{
  background:rgba(255,255,255,.42);
  border:1px solid rgba(0,0,0,.06);
  transition:
    transform .45s cubic-bezier(.16,.84,.44,1),
    box-shadow .45s ease,
    background .35s ease,
    border-color .35s ease,
    opacity .35s ease;
}

.product-card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.05);
  background:rgba(255,255,255,.6);
  border-color:rgba(0,0,0,.08);
}

.product-thumb-wrap{
  aspect-ratio:4/5;
  overflow:hidden;
  background:var(--backroom-panel);
}

.product-thumb{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.78;
  filter:saturate(.94);
  transition:
    transform .6s ease,
    opacity .4s ease,
    filter .4s ease;
}

.product-card:hover .product-thumb{
  transform:scale(1.01);
  opacity:1;
  filter:saturate(1);
}

.product-info{
  padding:18px 18px 20px;
}

.product-meta{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  margin-bottom:6px;
}

.product-title{
  margin:0;
  font-size:.82rem;
  letter-spacing:.03em;
  text-transform:none;
  font-family:var(--sans);
  font-weight:400;
  color:rgba(17,17,17,.72);
}

.product-price{
  font-size:.78rem;
  letter-spacing:.04em;
  font-family:var(--sans);
  color:rgba(17,17,17,.42);
}

.product-desc{
  font-size:.85rem;
  opacity:.6;
  line-height:1.65;
  color:rgba(17,17,17,.5);
  margin-bottom:18px;
  font-family:var(--sans);
}

.product-actions{
  display:flex;
  gap:12px;
  align-items:center;
  opacity:.78;
  transform:translateY(4px);
  transition:opacity .3s ease, transform .3s ease;
}

.product-card:hover .product-actions{
  opacity:1;
  transform:translateY(0);
}

.product-actions .btn{
  padding:5px 10px;
  border:1px solid rgba(17,17,17,.28);
  font-size:.68rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  background:transparent;
  color:rgba(17,17,17,.55);
  transition:all .2s ease;
  font-family:var(--sans);
}

.product-actions .btn:hover{
  border-color:var(--accent);
  color:var(--accent);
  background:transparent;
}

.product-actions .btn-secondary{
  border:none;
  padding:4px 2px;
  font-size:.68rem;
  letter-spacing:.08em;
  text-decoration:underline;
  color:rgba(17,17,17,.42);
  transition:color .2s ease;
  font-family:var(--sans);
}

.product-actions .btn-secondary:hover{
  color:var(--accent);
  background:transparent;
}

.sold-out{
  opacity:.55;
}

.sold-out .product-actions .btn{
  border-color:rgba(17,17,17,.2);
  color:rgba(17,17,17,.35);
  pointer-events:none;
}

/* =========================================================
   OFFERINGS (COMING SOON)
========================================================= */

.offerings-coming-soon{
  width:100%;
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px 100px;
}

.offerings-coming-soon-inner{
  max-width:640px;
  width:100%;
  text-align:center;
}

.offerings-note{
  margin:0 0 16px;
  font-size:1rem;
  line-height:1.7;
  opacity:0.85;
}

.offerings-subnote{
  margin:0;
  font-size:0.75rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  opacity:0.45;
}

/* =========================================================
   PRINTS — IMAGE EDGE FADES
========================================================= */

.prints-page .media-element:not(.video-element)::before,
.prints-page .media-element:not(.video-element)::after{
  content:"";
  position:absolute;
  top:0;
  height:702px;
  width:70px;
  pointer-events:none;
  z-index:7;
  opacity:1;
}

.prints-page .media-element:not(.video-element)::before{
  left:0;
  background:linear-gradient(
    to right,
    rgba(255,255,255,.86) 0%,
    rgba(255,255,255,.46) 38%,
    rgba(255,255,255,0) 100%
  );
}

.prints-page .media-element:not(.video-element)::after{
  right:0;
  background:linear-gradient(
    to left,
    rgba(255,255,255,.86) 0%,
    rgba(255,255,255,.46) 38%,
    rgba(255,255,255,0) 100%
  );
}

/* =========================================================
   BEE SIDES — IMAGE EDGE FADES
========================================================= */

.beesides-page .media-element:not(.video-element)::before,
.beesides-page .media-element:not(.video-element)::after{
  content:"";
  position:absolute;
  top:0;
  height:702px;
  width:70px;
  pointer-events:none;
  z-index:5;
  opacity:1;
}

.beesides-page .media-element:not(.video-element)::before{
  left:0;
  background:linear-gradient(
    to right,
    rgba(255,255,255,.92) 0%,
    rgba(255,255,255,.55) 38%,
    rgba(255,255,255,0) 100%
  );
}

.beesides-page .media-element:not(.video-element)::after{
  right:0;
  background:linear-gradient(
    to left,
    rgba(255,255,255,.78) 0%,
    rgba(255,255,255,.42) 38%,
    rgba(255,255,255,0) 100%
  );
}

/* =========================================================
   BEE SIDES — FULL CINEMATIC PLAYBACK FIX
========================================================= */

.beesides-page .media-scroller-wrap.video-playing::before,
.beesides-page .media-scroller-wrap.video-playing::after{
  opacity:0;
}



/* =========================================================
   LIGHTBOX — NAV FIX + TONE
========================================================= */

.lightbox-prev,
.lightbox-next{
  align-items:center;
  justify-content:center;
  opacity:.6;
}

.lightbox-prev:hover,
.lightbox-next:hover{
  opacity:1;
}

/* =========================================================
   LIGHTBOX — ARROW FOCUS FIX
========================================================= */

.lightbox-prev:focus,
.lightbox-next:focus{
  outline:none;
  box-shadow:none;
}

.lightbox-prev:focus-visible,
.lightbox-next:focus-visible{
  opacity:1;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (hover:none){
  .art-actions{
    opacity:1;
    transform:none;
    pointer-events:auto;
  }
}

@media (max-width:991.98px){

  .selectedworks-page .gallery-nav,
  .beesides-page .gallery-nav,
  .offerings-page .gallery-nav,
  .prints-page .gallery-nav{
    padding:0 28px;
  }

  .container{
    max-width:100%;
    padding-left:20px;
    padding-right:20px;
  }

  .section-header,
  .about-text,
  .newsletter-signup,
  .cv-wrap,
  .thank-you-inner{
    margin-left:0;
    margin-right:0;
    padding-right:0;
    max-width:100%;
  }

  .about-hero{
    margin-top:16px;
    margin-bottom:32px;
  }

  .about-cards{
    margin-bottom:40px;
  }

  .about-text{
    margin-top:72px;
  }

  .about-text::before{
    margin-bottom:30px;
  }

  .about-intro{
    font-size:27px;
    margin-bottom:36px;
    line-height:1.06;
  }

  .about-subhead{
    font-size:10px;
    letter-spacing:.16em;
    margin-bottom:16px;
  }

  .bio-head{
    margin-top:64px;
  }

  .about-statement,
  .about-bio,
  .newsletter-signup .newsletter-text{
    max-width:100%;
  }

  .about-statement p{
    font-size:14px;
    line-height:1.95;
    margin-bottom:22px;
    max-width:100%;
  }

  .about-bio p{
    font-size:14px;
    line-height:1.72;
    margin-bottom:14px;
    max-width:100%;
  }

  .newsletter-signup{
    margin-top:84px;
  }

  .newsletter-signup hr{
    margin-bottom:30px;
  }

  .newsletter-signup form{
    gap:12px;
  }

  .newsletter-signup input[type="email"]{
    min-width:0;
    width:100%;
    max-width:420px;
  }

  .newsletter-signup button{
    padding:7px 14px;
  }

  .cv-wrap{
    margin-top:72px;
  }

  .cv-wrap h1{
    font-size:20px;
    margin-bottom:12px;
  }

  .cv-wrap p{
    font-size:13px;
    line-height:1.82;
    max-width:100%;
  }

  .cv-section{
    margin-top:44px;
  }

  .thank-you-wrap{
    min-height:50vh;
  }

  .thank-you-inner{
    max-width:100%;
  }

  .thank-you-title{
    font-size:24px;
  }

  .thank-you-text,
  .thank-you-note{
    max-width:100%;
  }

  .page-wrap{
    width:min(1320px, calc(100% - 40px));
    padding:48px 0 64px;
  }

  .backroom-header{
    grid-template-columns:1fr;
  }

  .selectedworks-page .media-scroller-wrap{
    padding:0 28px 34px;
  }

  /* =========================================================
     MOBILE GALLERY SYSTEM — UNIFIED
  ========================================================= */

  .beesides-page .media-scroller,
  .selectedworks-page .media-scroller,
  .prints-page .media-scroller,
  .offerings-page .media-scroller{
    gap:0;
    padding-left:20px;
    padding-right:20px;
    align-items:start;
  }

  .beesides-page .media-element,
  .selectedworks-page .media-element,
  .prints-page .media-element,
  .offerings-page .media-element{
    width:82vw !important;
    min-width:82vw !important;
    margin-right:16px !important;
    padding-bottom:14px;
    justify-items:center;
  }

  .beesides-page .media-element img,
  .selectedworks-page .media-element img,
  .offerings-page .media-element img{
    width:100% !important;
    height:auto !important;
    max-width:100% !important;
    max-height:none !important;
    object-fit:contain;
  }

  .beesides-page .media-element.video-element{
    width:82vw !important;
    min-width:82vw !important;
  }

  .beesides-page .bee-video-wrap{
    width:100% !important;
    aspect-ratio:16 / 9;
    background:#000;
    overflow:hidden;
  }

  .beesides-page .bee-video{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    background:#000;
    opacity:1 !important;
  }

  .beesides-page .bee-video-toggle{
    display:none !important;
    pointer-events:none !important;
    opacity:0 !important;
    visibility:hidden !important;
  }

  .beesides-page .title,
  .selectedworks-page .title,
  .prints-page .title,
  .offerings-page .title{
    width:100% !important;
    margin-top:12px;
    margin-right:0 !important;
    text-align:center !important;
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
  }

  .beesides-page .media-element .art-actions,
  .selectedworks-page .media-element .art-actions,
  .prints-page .media-element .art-actions,
  .offerings-page .media-element .art-actions{
    margin-right:0 !important;
    justify-content:center !important;
  }

  .beesides-page .media-scroller-wrap::before,
  .beesides-page .media-scroller-wrap::after,
  .selectedworks-page .media-scroller-wrap::before,
  .selectedworks-page .media-scroller-wrap::after,
  .prints-page .media-scroller-wrap::before,
  .prints-page .media-scroller-wrap::after,
  .offerings-page .media-scroller-wrap::before,
  .offerings-page .media-scroller-wrap::after{
    display:none !important;
  }
}

@media (max-width:767px){

  .entry-zone{
    width:200px;
    flex:0 0 200px;
  }

  .footer-line{
    gap:18px;
  }

  .product-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }
}

@media (max-width:575.98px){

  .selectedworks-page .gallery-nav,
  .beesides-page .gallery-nav,
  .offerings-page .gallery-nav,
  .prints-page .gallery-nav{
    padding:0 28px;
  }

  .navbar-nav.ml-auto .nav-item{
    width:100%;
  }

  .navbar-nav.ml-auto .nav-link{
    display:block;
    width:100%;
    margin-top:18px;
    margin-left:0;
    padding-left:0;
    padding-right:0;
    line-height:1.4;
  }

  .dropdown-menu{
    border:none;
    padding-top:8px;
    padding-bottom:8px;
    padding-left:0;
    margin-left:0;
  }

  .dropdown-item{
    padding:10px 0;
    line-height:1.4;
  }

  .about-text{
    margin-top:60px;
  }

  .about-text::before{
    margin-bottom:26px;
  }

  .about-intro{
    font-size:24px;
    margin-bottom:30px;
    line-height:1.04;
  }

  .about-subhead{
    font-size:9px;
    letter-spacing:.17em;
    margin-bottom:14px;
  }

  .about-statement{
    max-width:32rem;
  }

  .about-statement p{
    font-size:13px;
    line-height:1.9;
    margin-bottom:20px;
  }

  .about-bio p{
    font-size:13px;
    line-height:1.68;
    margin-bottom:12px;
  }

  .bio-head{
    margin-top:54px;
  }

  .about-cards .card-body{
    padding-top:10px;
  }

  .about-cards .btn{
    font-size:10px;
    padding:6px 14px;
  }

  .newsletter-signup{
    margin-top:72px;
  }

  .newsletter-signup .newsletter-text{
    font-size:13px;
    line-height:1.8;
  }

  .newsletter-signup input[type="email"]{
    font-size:12px;
    width:100%;
  }

  .newsletter-signup button{
    font-size:10px;
    width:auto;
  }

  .copyright-wrap{
    font-size:8px;
    letter-spacing:.07em;
    gap:6px;
    flex-wrap:nowrap;
    align-items:center;
  }

  .copyright-text{
    white-space:nowrap;
  }

  .site-logo{
    height:34px;
  }

  .cv-wrap{
    margin-top:60px;
  }

  .cv-wrap h1{
    font-size:18px;
  }

  .cv-wrap p,
  .cv-entry{
    font-size:12px;
    line-height:1.75;
  }

  .cv-year{
    width:46px;
  }

  .thank-you-title{
    font-size:22px;
  }

  .thank-you-text{
    font-size:13px;
    line-height:1.8;
  }

  .thank-you-note{
    font-size:11px;
    line-height:1.75;
  }

  .footer-line{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .entry-zone{
    width:200px;
    flex:0 0 auto;
    margin-top:0;
    margin-left:0;
  }

  .page-wrap{
    width:min(1320px, calc(100% - 32px));
    padding:56px 0 56px;
  }

  .product-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .beesides-page .media-element,
  .selectedworks-page .media-element,
  .prints-page .media-element,
  .offerings-page .media-element{
    width:88vw !important;
    min-width:88vw !important;
  }
}
/* =========================================================
   PRINTS — MOBILE HARD OVERRIDE
========================================================= */

@media (max-width: 991.98px) {

  .prints-page .media-scroller {
    gap: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    align-items: start !important;
  }

  .prints-page .media-element {
    width: 82vw !important;
    min-width: 82vw !important;
    margin-right: 16px !important;
    padding-bottom: 14px !important;
    display: grid !important;
    justify-items: center !important;
  }

  .prints-page .media-element img,
  .prints-page .media-element .lightbox-trigger {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 46vh !important;
    object-fit: contain !important;
  }

  .prints-page .media-element .title {
    width: 100% !important;
    margin-top: 12px !important;
    margin-right: 0 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  .prints-page .media-element .art-actions {
    margin-right: 0 !important;
    justify-content: center !important;
  }

  .prints-page .media-scroller-wrap::before,
  .prints-page .media-scroller-wrap::after,
  .prints-page .media-element::before,
  .prints-page .media-element::after {
    display: none !important;
  }
}

@media (max-width: 575.98px) {

  .prints-page .media-element {
    width: 88vw !important;
    min-width: 88vw !important;
  }

  .prints-page .media-element img,
  .prints-page .media-element .lightbox-trigger {
    max-height: 42vh !important;
  }
}

/* =========================================================
   SELECTED WORKS — MOBILE LIGHTBOX HARD FIX
========================================================= */

@media (max-width: 575.98px) {

  .selectedworks-page .lightbox{
    padding:16px 12px 22px !important;
    align-items:flex-start !important;
    justify-content:center !important;
    overflow-y:auto !important;
    -webkit-overflow-scrolling:touch !important;
  }

  .selectedworks-page .lightbox-content{
    width:100% !important;
    max-width:92vw !important;
    margin:0 auto !important;
    padding-top:22px !important;
    text-align:center !important;
  }

  .selectedworks-page .lightbox-image{
    display:block !important;
    width:auto !important;
    height:auto !important;
    max-width:100% !important;
    max-height:56vh !important;
    margin:0 auto !important;
  }

  .selectedworks-page .lightbox-caption{
    width:100% !important;
    max-width:100% !important;
    margin:10px auto 0 !important;
    padding:0 !important;
    text-align:center !important;
    white-space:normal !important;
    overflow:visible !important;
    text-overflow:clip !important;
    line-height:1.45 !important;
  }

  .selectedworks-page .lightbox-actions{
    justify-content:center !important;
    margin-top:10px !important;
  }

.selectedworks-page .lightbox-prev,
.selectedworks-page .lightbox-next{
  display:none;
}

.lightbox.is-open .lightbox-prev,
.lightbox.is-open .lightbox-next{
  display:flex;
}

  .selectedworks-page .lightbox-close{
    top:8px !important;
    right:12px !important;
  }
}
/* =========================================================
   SELECTED WORKS — MOBILE CARD STACK FIX
========================================================= */

@media (max-width: 575.98px){

  .selectedworks-page .media-scroller-wrap{
    padding:0 20px 10px !important;
  }

  .selectedworks-page .media-scroller{
    padding-bottom:8px !important;
    gap:0 !important;
    align-items:start !important;
  }

  .selectedworks-page .media-element{
    width:88vw !important;
    min-width:88vw !important;
    display:grid !important;
    justify-items:center !important;
    margin-right:16px !important;
    padding-bottom:18px !important;
  }

  .selectedworks-page .media-element img{
    width:100% !important;
    height:auto !important;
    max-width:100% !important;
    max-height:42vh !important;
    object-fit:contain !important;
  }

  .selectedworks-page .media-element .title{
    position:relative !important;
    right:auto !important;
    bottom:auto !important;
    left:auto !important;
    top:auto !important;
    width:100% !important;
    max-width:100% !important;
    margin:12px 0 0 0 !important;
    padding:0 !important;
    text-align:center !important;
    white-space:normal !important;
    overflow:visible !important;
    text-overflow:clip !important;
  }

  .selectedworks-page .media-element .art-actions{
    position:relative !important;
    left:auto !important;
    right:auto !important;
    bottom:auto !important;
    top:auto !important;
    width:100% !important;
    margin:8px 0 0 0 !important;
    padding:0 !important;
    justify-content:center !important;
    opacity:1 !important;
    transform:none !important;
    pointer-events:auto !important;
  }

  .selectedworks-page .gallery-nav{
    margin-top:6px !important;
    padding:0 20px !important;
  }

  .selectedworks-page .media-scroller-wrap::before,
  .selectedworks-page .media-scroller-wrap::after{
    display:none !important;
  }
}

/* =========================================================
   MOBILE VIDEO FIX
========================================================= */

@media (max-width: 991.98px), (hover: none) and (pointer: coarse) {
  .bee-video-toggle {
    display: none !important;
  }
}
@media (hover:hover) and (pointer:fine) {

  /* default state: big centered play button */
  .beesides-page .bee-video-wrap:not(.is-playing) .bee-video-toggle {
    position: absolute !important;
    inset: 0 !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    background: rgba(0,0,0,.18) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .beesides-page .bee-video-wrap:not(.is-playing) .bee-video-icon {
    width: 68px !important;
    height: 68px !important;
    background: rgba(0,0,0,.55) !important;
  }

  .beesides-page .bee-video-wrap:not(.is-playing) .bee-video-play::before {
    border-top: 12px solid transparent !important;
    border-bottom: 12px solid transparent !important;
    border-left: 18px solid #fff !important;
  }

  .beesides-page .bee-video-wrap:not(.is-playing) .bee-video-pause::before,
  .beesides-page .bee-video-wrap:not(.is-playing) .bee-video-pause::after {
    width: 7px !important;
    height: 22px !important;
  }

  .beesides-page .bee-video-wrap:not(.is-playing) .bee-video-pause::before {
    left: 22px !important;
  }

  .beesides-page .bee-video-wrap:not(.is-playing) .bee-video-pause::after {
    right: 22px !important;
  }

  /* playing state: centered, hidden until hover/mouse movement */
  .beesides-page .bee-video-wrap.is-playing .bee-video-toggle {
    position: absolute !important;
    inset: 0 !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    background: transparent !important;
    opacity: 0 !important;
    pointer-events: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .beesides-page .bee-video-wrap.is-playing.show-hover-control .bee-video-toggle {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .beesides-page .bee-video-wrap.is-playing .bee-video-icon {
    width: 68px !important;
    height: 68px !important;
    border-radius: 50% !important;
    background: rgba(0,0,0,.55) !important;
  }

  .beesides-page .bee-video-wrap.is-playing .bee-video-pause::before,
  .beesides-page .bee-video-wrap.is-playing .bee-video-pause::after {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    width: 7px !important;
    height: 22px !important;
    background: #fff !important;
    transform: translateY(-50%) !important;
  }

  .beesides-page .bee-video-wrap.is-playing .bee-video-pause::before {
    left: 22px !important;
  }

  .beesides-page .bee-video-wrap.is-playing .bee-video-pause::after {
    right: 22px !important;
  }
}

/* =========================================================
   MOBILE — CLEAN INQUIRE SYSTEM (FINAL OVERRIDE)
========================================================= */

@media (max-width: 991.98px) {
  .media-element .art-actions {
    display: none !important;
  }

  .lightbox-actions {
    display: flex !important;
    justify-content: center !important;
  }
}