/* ============================================
   NADIA VOLA — STYLE.CSS
   Design minimal ispirato a Selevos.com
   ============================================ */

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

:root {
  --ink: #1A1A1A;
  --mid: #8A8A8A;
  --line: #EBEBEB;
  --bg: #FFFFFF;
  --bg-soft: #FAFAFA;
  --pop1: #FF3CAC;
  --pop2: #F9C62B;
  --pop3: #3CEFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Lato', sans-serif;
  --pop: 'Paytone One', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ════════════════════════════════════
   NAVBAR — menu orizzontale semplice
   ════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
}

.nav-logo {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 1.9rem; color: var(--ink); letter-spacing: -.01em;
}
/* N[a]di[a] V[o]la — a1=fucsia, a2=giallo, o=azzurro */
.nav-logo-name .dp { color: #FF3CAC; font-style: normal; }
.nav-logo-name .dy { color: #F9C62B; font-style: normal; }
.nav-logo-name .dc { color: #3CEFFF; font-style: normal; }

.nav-logo-sub-wrap {
  display: flex; flex-direction: row; align-items: center; gap: 6px;
}
.nav-logo-sub {
  font-family: var(--sans); font-size: .9rem; font-weight: 700;
  letter-spacing: .01em; color: var(--ink);
}
.nav-logo-pop {
  font-family: var(--pop); font-size: .55rem; letter-spacing: .05em;
  color: white; background: #FF3CAC;
  padding: 2px 7px; border-radius: 30px;
  display: inline-block; line-height: 1.6;
  transform: rotate(-15deg);
  transform-origin: center;
}
.nav-logo-deco {
  display: flex; flex-direction: column; align-items: center; gap: 3px; margin-top: 4px; width: 100%;
}
.nav-logo-deco-line {
  width: 80px; height: 1px; background: #CCCCCC;
}
.nav-logo-deco-dots {
  display: flex; gap: 5px; align-items: center;
}
.nav-logo-deco-dots span {
  width: 6px; height: 6px; border-radius: 50%; display: block;
}

.nav-menu { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-menu a {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color .2s;
  padding: 6px 0; border-bottom: 1px solid transparent;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--ink); border-bottom-color: var(--ink); }
.nav-menu a.nav-pop { color: var(--pop1); }
.nav-menu a.nav-pop:hover { color: #d4007a; border-bottom-color: #d4007a; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.cart-btn {
  position: relative; background: none; border: 1px solid var(--line);
  width: 38px; height: 38px; cursor: pointer; display: flex;
  align-items: center; justify-content: center; color: var(--mid);
  transition: all .2s; border-radius: 50%;
}
.cart-btn:hover { border-color: var(--ink); color: var(--ink); }
#cartBadge {
  position: absolute; top: -5px; right: -5px;
  width: 18px; height: 18px; background: var(--pop1); color: white;
  border-radius: 50%; font-size: .6rem; font-weight: 700;
  display: none; align-items: center; justify-content: center;
  font-family: var(--sans);
}

.mobile-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.mobile-menu-btn span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: all .3s; border-radius: 2px; }
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile dropdown menu */
#mobileMenu {
  position: fixed; top: 65px; left: 0; right: 0; bottom: 0;
  background: white; z-index: 199;
  transform: translateY(-100%); opacity: 0;
  transition: all .3s ease;
  pointer-events: none;
  overflow-y: auto;
}
#mobileMenu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
#mobileMenu ul { list-style: none; padding: 24px; }
#mobileMenu li { border-bottom: 1px solid var(--line); }
#mobileMenu a {
  display: block; padding: 18px 8px;
  font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}
#mobileMenu a.nav-pop { color: var(--pop1); }

/* ════════════════════════════════════
   PAGE HEADER — hero minimal per pagina
   ════════════════════════════════════ */
.page-header {
  padding: 160px 32px 64px;
  max-width: 1280px; margin: 0 auto;
  text-align: center;
}
.page-eyebrow {
  font-size: .65rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--pop1); margin-bottom: 20px;
}
.page-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05;
  margin-bottom: 20px;
}
.page-title em { font-style: italic; color: var(--mid); }
.page-desc {
  font-size: .95rem; color: var(--mid); line-height: 1.8;
  max-width: 620px; margin: 0 auto;
}

/* ════════════════════════════════════
   HERO HOME — immagine grande singola
   ════════════════════════════════════ */
