/* =============================================
   PAINTINGS INDEX PAGE — paintings.css
   ============================================= */

/* ===================== RESET ===================== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

/* ===================== VARIABLES ===================== */
:root{
  --gallery-bg:#1c252e;
  --gallery-surface:#222530;
  --gallery-text:#f0ede8;
  --gallery-text-secondary:rgba(240,237,232,.6);
  --gallery-text-light:rgba(240,237,232,.678);
  --gallery-gold:#b0a18e;
  --gallery-gold-dark:#8c7d6b;
  --gallery-rule:rgba(240,237,232,.08);
  --gallery-rule-light:rgba(240,237,232,.05);
  --sidebar-bg:#22242b;
  --transition-smooth:cubic-bezier(.16,1,.3,1)
}

/* ===================== BASE ===================== */
html{scroll-behavior:smooth;scroll-padding-top:5rem}

body{
  font-family:'Montserrat',sans-serif;
  color:var(--gallery-text);
  background:var(--gallery-bg);
  line-height:1.7;
  font-weight:400;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale
}

h1,h2,h3,h4,h5{
  font-family:'Playfair Display',serif;
  font-weight:400;
  line-height:1.3
}

img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font:inherit}

/* ===================== SKIP LINK ===================== */
.skip-link{
  position:fixed;top:-100%;left:50%;transform:translateX(-50%);
  background:var(--gallery-surface);color:var(--gallery-text);padding:1rem 2rem;z-index:1000;
  font-family:'Montserrat',sans-serif;font-size:.85rem;font-weight:500;
  letter-spacing:.05em;text-decoration:none;border:1px solid var(--gallery-gold);transition:top .3s ease
}
.skip-link:focus{top:1rem;outline:none}

/* ===================== FOCUS STATES ===================== */
a:focus,button:focus,input:focus,textarea:focus{outline:none}
a:focus-visible,button:focus-visible{outline:2px solid var(--gallery-gold);outline-offset:3px}
input:focus-visible,textarea:focus-visible{outline:none;border-color:var(--gallery-gold)!important;box-shadow:0 0 0 1px var(--gallery-gold)}

/* ===================== BODY LOCK ===================== */
body.menu-open,body.sidebar-open{overflow:hidden}

/* ===================== NAVIGATION ===================== */
.category-nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  padding:1.5rem 5vw;
  transition:background .4s ease,padding .4s ease,box-shadow .4s ease
}
.category-nav.scrolled{
  background:rgba(26,28,34,.97);
  padding:1.1rem 5vw;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--gallery-rule);
  box-shadow:0 2px 20px rgba(0,0,0,.2)
}
.category-nav-menu-btn{
  display:flex;align-items:center;
  background:none;border:none;cursor:pointer;
  padding:.5rem 0;min-height:44px;min-width:44px
}
.category-nav-menu-icon{
  display:flex;flex-direction:column;justify-content:center;
  gap:5px;width:20px;height:20px
}
.category-nav-menu-icon span{
  display:block;width:100%;height:1px;
  background:var(--gallery-text);transition:background .3s ease
}
.category-nav-logo{
  font-family:'Tenor Sans',sans-serif;
  font-size:1.05rem;
  color:var(--gallery-text);
  letter-spacing:.1em;
  text-transform:uppercase;
  position:absolute;left:50%;transform:translateX(-50%);
  transition:color .3s ease;
  white-space:nowrap;
  display:flex;
  gap:.3em
}
.category-nav-logo-text{display:inline}
.category-nav.scrolled .category-nav-logo{color:var(--gallery-gold)}
.category-nav-link{
  font-family:'Montserrat',sans-serif;
  font-size:.75rem;font-weight:500;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--gallery-text-light);
  background:none;
  border:1px solid rgba(240,237,232,.2);
  padding:.6rem 1.4rem;
  cursor:pointer;
  transition:color .3s ease,border-color .3s ease
}
.category-nav-link:hover{
  color:var(--gallery-gold);
  border-color:var(--gallery-gold)
}


