:root{
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #111111;
  --muted: #666666;
  --line: #e7e7e7;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --radius: 18px;
  --container: 1180px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Inter", system-ui, sans-serif;
  line-height:1.6;
}

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

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(var(--container), calc(100% - 2rem));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(250,250,250,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.05);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:78px;
  gap:1rem;
}

.brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.brand img{
  display:block;
  height:90px;
  width:auto;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:1.25rem;
}

.site-nav a{
  font-size:.96rem;
  color:var(--muted);
  transition:color .2s ease;
}

.site-nav a:hover,
.site-nav a.active{
  color:var(--text);
}

.hero{
  padding:5.5rem 0 4rem;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:3rem;
  align-items:center;
}

.eyebrow,
.section-label{
  margin:0 0 .75rem;
  color:var(--muted);
  font-size:.85rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.hero h1{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2.8rem, 6vw, 4.8rem);
  line-height:.96;
  font-weight:700;
  letter-spacing:-.02em;
}

.hero-text{
  max-width:58ch;
  margin:0 0 1.75rem;
  color:var(--muted);
  font-size:1.05rem;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.9rem;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:.85rem 1.25rem;
  border-radius:999px;
  font-weight:600;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:#111;
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-primary:hover{
  background:#000;
}

.btn-secondary{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
}

.btn-secondary:hover{
  background:#fff;
}

.hero-art img{
  border-radius:calc(var(--radius) + 4px);
  box-shadow:var(--shadow);
  object-fit:cover;
  aspect-ratio:4 / 5;
}

.featured-work,
.about-preview,
.cta-band{
  padding:4.5rem 0;
}

.section-heading{
  max-width:760px;
  margin:0 0 2rem;
}

.section-heading h2,
.about-preview h2,
.cta-band h2{
  margin:.15rem 0 .75rem;
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.02;
}

.section-heading p,
.about-preview p,
.cta-band p{
  color:var(--muted);
}

.art-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1.1rem;
}

.art-card{
  display:block;
  background:var(--surface);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 6px 22px rgba(0,0,0,.04);
  transition:transform .25s ease, box-shadow .25s ease;
}

.art-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 34px rgba(0,0,0,.08);
}

.art-card img{
  width:100%;
  height:auto;
  object-fit:contain;
}

.section-cta{
  margin-top:1.4rem;
}

.text-link{
  display:inline-block;
  font-weight:600;
  color:var(--text);
  border-bottom:1px solid rgba(17,17,17,.2);
  padding-bottom:.15rem;
}

.about-preview-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:center;
}

.about-preview-image img{
  border-radius:calc(var(--radius) + 4px);
  box-shadow:var(--shadow);
  aspect-ratio:4 / 5;
  object-fit:cover;
}

.cta-band-inner{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:24px;
  padding:3rem 2rem;
  text-align:center;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.site-footer{
  padding:2rem 0 3rem;
  border-top:1px solid rgba(0,0,0,.06);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:2rem;
}

.footer-brand{
  margin:0 0 .25rem;
  font-family:"Cormorant Garamond", serif;
  font-size:1.55rem;
  font-weight:700;
}

.footer-text{
  margin:0;
  color:var(--muted);
}

.footer-links{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}

.footer-links a{
  color:var(--muted);
}

.footer-links a:hover{
  color:var(--text);
}

@media (max-width: 980px){
  .hero-grid,
  .about-preview-grid{
    grid-template-columns:1fr;
  }

  .art-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .hero{
    padding:4rem 0 3rem;
  }
}

@media (max-width: 720px){
  .header-inner{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    padding:.65rem 0;
    min-height:64px;
    gap:.75rem;
  }

  .site-nav{
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:.5rem .75rem;
  }

  .site-nav a{
    font-size:.9rem;
  }

  .brand img{
    height:42px;
  }

  .art-grid{
    grid-template-columns:1fr;
  }

  .footer-inner{
    flex-direction:column;
  }

  .cta-band-inner{
    padding:2.25rem 1.25rem;
  }
}

/* =========================
   PAGE TEMPLATES
========================= */

.page-hero{
  padding:4.5rem 0 2rem;
}

.page-title{
  margin:.15rem 0 .9rem;
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2.4rem, 5vw, 4rem);
  line-height:1;
}

.page-intro{
  max-width:62ch;
  color:var(--muted);
  font-size:1.05rem;
}