.hero-home {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 65px; overflow: hidden;
}
.hero-home-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-home-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-home-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.45) 100%);
}
.hero-home-content {
  position: relative; z-index: 2; text-align: center; color: white;
  padding: 0 24px;
}
.hero-home-eyebrow {
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  margin-bottom: 24px; opacity: .9;
}
.hero-home-title {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.05;
  margin-bottom: 28px;
}
.hero-home-sub {
  font-size: 1rem; max-width: 460px; margin: 0 auto 40px;
  line-height: 1.8; opacity: .92;
}
.hero-home-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 15px 36px;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  font-family: var(--sans); font-weight: 400; transition: all .25s;
}
.btn-light { background: white; color: var(--ink); }
.btn-light:hover { background: var(--pop1); color: white; }
.btn-outline-light { background: transparent; color: white; border: 1px solid rgba(255,255,255,.6); }
.btn-outline-light:hover { background: white; color: var(--ink); border-color: white; }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--pop1); }
.btn-outline-dark { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: white; }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: white; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint span { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; opacity: .8; }
.scroll-line { width: 1px; height: 36px; background: rgba(255,255,255,.6); animation: scrollPulse 1.8s ease-in-out infinite; }
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Home — sezioni di collegamento alle pagine */
.home-links {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.home-link-card {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  text-decoration: none; display: block;
}
.home-link-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.home-link-card:hover img { transform: scale(1.06); }
.home-link-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7) 100%);
  display: flex; align-items: flex-end; padding: 28px;
}
.home-link-title {
  font-family: var(--serif); font-style: italic; font-size: 1.4rem;
  color: white;
}

/* Sezione testo intro home */
.home-intro {
  max-width: 720px; margin: 0 auto; text-align: center;
  padding: 100px 32px 0;
}
.home-intro-eyebrow {
  font-size: .65rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--pop1); margin-bottom: 24px;
}
.home-intro-text {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 300; line-height: 1.5; color: var(--ink);
}
.home-intro-text em { font-style: italic; color: var(--mid); }

/* ════════════════════════════════════
   SEZIONI GENERICHE
   ════════════════════════════════════ */
.section {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 32px;
}
.section-tight { padding: 48px 32px; }

.section-label {
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--pop1); margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1.1;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--mid); }

/* ════════════════════════════════════
   GRIGLIA OPERE / LEGNO
   ════════════════════════════════════ */
.filter-tabs { display: flex; gap: 4px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-tab {
  padding: 9px 22px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  background: none; border: 1px solid var(--line); cursor: pointer;
  color: var(--mid); transition: all .2s; font-family: var(--sans);
}
.filter-tab.active, .filter-tab:hover { background: var(--ink); color: white; border-color: var(--ink); }

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

.artwork-card { position: relative; cursor: pointer; }
.artwork-img {
  aspect-ratio: 4/5; width: 100%; overflow: hidden; position: relative;
  background: var(--bg-soft); margin-bottom: 16px;
}
.artwork-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.artwork-card:hover .artwork-img img { transform: scale(1.05); }

.artwork-meta { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.artwork-name { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--ink); margin-bottom: 4px; }
.artwork-price { font-size: .78rem; color: var(--mid); }
.artwork-tag {
  flex-shrink: 0; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); cursor: pointer; padding: 6px 0; border-bottom: 1px solid var(--ink);
  white-space: nowrap; transition: all .2s;
}
.artwork-tag:hover { color: var(--pop1); border-color: var(--pop1); }

.badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  padding: 4px 12px; font-size: .58rem; letter-spacing: .12em; text-transform: uppercase;
  background: white; color: var(--ink);
}
.badge-venduto { background: var(--ink); color: white; }

/* ════════════════════════════════════
   STAMPE
   ════════════════════════════════════ */
.stampe-info-box {
  margin-top: 20px; padding: 18px 24px; background: var(--bg-soft);
  border-left: 3px solid var(--pop1); max-width: 640px; margin-left: auto; margin-right: auto;
}
.stampe-info-box p { font-size: .85rem; color: var(--mid); line-height: 1.7; }
.stampe-info-box a { color: var(--pop1); text-decoration: underline; }

.stampe-format-label {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 8px; margin-top: 56px;
}
.stampe-format-detail {
  font-size: .75rem; color: var(--mid); margin-bottom: 32px; line-height: 1.8;
}