/* ===================== MENU OVERLAY ===================== */
.category-menu-overlay{
  position:fixed;inset:0;z-index:200;
  background: radial-gradient(ellipse at center, #212d38 0%, #222530 100%);
  opacity:0;visibility:hidden;
  transition:opacity .4s ease,visibility .4s ease
}
.category-menu-overlay.is-open{opacity:1;visibility:visible}
.category-menu-overlay-inner{
  height:100%;display:flex;flex-direction:column;
  align-items:center;justify-content:center;padding:4rem 2rem
}
.category-menu-close{
  position:absolute;top:2rem;right:5vw;
  width:44px;height:44px;background:none;border:none;
  cursor:pointer;display:flex;align-items:center;justify-content:center
}
.category-menu-close span{
  position:absolute;width:22px;height:1px;
  background:var(--gallery-text-secondary);transition:background .3s ease
}
.category-menu-close span:first-child{transform:rotate(45deg)}
.category-menu-close span:last-child{transform:rotate(-45deg)}
.category-menu-close:hover span{background:var(--gallery-text)}
.category-menu-nav{
  display:flex;flex-direction:column;align-items:center;gap:.5rem
}
.category-menu-link{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem,4vw,2.5rem);
  font-weight:400;color:var(--gallery-text);
  padding:.4rem 0;transition:color .3s ease;
  text-decoration:none;background:none;border:none;cursor:pointer
}
.category-menu-link:hover{color:var(--gallery-gold)}
.category-menu-link--contact{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem,4vw,2.5rem);
  font-weight:400;
  color:var(--gallery-gold);
  padding:.4rem 0;
  background:none;border:none;cursor:pointer;
  transition:color .3s ease;margin-top:.5rem
}
.category-menu-link--contact:hover{color:var(--gallery-text)}
.category-menu-footer{
  position:absolute;bottom:3rem;text-align:center
}
.category-menu-footer a{
  font-family:'Montserrat',sans-serif;
  font-size:.85rem;color:var(--gallery-text-light);transition:color .3s ease
}
.category-menu-footer a:hover{color:var(--gallery-gold)}