.page-section{
  padding:2rem 0 4.5rem;
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:center;
}

.text-panel h2{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2rem, 4vw, 2.8rem);
  line-height:1.02;
}

.text-panel p{
  color:var(--muted);
}

.image-panel img{
  border-radius:calc(var(--radius) + 4px);
  box-shadow:var(--shadow);
  aspect-ratio:4 / 5;
  object-fit:cover;
}

.narrow-panel{
  max-width:860px;
}

.centered{
  text-align:center;
  margin:0 auto;
}

.placeholder-card{
  min-height:320px;
  display:grid;
  place-items:center;
  background:var(--surface);
  border:1px solid var(--line);
}

.placeholder-inner{
  color:var(--muted);
  font-weight:600;
  text-align:center;
  padding:1rem;
}

.artist-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.1rem;
}

.artist-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.5rem;
  box-shadow:0 6px 22px rgba(0,0,0,.04);
}

.artist-card h3{
  margin:0 0 .5rem;
  font-size:1.05rem;
}

.artist-card p{
  margin:0;
  color:var(--muted);
}

/* =========================
   GALLERY PRODUCT CARDS
========================= */

.gallery-art-image-link{
  display:block;
  overflow:hidden;
}

.gallery-art-card img{
  width:100%;
  aspect-ratio:4 / 5;
  object-fit:contain;
  background:var(--surface);
  transition:transform .35s ease;
  transform-origin:center center;
}

.gallery-art-card:hover img{
  transform:scale(1.12);
}

.gallery-art-meta{
  padding:.85rem;
}

.gallery-art-title{
  margin:0;
  font-weight:700;
  font-size:1.05rem;
}

.gallery-art-artist{
  margin:.2rem 0 0;
  color:var(--muted);
  font-size:.95rem;
}

.gallery-art-price{
  margin:.65rem 0 .9rem;
  font-weight:700;
}

.gallery-art-button{
  width:100%;
}

@media (max-width: 980px){
  .two-col,
  .artist-grid{
    grid-template-columns:1fr;
  }
}
/* =========================
   CART FEEDBACK
========================= */

.add-to-cart-btn.is-added{
  transform:scale(0.98);
  background:#1a1a1a;
}

.add-to-cart-btn.is-added::after{
  content:" ✓";
}

.cart-count-pop{
  animation:cartCountPop .28s ease;
}

@keyframes cartCountPop{
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.25);
  }
  100%{
    transform:scale(1);
  }
}
/* =========================
   CART PAGE
========================= */

.cart-items{
  display:grid;
  gap:1rem;
  margin-bottom:2rem;
}

.cart-item{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:1rem;
  align-items:start;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1rem;
  box-shadow:0 6px 22px rgba(0,0,0,.04);
}

.cart-item-image{
  border-radius:12px;
  aspect-ratio:4 / 5;
  object-fit:cover;
}

.cart-item-title{
  margin:0;
  font-weight:700;
  font-size:1.1rem;
}

.cart-item-artist{
  margin:.2rem 0 0;
  color:var(--muted);
}

.cart-item-price{
  margin:.65rem 0;
  font-weight:700;
}

.cart-item-actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:.5rem;
}

.cart-qty-btn,
.cart-remove-btn{
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  border-radius:999px;
  padding:.45rem .8rem;
  cursor:pointer;
  font:inherit;
}

.cart-item-qty{
  min-width:24px;
  text-align:center;
  font-weight:700;
}

.cart-summary{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:24px;
  padding:1.5rem;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.cart-total-label{
  margin:0 0 .35rem;
  color:var(--muted);
}

.cart-total-value{
  margin:0 0 1rem;
  font-family:"Cormorant Garamond", serif;
  font-size:2rem;
  font-weight:700;
}

.cart-checkout-button{
  width:auto;
}

@media (max-width: 720px){
  .cart-item{
    grid-template-columns:1fr;
  }
}
.zoom-container {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border-radius: 12px;
}

.zoom-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.15s ease;
  transform-origin: center center;
}
.zoom-lens {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.12),
    0 10px 25px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(1px);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.12s ease;
  z-index: 2;
}

.zoom-container.is-active .zoom-lens {
  opacity: 1;
}

@media (hover: none), (pointer: coarse) {
  .zoom-container {
    cursor: default;
  }

  .zoom-lens {
    display: none;
  }
}