.stampe-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.stampa-card { cursor: default; }
.stampa-img {
  aspect-ratio: 3/4; cursor: zoom-in; overflow: hidden; background: var(--bg-soft);
  border: 1px solid var(--line); margin-bottom: 12px;
}
.stampa-img img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform .4s; }
.stampa-card:hover .stampa-img img { transform: scale(1.04); }
.stampa-price { font-size: .8rem; color: var(--ink); margin-bottom: 8px; }
.stampa-btn {
  width: 100%; background: var(--ink); color: white; border: none; padding: 9px;
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  font-family: var(--sans); transition: background .2s;
}
.stampa-btn:hover { background: var(--pop1); }

/* ════════════════════════════════════
   LEGNO — info bar
   ════════════════════════════════════ */
.legno-stats { display: flex; gap: 40px; justify-content: center; margin: 48px 0; flex-wrap: wrap; }
.legno-stat { text-align: center; }
.legno-stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--pop1); }
.legno-stat-label { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); margin-top: 4px; }

.legno-cta {
  border: 1px solid var(--line); padding: 36px 40px; margin-top: 56px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
  background: var(--bg-soft);
}
.legno-cta-title { font-family: var(--serif); font-size: 1.4rem; font-style: italic; margin-bottom: 6px; }
.legno-cta-desc { font-size: .85rem; color: var(--mid); line-height: 1.7; max-width: 420px; }

/* ════════════════════════════════════
   COMMISSIONI
   ════════════════════════════════════ */
.comm-gallery-intro { font-size: .9rem; color: var(--mid); line-height: 1.8; max-width: 640px; margin-bottom: 40px; }

.comm-gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 80px; }
.comm-gal-item { aspect-ratio: 1; overflow: hidden; cursor: zoom-in; position: relative; border: 1px solid var(--line); }
.comm-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.comm-gal-item:hover img { transform: scale(1.06); }
.comm-gal-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 10px 8px;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; color: white;
  opacity: 0; transition: opacity .3s;
}
.comm-gal-item:hover .comm-gal-label { opacity: 1; }

.price-tables { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 56px 0; }
.price-table-box { border: 1px solid var(--line); overflow: hidden; }
.price-table-header { background: var(--bg-soft); padding: 18px 24px; border-bottom: 1px solid var(--line); }
.price-table-header h3 { font-family: var(--serif); font-style: italic; font-size: 1.1rem; }
.price-table-header p { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-top: 4px; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th { padding: 10px 24px; text-align: left; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); font-weight: 400; }
.price-table th.right, .price-table td.right { text-align: right; }
.price-table td { padding: 10px 24px; font-size: .82rem; color: var(--ink); border-top: 1px solid var(--line); }
.price-table tr:nth-child(even) td { background: var(--bg-soft); }

.payment-options { background: var(--bg-soft); border: 1px solid var(--line); padding: 20px 24px; margin-bottom: 24px; }
.payment-options-title { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); margin-bottom: 14px; }
.payment-option { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: .85rem; color: var(--ink); margin-bottom: 10px; }
.payment-option input { margin-top: 3px; accent-color: var(--ink); }

.reminder-box { background: #FFF8E1; border: 1px solid #F0D896; padding: 18px 20px; display: flex; gap: 12px; margin-bottom: 24px; }
.reminder-box p:first-child { font-size: .85rem; color: var(--ink); margin-bottom: 4px; }
.reminder-box p:last-child { font-size: .78rem; color: var(--mid); line-height: 1.6; }

.comm-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.comm-steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step:first-child { padding-top: 0; }
.step-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--line); line-height: 1; }
.step-title { font-family: var(--serif); font-style: italic; font-size: 1.05rem; margin-bottom: 6px; }
.step-text { font-size: .8rem; color: var(--mid); line-height: 1.7; }

.comm-form-wrap { position: sticky; top: 100px; }
.comm-form { background: var(--bg-soft); border: 1px solid var(--line); padding: 36px; }
.form-title { font-family: var(--serif); font-style: italic; font-size: 1.3rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: white; border: 1px solid var(--line); color: var(--ink);
  padding: 11px 14px; font-family: var(--sans); font-size: .85rem; outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--ink); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.billing-box { background: white; border: 1px solid var(--line); padding: 16px 20px; margin-bottom: 20px; }