/* ===================== CONTACT SIDEBAR ===================== */
.category-sidebar-backdrop{
  position:fixed;inset:0;z-index:250;
  background:rgba(26,28,34,.8);
  opacity:0;visibility:hidden;
  transition:opacity .4s ease,visibility .4s ease;
  backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px)
}
.category-sidebar-backdrop.is-open{opacity:1;visibility:visible}
.category-sidebar{
  position:fixed;top:0;right:0;bottom:0;z-index:300;
  width:100%;max-width:440px;
  background:var(--sidebar-bg);
  transform:translateX(100%);
  transition:transform .5s var(--transition-smooth);
  overflow-y:auto;
  border-left:1px solid var(--gallery-rule)
}
.category-sidebar.is-open{transform:translateX(0)}
.category-sidebar-close{
  position:absolute;top:1.5rem;right:2rem;
  width:44px;height:44px;background:none;border:none;
  cursor:pointer;display:flex;align-items:center;justify-content:center
}
.category-sidebar-close span{
  position:absolute;width:18px;height:1px;
  background:var(--gallery-text-secondary);transition:background .3s ease
}
.category-sidebar-close span:first-child{transform:rotate(45deg)}
.category-sidebar-close span:last-child{transform:rotate(-45deg)}
.category-sidebar-close:hover span{background:var(--gallery-text)}
.category-sidebar-content{padding:5rem 2.5rem 3rem}
.category-sidebar-title{
  font-family:'Playfair Display',serif;font-size:1.8rem;font-weight:400;
  color:var(--gallery-text);margin-bottom:1rem
}
.category-sidebar-intro{
  font-family:'Montserrat',sans-serif;font-size:.95rem;color:var(--gallery-text-secondary);
  line-height:1.8;margin-bottom:2.5rem
}
.category-sidebar-direct{display:flex;flex-direction:column;gap:.5rem}
.category-sidebar-direct a{
  font-family:'Montserrat',sans-serif;font-size:1rem;color:var(--gallery-text);
  text-decoration:none;transition:color .3s ease
}
.category-sidebar-direct a:hover{color:var(--gallery-gold)}
.category-sidebar-divider{display:flex;align-items:center;margin:2.5rem 0}
.category-sidebar-divider::before,.category-sidebar-divider::after{content:'';flex:1;height:1px;background:var(--gallery-rule)}
.category-sidebar-divider span{
  font-family:'Montserrat',sans-serif;font-size:.68rem;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--gallery-text-light);padding:0 1.25rem
}
.category-sidebar-field{margin-bottom:1.75rem}
.category-sidebar-field label{
  display:block;font-family:'Montserrat',sans-serif;
  font-size:.68rem;font-weight:500;letter-spacing:.12em;
  text-transform:uppercase;color:var(--gallery-text-light);margin-bottom:.6rem
}
.category-sidebar-field input,.category-sidebar-field textarea{
  width:100%;background:transparent;
  border:none;border-bottom:1px solid var(--gallery-rule);
  color:var(--gallery-text);font-family:'Montserrat',sans-serif;
  font-size:.95rem;padding:.7rem 0;outline:none;
  transition:border-color .4s ease
}
.category-sidebar-field input:focus,.category-sidebar-field textarea:focus{border-color:var(--gallery-gold)}
.category-sidebar-field textarea{
  border:1px solid var(--gallery-rule);
  padding:.85rem;height:100px;resize:vertical;margin-top:.25rem
}
.category-sidebar-field textarea::placeholder{color:var(--gallery-text-light);font-style:italic}
.form-optional{
  font-weight:400;letter-spacing:0;text-transform:none;
  color:var(--gallery-text-light);font-size:.7rem
}
.category-sidebar-form button[type="submit"]{
  width:100%;background:transparent;
  border:1px solid rgba(240,237,232,.3);
  color:var(--gallery-text);font-family:'Montserrat',sans-serif;
  font-size:.72rem;font-weight:500;letter-spacing:.14em;
  text-transform:uppercase;padding:1.15rem 2rem;
  margin-top:.75rem;cursor:pointer;
  transition:border-color .4s ease,color .4s ease,background .4s ease
}
.category-sidebar-form button[type="submit"]:hover{
  border-color:var(--gallery-gold);color:var(--gallery-gold)
}

/* ===================== HEADER ===================== */
.paintings-header{
  background: #182029;
  padding:8rem 5vw 4.5rem;
  text-align:center;
  border-bottom:1px solid var(--gallery-rule)
}
.paintings-header-inner{
  max-width:42rem;
  margin:0 auto
}

/* ===================== BREADCRUMB ===================== */
.paintings-breadcrumb{
  margin-bottom:2rem
}
.paintings-breadcrumb-list{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  list-style:none;
  font-family:'Montserrat',sans-serif;
  font-size:.72rem;
  letter-spacing:.08em;
  color:var(--gallery-text-light)
}
.paintings-breadcrumb-list li{
  display:flex;
  align-items:center;
  gap:.5rem
}
.paintings-breadcrumb-list li:not(:last-child)::after{
  content:'›';
  color:var(--gallery-text-light);
  font-size:.8rem
}
.paintings-breadcrumb-list a{
  color:var(--gallery-text-secondary);
  transition:color .3s ease
}
.paintings-breadcrumb-list a:hover{
  color:var(--gallery-gold)
}
.paintings-breadcrumb-list [aria-current="page"]{
  color:var(--gallery-text-light)
}

/* Header text */

.paintings-header-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(2.2rem,5vw,3.2rem);
  font-weight:400;
  color:var(--gallery-text);
  margin-bottom:1.75rem
}
.paintings-header-intro{
  font-family:'Montserrat',sans-serif;
  font-size:1rem;
  color:var(--gallery-text-secondary);
  line-height:2;
  max-width:36rem;
  margin:0 auto
}

/* ===================== CATEGORY GRID ===================== */
.paintings-categories{
  padding:5rem 5vw 4rem
}
.paintings-categories-inner{
  max-width:1850px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:2rem
}

/* ===================== CATEGORY CARD ===================== */
.paintings-card{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  border:1px solid var(--gallery-rule);
  overflow:hidden;
  opacity:0;
  transform:translateY(20px);
  transition:opacity .6s ease,transform .6s ease,border-color .4s ease,box-shadow .4s ease
}
.paintings-card.is-visible{
  opacity:1;
  transform:translateY(0)
}
.paintings-card:hover{
  border-color:rgba(176,161,142,.25);
  box-shadow:0 8px 32px rgba(0,0,0,.25)
}

/* Card image */
.paintings-card-image{
  position:relative;
  overflow:hidden;
  aspect-ratio:3/2
}
.paintings-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.9);
  transition:transform .6s ease,filter .6s ease
}
.paintings-card:hover .paintings-card-image img{
  transform:scale(1.03);
  filter:saturate(1) brightness(1.04)
}

/* Museum spotlight vignette on hover */
.paintings-card-image::after{
  content:'';
  position:absolute;
  inset:0;
  box-shadow:inset 0 0 50px rgba(0,0,0,0);
  transition:box-shadow .5s ease;
  pointer-events:none
}
.paintings-card:hover .paintings-card-image::after{
  box-shadow:inset 0 0 50px rgba(0,0,0,.15)
}

/* Card body */
.paintings-card-body{
  padding:1.4rem 1.5rem 1.6rem
}
.paintings-card-title{
  font-family:'Playfair Display',serif;
  font-size:1.15rem;
  font-weight:400;
  color:var(--gallery-text);
  margin-bottom:.4rem;
  transition:color .3s ease
}
.paintings-card:hover .paintings-card-title{
  color:var(--gallery-gold)
}
.paintings-card-desc{
  font-family:'Montserrat',sans-serif;
  font-size:.82rem;
  color:var(--gallery-text-secondary);
  line-height:1.7
}

/* ===================== NEWSLETTER ===================== */
.paintings-newsletter{
  padding:4.5rem 5vw;
  border-top:1px solid var(--gallery-rule);
  background:var(--gallery-surface)
}
.paintings-newsletter-inner{
  max-width:60rem;
  margin:0 auto;
  display:flex;
  align-items:flex-end;
  gap:4rem
}
.paintings-newsletter-text{
  flex:0 0 auto;
  max-width:22rem
}
.paintings-newsletter-text h2{
  font-family:'Playfair Display',serif;
  font-size:1.4rem;
  font-weight:400;
  color:var(--gallery-text);
  margin-bottom:.75rem
}
.paintings-newsletter-text p{
  font-family:'Montserrat',sans-serif;
  font-size:.88rem;
  color:var(--gallery-text-secondary);
  line-height:1.8
}

.paintings-newsletter-form{
  flex:1;
  min-width:0
}
.paintings-newsletter-fields{
  display:flex;
  gap:2rem;
  align-items:flex-end
}
.paintings-newsletter-field{
  flex:1;
  min-width:0
}
.paintings-newsletter-field label{
  display:block;
  font-family:'Montserrat',sans-serif;
  font-size:.68rem;
  font-weight:500;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--gallery-text-light);
  margin-bottom:.5rem
}
.paintings-newsletter-field input{
  width:100%;
  background:transparent;
  border:none;
  border-bottom:1px solid var(--gallery-rule);
  padding:.7rem 0;
  font-family:'Montserrat',sans-serif;
  font-size:.92rem;
  color:var(--gallery-text);
  transition:border-color .3s ease
}
.paintings-newsletter-field input:focus{
  border-color:var(--gallery-gold)
}
.paintings-newsletter-field input::placeholder{
  color:var(--gallery-text-light)
}
.paintings-newsletter-btn{
  background:none;
  border:1px solid rgba(240,237,232,.3);
  font-family:'Montserrat',sans-serif;
  font-size:.72rem;
  font-weight:500;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gallery-text);
  padding:.85rem 2rem;
  cursor:pointer;
  transition:border-color .3s ease,color .3s ease;
  white-space:nowrap;
  min-height:44px;
  flex-shrink:0
}
.paintings-newsletter-btn:hover{
  border-color:var(--gallery-gold);
  color:var(--gallery-gold)
}