.billing-box-title { font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.billing-box-note { font-size: .72rem; color: var(--mid); margin-bottom: 14px; line-height: 1.6; }
.btn-form { width: 100%; background: var(--ink); color: white; border: none; padding: 15px; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; transition: background .2s; margin-top: 8px; }
.btn-form:hover { background: var(--pop1); }

/* ════════════════════════════════════
   IMMAGINI DA COLORARE
   ════════════════════════════════════ */
.colorare-section { background: #F7F3EE; padding: 80px 32px; position: relative; }
.colorare-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.1) 1px, transparent 1px);
  background-size: 26px 26px; pointer-events: none;
}
.colorare-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.colorare-badge {
  display: inline-block; font-family: var(--pop); font-size: .68rem;
  background: var(--pop1); color: white; padding: 6px 16px; border-radius: 30px; margin-bottom: 20px;
}
.colorare-title { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 18px; }
.colorare-title em { font-style: italic; color: var(--pop1); }
.colorare-desc { font-size: .9rem; color: #555; max-width: 560px; line-height: 1.8; margin-bottom: 36px; }

.colorare-bundle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.bundle-box { background: white; border: 1px solid #E0DACE; overflow: hidden; }
.bundle-box img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.bundle-info { padding: 18px; }
.bundle-name { font-family: var(--pop); font-size: .9rem; margin-bottom: 4px; }
.bundle-meta { font-size: .75rem; color: #888; margin-bottom: 12px; }
.bundle-price-buy { display: flex; justify-content: space-between; align-items: center; }
.bundle-price { font-family: var(--serif); font-size: 1.3rem; color: var(--pop1); }
.bundle-buy-link { background: var(--pop1); color: white; padding: 8px 18px; font-family: var(--pop); font-size: .65rem; text-decoration: none; border-radius: 4px; transition: background .2s; }
.bundle-buy-link:hover { background: #d4007a; }

.singles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.single-box { background: white; border: 1px solid #E0DACE; overflow: hidden; }
.single-box img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.single-info { padding: 10px; }
.single-name { font-size: .7rem; color: #555; margin-bottom: 8px; }
.single-buy { display: block; text-align: center; background: var(--ink); color: white; padding: 6px; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: background .2s; }
.single-buy:hover { background: var(--accent); }

/* ════════════════════════════════════
   CHI SONO
   ════════════════════════════════════ */
.bio-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.bio-portrait { position: relative; aspect-ratio: 4/5; }
.bio-portrait::before { content: ''; position: absolute; top: 16px; right: -16px; bottom: -16px; left: 16px; border: 1px solid var(--line); z-index: 0; }
.bio-portrait img { width: 85%; height: 85%; object-fit: cover; position: relative; z-index: 1; }
.bio-text p { font-size: .92rem; color: var(--mid); line-height: 1.9; margin-bottom: 18px; }
.bio-text p em { color: var(--ink); font-style: italic; }
.bio-quote {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--ink);
  border-left: 3px solid var(--pop1); padding-left: 22px; margin: 28px 0;
}
.bio-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; padding-top: 44px; border-top: 1px solid var(--line); }
.bio-stat-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 300; color: var(--pop1); line-height: 1; }
.bio-stat-label { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); margin-top: 6px; }

/* ════════════════════════════════════
   NEWSLETTER
   ════════════════════════════════════ */
.newsletter-section { background: var(--bg-soft); padding: 70px 32px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.newsletter-inner { max-width: 540px; margin: 0 auto; text-align: center; }
.newsletter-eyebrow { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--pop1); margin-bottom: 12px; }
.newsletter-title { font-family: var(--serif); font-weight: 300; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.newsletter-title em { font-style: italic; color: var(--mid); }
.newsletter-desc { font-size: .88rem; color: var(--mid); line-height: 1.8; margin-bottom: 28px; }
.newsletter-form { display: flex; max-width: 420px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: 1px solid var(--line); border-right: none; background: white; font-size: .85rem; outline: none; }
.newsletter-form button { background: var(--ink); color: white; border: none; padding: 14px 22px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.newsletter-form button:hover { background: var(--pop1); }
.newsletter-fine { font-size: .65rem; color: var(--mid); opacity: .6; margin-top: 14px; line-height: 1.6; }

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
footer { background: var(--bg-soft); padding: 56px 32px 32px; border-top: 1px solid var(--line); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 44px; flex-wrap: wrap; }
.footer-tagline { font-size: .8rem; color: var(--mid); max-width: 240px; line-height: 1.7; margin-top: 10px; }
.footer-col h4 { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .82rem; color: var(--mid); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--pop1); }
.social-link {
  width: 36px; height: 36px; border: 1px solid var(--line); display: flex;
  align-items: center; justify-content: center; color: var(--mid); text-decoration: none;
  font-size: .75rem; transition: all .2s;
}
.social-link:hover { border-color: var(--pop1); color: var(--pop1); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: .7rem; color: var(--mid);
}

/* ════════════════════════════════════
   CARRELLO
   ════════════════════════════════════ */
#cartPanel {
  position: fixed; top: 0; right: -420px; width: 400px; max-width: 100vw; height: 100vh;
  background: var(--ink); z-index: 300; padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,.3);
}
#cartPanel.open { right: 0; }
#cartOverlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 299; }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.cart-item-name { font-size: .85rem; color: white; margin-bottom: 4px; }
.cart-item-price { font-size: .72rem; color: rgba(255,255,255,.4); }

/* ════════════════════════════════════
   MODAL DETTAGLIO
   ════════════════════════════════════ */
#imgModal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.88); z-index: 500; align-items: center; justify-content: center; padding: 20px; }
.modal-box { background: white; max-width: 900px; width: 100%; max-height: 90vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.modal-close { position: absolute; top: 12px; right: 12px; z-index: 10; background: rgba(0,0,0,.6); border: none; color: white; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; }
.modal-img-side { background: var(--bg-soft); }
.modal-img-side img { width: 100%; height: 100%; object-fit: contain; max-height: 80vh; }
.modal-info-side { padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.modal-tag { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mid); }
.modal-name { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; line-height: 1.1; }
.modal-desc { font-size: .85rem; color: var(--mid); line-height: 1.7; }
.modal-price-display { font-family: var(--serif); font-size: 2rem; font-weight: 300; }
.modal-buy-btn { background: var(--ink); color: white; border: none; padding: 14px 24px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; width: 100%; transition: background .2s; }
.modal-buy-btn:hover { background: var(--pop1); }
.modal-info-box { font-size: .82rem; color: var(--mid); padding: 12px; background: var(--bg-soft); text-align: center; }
.modal-link-btn { display: block; text-align: center; background: var(--ink); color: white; padding: 12px; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; }
.modal-note { font-size: .72rem; color: var(--mid); line-height: 1.6; }
.modal-format-select { width: 100%; padding: 10px 14px; border: 1px solid var(--line); font-family: var(--sans); font-size: .85rem; outline: none; background: white; margin-bottom: 8px; }

#lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 500; align-items: center; justify-content: center; padding: 20px; cursor: zoom-out; }
#lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }
.lightbox-caption { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.7); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }

.toast {
  position: fixed; bottom: 24px; right: 24px; background: var(--ink); color: white;
  padding: 14px 22px; font-size: .78rem; z-index: 999;
  transform: translateY(80px); opacity: 0; transition: all .3s;
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-dot { width: 6px; height: 6px; background: var(--pop2); border-radius: 50%; }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .mobile-menu-btn { display: flex; }
  .navbar-inner { padding: 14px 20px; }
  .page-header { padding: 130px 20px 48px; }
  .hero-home-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .home-links { grid-template-columns: 1fr 1fr; padding: 56px 20px; }
  .home-intro { padding: 64px 20px 0; }
  .section { padding: 56px 20px; }
  .artwork-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stampe-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .comm-gallery { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .price-tables { grid-template-columns: 1fr; gap: 24px; }
  .comm-layout { grid-template-columns: 1fr; gap: 40px; }
  .comm-form-wrap { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .bio-layout { grid-template-columns: 1fr; gap: 32px; }
  .bio-portrait { max-width: 280px; margin: 0 auto; }
  .bio-stats { gap: 12px; }
  .colorare-bundle-grid { grid-template-columns: 1fr; }
  .colorare-inner > .fade-in + div { grid-template-columns: 1fr !important; gap: 28px !important; }
  .singles-grid { grid-template-columns: 1fr 1fr; }
  .colorare-section { padding: 56px 20px; }
  .legno-cta { flex-direction: column; align-items: flex-start; }
  #cartPanel { width: 100vw; right: -100vw; }
  .modal-box { grid-template-columns: 1fr; }
  .modal-img-side { max-height: 45vh; }
  .footer-top { flex-direction: column; gap: 28px; }
}

@media (max-width: 480px) {
  .artwork-grid { grid-template-columns: 1fr; }
  .stampe-grid { grid-template-columns: 1fr 1fr; }
  .comm-gallery { grid-template-columns: repeat(2, 1fr); }
  .singles-grid { grid-template-columns: 1fr; }
  .hero-home-title { font-size: 2rem; }
  .nav-logo-name { font-size: 1.05rem; }
}