/* ===================== COMMISSION NOTE ===================== */
.paintings-commission-note{
  background: var(--gallery-surface);
  padding:3rem 5vw;
  border-top:1px solid var(--gallery-rule);
  text-align:center
}
.paintings-commission-note-inner{
  max-width:40rem;
  margin:0 auto
}
.paintings-commission-note p{
  font-family:'Montserrat',sans-serif;
  font-size:.88rem;
  color:var(--gallery-text-secondary);
  line-height:1.8
}
.paintings-commission-note a{
  color:var(--gallery-gold);
  text-decoration:none;
  border-bottom:1px solid rgba(176,161,142,.3);
  transition:color .3s ease,border-color .3s ease
}
.paintings-commission-note a:hover{
  color:var(--gallery-text);
  border-color:var(--gallery-text)
}

/* ===================== FOOTER ===================== */
.paintings-footer{
  background: #0b0c13;
  padding:5rem 5vw 3rem;
  border-top:1px solid var(--gallery-rule)
}
.paintings-footer-inner{
  max-width:1700px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr .7fr;
  gap:3rem
}

/* Footer columns */

.paintings-footer-heading{
  font-family:'Montserrat',sans-serif;
  font-size:.68rem;
  font-weight:500;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--gallery-gold);
  margin-bottom:1.5rem
}
.paintings-footer-list{
  list-style:none
}
.paintings-footer-list li{
  margin-bottom:.6rem
}
.paintings-footer-list a{
  font-family:'Montserrat',sans-serif;
  font-size:.85rem;
  color:var(--gallery-text-secondary);
  transition:color .3s ease
}
.paintings-footer-list a:hover{
  color:var(--gallery-gold)
}

/* Brand column */
.paintings-footer-brand{
  display:flex;
  flex-direction:column;
  gap:.25rem
}
.paintings-footer-logo{
  font-family:'Playfair Display',serif;
  font-size:1.15rem;
  color:var(--gallery-text);
  transition:color .3s ease;
  margin-bottom:.1rem
}
.paintings-footer-logo:hover{
  color:var(--gallery-gold)
}
.paintings-footer-tagline{
  font-family:'Montserrat',sans-serif;
  font-size:.78rem;
  color:var(--gallery-text-light);
  margin-bottom:1.25rem
}
.paintings-footer-contact{
  display:flex;
  flex-direction:column;
  gap:.4rem;
  margin-bottom:1.5rem
}
.paintings-footer-contact a{
  font-family:'Montserrat',sans-serif;
  font-size:.85rem;
  color:var(--gallery-text-secondary);
  transition:color .3s ease
}
.paintings-footer-contact a:hover{
  color:var(--gallery-gold)
}

/* Social icons */
.paintings-footer-social{
  display:flex;
  gap:1rem;
  margin-bottom:1.75rem
}
.paintings-footer-social a{
  color:var(--gallery-text-secondary);
  transition:color .3s ease
}
.paintings-footer-social a:hover{
  color:var(--gallery-gold)
}
.paintings-footer-social svg{
  display:block
}

/* Copyright */
.paintings-footer-copyright{
  font-family:'Montserrat',sans-serif;
  font-size:.72rem;
  color:var(--gallery-text-light);
  margin-top:auto
}

/* ===================== UTILITIES ===================== */
.form-honeypot{
  position:absolute;left:-9999px;height:0;
  overflow:hidden;opacity:0;pointer-events:none
}

/* ===================== RESPONSIVE — LARGE DESKTOP ===================== */
@media (min-width:1400px){
  .paintings-categories-inner{
    grid-template-columns:repeat(4,1fr);
    gap:2rem
  }
}

/* ===================== RESPONSIVE — TABLET ===================== */
@media (max-width:1024px){
  .paintings-header{padding:7rem 5vw 3.5rem}
  
  .paintings-categories{padding:3.5rem 4vw 3rem}
  .paintings-categories-inner{gap:1.5rem}
  
  .paintings-newsletter-inner{
    flex-direction:column;
    align-items:center;
    gap:2rem;
    text-align:center
  }
  .paintings-newsletter-text{max-width:none}
  .paintings-newsletter-fields{
    max-width:32rem;
    margin:0 auto
  }
  
  .paintings-footer-inner{
    grid-template-columns:1fr 1fr;
    gap:3rem 2rem
  }
}

/* ===================== RESPONSIVE — MOBILE ===================== */
@media (max-width:768px){
  /* Nav */
  .category-nav-logo{font-size:clamp(.72rem,3.2vw,.88rem)}
  .category-nav-link{display:none}
  
  /* Header */
  .paintings-header{padding:6rem 6vw 3rem}
  .paintings-header-title{font-size:clamp(1.8rem,7vw,2.4rem)}
  .paintings-header-intro{font-size:.92rem}
  
  /* Categories — compact horizontal cards */
  .paintings-categories{padding:2.5rem 5vw 2rem}
  .paintings-categories-inner{
    grid-template-columns:1fr;
    gap:0
  }
  
  .paintings-card{
    flex-direction:row;
    border:none;
    border-bottom:1px solid var(--gallery-rule);
    align-items:center;
    gap:0
  }
  .paintings-card:first-child{
    border-top:1px solid var(--gallery-rule)
  }
  .paintings-card:hover{
    box-shadow:none;
    border-color:var(--gallery-rule)
  }
  
  .paintings-card-image{
    flex:0 0 100px;
    width:100px;
    aspect-ratio:1/1;
    border-right:1px solid var(--gallery-rule)
  }
  
  .paintings-card-body{
    flex:1;
    min-width:0;
    padding:1.1rem 1.25rem
  }
  .paintings-card-title{
    font-size:1rem;
    margin-bottom:.25rem
  }
  .paintings-card-desc{
    font-size:.78rem;
    line-height:1.6
  }
  
  /* Newsletter */
  .paintings-newsletter{padding:3.5rem 6vw}
  .paintings-newsletter-text h2{font-size:1.25rem}
  .paintings-newsletter-fields{
    flex-direction:column;
    gap:1.25rem;
    max-width:none
  }
  .paintings-newsletter-btn{
    width:100%;
    margin-top:.25rem
  }
  
  /* Commission note */
  .paintings-commission-note{padding:2.5rem 6vw}
  .paintings-commission-note p{font-size:.85rem}
  
  /* Footer */
  .paintings-footer{padding:3.5rem 6vw 2rem}
  .paintings-footer-inner{
    grid-template-columns:1fr;
    gap:2.5rem
  }
  .paintings-footer-brand{
    padding-bottom:2rem;
    border-bottom:1px solid var(--gallery-rule)
  }
  
  /* Sidebar */
  .category-sidebar{max-width:100%}
  .category-sidebar-content{padding:4rem 1.5rem 2rem}
  
  /* Disable card animations on mobile */
  .paintings-card{opacity:1;transform:translateY(0)}
}

/* ===================== RESPONSIVE — SMALL MOBILE ===================== */
@media (max-width:480px){
  .category-nav-logo{font-size:.68rem;letter-spacing:.06em}
  
  .paintings-header{padding:5.5rem 5vw 2.5rem}
  .paintings-header-title{font-size:clamp(1.6rem,6.5vw,2rem)}
  .paintings-header-intro{font-size:.88rem}
  
  .paintings-categories{padding:2rem 4vw 1.5rem}
  
  .paintings-card-image{
    flex:0 0 80px;
    width:80px
  }
  .paintings-card-body{
    padding:1rem
  }
  .paintings-card-title{font-size:.92rem}
  .paintings-card-desc{font-size:.75rem}
  
  .paintings-newsletter{padding:3rem 5vw}
  .paintings-commission-note{padding:2rem 5vw}
  .paintings-footer{padding:3rem 5vw 1.5rem}
}

/* ===================== PRINT ===================== */
@media print{
  .category-nav,.category-menu-overlay,.category-sidebar,.category-sidebar-backdrop,
  .skip-link,.paintings-newsletter,.paintings-commission-note{display:none!important}
  .paintings-card{opacity:1!important;transform:none!important;break-inside:avoid}
  body{background:#fff;color:#000}
}