:root {
  --bg: #0f0f12;
  --panel: #15161a;
  --text: #e9ecf1;
  --muted: #b6bcc7;
  --primary: #ff5a7a;
  --primary-700: #e14a69;
  --accent: #7dd3fc;
  --accent-2: #facc15;
  --stroke: #ffffff0f;
  --chip: #1f2026;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

* {
  overflow-x: hidden !important;
}

.hover_text {
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.hover_text::after {
  content: "";
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 120%;
  height: 130%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 60" preserveAspectRatio="none"><defs><linearGradient id="brush" x1="0" y1="0" x2="1" y2="0"><stop offset="0" stop-color="%23ff5a7a"/><stop offset="0.5" stop-color="%237dd3fc"/><stop offset="1" stop-color="%23facc15"/></linearGradient></defs><path d="M8 30C28 18 58 25 88 22s60-12 90-12c30 0 60 8 90 12s60 3 78 10c-18 4-48 12-84 15-36 3-72 0-108 3s-72 6-108 3c-18-2-36-4-48-9c12-8 32-16 52-20z" fill="url(%23brush)" opacity="0.7"/></svg>') center/100% 100% no-repeat;
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 2px 8px rgba(255, 90, 122, 0.2));
  z-index: -1;
}

.hover_text::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%) translateY(-15px) scale(0);
  width: 120px;
  height: 120px;
  background: 
    linear-gradient(45deg, #ff5a7a22 25%, transparent 25%), 
    linear-gradient(-45deg, #7dd3fc22 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #facc1522 75%), 
    linear-gradient(-45deg, transparent 75%, #ff5a7a22 75%),
    url('assets/img/Alex/prettyBoyfriend.png') center/cover; /* POPULAR IMAGE*/
  background-size: 20px 20px, 20px 20px, 20px 20px, 20px 20px, cover;
  border-radius: 12px;
  border: 3px solid var(--panel);
  box-shadow: 
    0 0 0 2px var(--stroke), 
    0 20px 40px rgba(0,0,0,.5),
    inset 0 0 0 1px rgba(255,255,255,0.1);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
  pointer-events: none;
}

.hover_text::before::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--panel);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}

.hover_text:hover {
  color: var(--text);
}

.hover_text:hover::after {
  transform: translateY(-50%) scaleX(1);
}

.hover_text:hover::before {
  transform: translateX(-50%) translateY(-15px) scale(1);
  opacity: 1;
}

/* Changing Text Animation — Subtle fade/slide with ink gradient */
.changing-text {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  min-width: 0;
  font-weight: 800;
  letter-spacing: .4px;
  white-space: nowrap;
  /* Solid text color to prevent transparency while typing */
  color: var(--text) !important;
  /* Reset any leftover gradient text styles that might make it transparent */
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: 0 1px 10px #0003;
}

/* Caret for typewriter */
.changing-text::after {
  content: "";
  position: absolute; bottom: 0.1em; transform: translateY(10%);
  right: -1px; width: 2px; height: 1.05em; border-radius: 1px;
  background: linear-gradient(180deg, var(--ink1), var(--ink2));
  box-shadow: 0 0 12px #0006;
  animation: caretBlink 1s steps(2, start) infinite;
}
@keyframes caretBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* Out + In phases, toned down */
.changing-text.wipe-out { animation: wipeOut .16s ease forwards; }
.changing-text.wipe-in { animation: wipeIn .28s ease-out forwards; }

@keyframes wipeOut {
  0% { opacity: 1; transform: translateY(0); filter: none; }
  100% { opacity: 0; transform: translateY(-2px); filter: blur(0.5px); }
}
@keyframes wipeIn {
  0% { opacity: 0; transform: translateY(2px); filter: blur(0.5px); }
  100% { opacity: 1; transform: translateY(0); filter: none; }
}

@media (prefers-reduced-motion: reduce) {
  .changing-text, .changing-text::before, .changing-text::after { animation: none !important; transition: none !important; }
}

/* Social Media Links */
.social-links {
  display: flex;
  gap: 16px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--panel);
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.social-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.social-btn i {
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.social-btn span {
  position: relative;
  z-index: 1;
  font-size: 14px;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,.3);
}

.social-btn:hover::before {
  opacity: 1;
}

/* Platform-specific colors */
.social-btn.tiktok::before {
  background: linear-gradient(135deg, #ff0050, #00f2ea);
}

.social-btn.tiktok:hover {
  border-color: #ff0050;
  color: #fff;
}

.social-btn.instagram::before {
  background: linear-gradient(135deg, #e4405f, #5851db, #fccc63);
}

.social-btn.instagram:hover {
  border-color: #e4405f;
  color: #fff;
}

.social-btn.carla::before {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.social-btn.carla:hover {
  border-color: var(--primary);
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 560px) {
  .social-links {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .social-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =====================
   Shop / Products
   ===================== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { background: var(--panel); border: 1px solid var(--stroke); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.product-card .thumb { position: relative; overflow: hidden; }
.product-card .thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .35s ease; cursor: zoom-in; }
.product-card:hover .thumb img { transform: scale(1.04); }
.product-card .badge { position: absolute; top: 10px; left: 10px; background: linear-gradient(135deg, var(--accent), var(--primary)); color: #0f0f12; font-weight: 700; font-size: 12px; padding: 4px 8px; border-radius: 999px; box-shadow: 0 6px 14px rgba(0,0,0,.35); }
.product-card .title { margin: 12px 12px 4px; font-size: 18px; }
.product-card .meta { margin: 0 12px 10px; }
.product-actions { display: flex; align-items: center; justify-content: space-between; padding: 12px; border-top: 1px solid var(--stroke); }
.product-price { font-weight: 700; }

@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1000px 600px at -10% -10%, #1c1d23 0%, transparent 60%),
    radial-gradient(900px 500px at 110% 0%, #171821 0%, transparent 60%),
    repeating-linear-gradient(135deg, #0f0f12, #0f0f12 12px, #101016 12px, #101016 24px),
    var(--bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

/* Touch-friendly improvements for mobile */
button, .btn, .card, .social-btn, .lightbox-close {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Mobile-specific hover states */
@media (hover: none) and (pointer: coarse) {
  .card:hover {
    transform: none;
  }
  
  .card:active {
    transform: translateY(-5px);
    transition: transform 0.1s ease;
  }
  
  .btn:hover {
    transform: none;
  }
  
  .btn:active {
    transform: translateY(2px);
    transition: transform 0.1s ease;
  }
  
  .social-btn:hover {
    transform: none;
  }
  
  .social-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
  }
}

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

.container { width: min(1100px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 72px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 28px; }
.section-title { font-family: "Playfair Display", Georgia, serif; font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); letter-spacing: .2px; }
.section-subtitle { color: var(--muted); margin-top: 6px; }
.display { font-family: "Playfair Display", Georgia, serif; font-size: clamp(36px, 5.2vw, 64px); line-height: 1.1; margin: 0 0 14px; }
.lead { color: var(--muted); font-size: clamp(16px, 1.6vw, 18px); }
.muted { color: var(--muted); }
.tiny { font-size: 12px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(to bottom, #0f0f12, #0f0f12e6 60%, transparent);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(6px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.logo-mark { width: 36px; height: 36px; border-radius: 8px; display: inline-grid; place-items: center; font-family: "Playfair Display", serif; background:
  conic-gradient(from 210deg, var(--primary), var(--accent), var(--accent-2), var(--primary));
  color: #0f0f12; text-shadow: 0 1px 0 #fff8;
  box-shadow: inset 0 0 0 2px #fff2, var(--shadow);
}
.logo-text { letter-spacing: .6px; }

.nav-list { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.nav a { opacity: .9; padding: 8px 10px; border-radius: 8px; }
.nav a:hover { background: #ffffff10; }

.nav-toggle { display: none; background: transparent; color: var(--text); border: 0; font-size: 22px; padding: 6px 10px; }
@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
  .nav-list { position: absolute; right: 16px; top: 60px; background: var(--panel); border-radius: 10px; box-shadow: var(--shadow); padding: 8px; flex-direction: column; min-width: 180px; display: none; text-align: center; }
  .nav-list.open { display: flex; }
  /* Center items inside the dropdown card */
  .nav-list li { width: 100%; }
  .nav-list a { display: block; width: 100%; padding: 10px 12px; text-align: center; }
}

/* Hero */
.hero { 
  padding-top: 84px; 
  padding-bottom: 40px;
  min-height: 0;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.hero-preview { position: relative; height: 320px; }
.paint-splash { position: absolute; inset: 0; border-radius: 22px; filter: drop-shadow(0 30px 60px rgba(0,0,0,.45));
  background:
    radial-gradient(100px 100px at 30% 30%, #fff4 0%, transparent 60%),
    radial-gradient(140px 140px at 60% 60%, #fff3 0%, transparent 60%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="400"><defs><filter id="n" x="-20%" y="-20%" width="140%" height="140%"><feTurbulence baseFrequency="0.8" numOctaves="2" seed="3" type="fractalNoise"/><feColorMatrix type="saturate" values="0"/><feComponentTransfer><feFuncA type="gamma" amplitude="1.2" exponent="1.2"/></feComponentTransfer></filter></defs><g filter="url(%23n)"><rect width="100%" height="100%" fill="%23ff5a7a"/><circle cx="420" cy="140" r="160" fill="%237dd3fc"/><circle cx="180" cy="280" r="120" fill="%23facc15"/></g></svg>') center/cover no-repeat;
}

.belt { display: none !important; }
.paint-divider { height: 18px; margin: 0 0 14px; opacity: .9; }
.paint-divider { background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 80" preserveAspectRatio="none"><defs><linearGradient id="pd" x1="0" y1="0" x2="1" y2="0"><stop offset="0" stop-color="%23ff5a7a"/><stop offset="0.5" stop-color="%237dd3fc"/><stop offset="1" stop-color="%23facc15"/></linearGradient></defs><path d="M0 40c80-18 160-26 240-22s160 22 240 24 160-8 240-26v64H0z" fill="url(%23pd)" opacity="0.85"/></svg>') center/100% 100% no-repeat; filter: drop-shadow(0 8px 20px rgba(0,0,0,.35)); }

/* Marquee */
.belt-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: inline-flex; gap: 10px; padding: 8px 0 2px; white-space: nowrap; animation: slideMarquee 18s linear infinite; }
.belt-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slideMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Featured ribbon */
.featured-ribbon { margin-top: 16px; background: linear-gradient(180deg, #10121a, #0f1117); border: 1px solid var(--stroke); border-radius: 16px; padding: 12px; box-shadow: var(--shadow); }
.ribbon-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.ribbon-title { margin: 0; font-family: "Playfair Display", serif; font-size: 18px; }
.ribbon-controls { display: flex; gap: 6px; }
.ribbon-btn { background: #ffffff10; color: var(--text); border: 1px solid var(--stroke); border-radius: 10px; width: 32px; height: 32px; display: grid; place-items: center; cursor: pointer; }
.ribbon-btn:hover { background: #ffffff18; }
.ribbon-track { display: grid; grid-auto-flow: column; grid-auto-columns: 220px; gap: 12px; overflow-x: auto; scroll-behavior: smooth; padding-bottom: 2px; }
.ribbon-track::-webkit-scrollbar { height: 8px; }
.ribbon-track::-webkit-scrollbar-thumb { background: #ffffff20; border-radius: 999px; }
.ribbon-card { position: relative; display: block; background: var(--panel); border: 1px solid var(--stroke); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.ribbon-card img { width: 100%; height: 140px; object-fit: cover; display: block; }
.ribbon-meta { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; font-size: 13px; color: var(--muted); }
.ribbon-card:hover .ribbon-meta strong { text-decoration: underline; }

@media (max-width: 900px) { 
  .ribbon-track { grid-auto-columns: 200px; }
  .ribbon-card img { height: 120px; }
}
@media (max-width: 560px) { 
  .ribbon-track { grid-auto-columns: 180px; }
  .ribbon-card img { height: 110px; }
}

/* Quick Peeks under hero */
.quick-peeks { display: none !important; }
.qp-header { display: flex; align-items: baseline; justify-content: space-between; margin: 10px 0 8px; }
.qp-header h3 { margin: 0; font-family: "Playfair Display", serif; font-size: 18px; }
.qp-link { color: var(--muted); font-size: 13px; }
.qp-link:hover { text-decoration: underline; }
.qp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.qp-card { display: block; border-radius: 12px; overflow: hidden; border: 1px solid var(--stroke); background: var(--panel); box-shadow: var(--shadow); }
.qp-card img { width: 100%; height: 120px; object-fit: cover; display: block; }
@media (max-width: 900px) { .hero-preview { height: 280px; } .qp-card img { height: 110px; } }
@media (max-width: 560px) { .hero-preview { height: 220px; } .qp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .qp-card img { height: 90px; } }

.actions { display: flex; gap: 12px; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 12px; border: 1px solid transparent; font-weight: 600; transition: transform .08s ease, background .25s ease, border-color .25s ease; }
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: linear-gradient(180deg, var(--primary), var(--primary-700)); color: #0f0f12; box-shadow: 0 10px 20px #ff5a7a33, inset 0 0 0 1px #0003; }
.btn.primary:hover { filter: saturate(1.1); }
.btn.ghost { background: transparent; border-color: #ffffff30; color: var(--text); }
.btn.ghost:hover { background: #ffffff10; }
/* Small button variant */
.btn.small { padding: 8px 12px; font-size: 13px; border-radius: 10px; }
/* XL call-to-action variant */
.btn.xl { padding: 14px 22px; font-size: 16px; border-radius: 14px; }

/* Cards / Gallery */
.gallery-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; 
  padding: 20px 0;
}

.card { 
  position: relative;
  border-radius: 20px; 
  overflow: hidden; 
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: zoom-in;
  background: var(--panel);
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  border-color: rgba(255, 90, 122, 0.3);
}

.card img { 
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all 0.4s ease;
}

.card:hover img {
  transform: scale(1.03);
  filter: brightness(1.05) contrast(1.1);
}

.card figcaption { 
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.5px;
}

.card:hover figcaption {
  transform: translateY(0);
}

/* Gallery Section Styling */
#gallery {
  padding: 80px 0 100px;
  position: relative;
}

#gallery .section-title {
  font-size: clamp(32px, 4vw, 48px);
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  position: relative;
}

#gallery .section-subtitle {
  text-align: center;
  font-size: 18px;
  margin-top: 16px;
  color: var(--muted);
}

/* Enhanced Lightbox */
.lightbox { 
  position: fixed; 
  inset: 0; 
  background: rgba(0,0,0,.85); 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 40px;
}

.lightbox:not([hidden]) { 
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  display: flex;
  gap: 20px;
  max-width: 95vw;
  max-height: 90vh;
  width: 100%;
  align-items: center;
}

.lightbox-description {
  flex: 0 0 300px;
  position: relative;
  max-height: 80vh;
  overflow: visible;
}

.lightbox-description::before,
.lightbox-description::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: 
    radial-gradient(circle at center, #8B7355 0%, #6B5B47 30%, #4A3F35 70%, #2D251C 100%);
  border-radius: 50%;
  box-shadow: 
    inset 0 2px 4px rgba(255,255,255,0.3),
    inset 0 -2px 4px rgba(0,0,0,0.4),
    0 4px 8px rgba(0,0,0,0.3);
  z-index: 2;
}

.lightbox-description::before {
  top: -15px;
}

.lightbox-description::after {
  bottom: -15px;
}

.scroll-content {
  background: 
    linear-gradient(135deg, #F4F1E8 0%, #E8E2D5 20%, #DDD4C0 40%, #E8E2D5 60%, #F4F1E8 100%);
  border: 2px solid #8B7355;
  border-radius: 20px;
  padding: 40px 30px 30px;
  max-height: calc(80vh - 30px);
  overflow-y: auto;
  position: relative;
  box-shadow: 
    0 20px 40px rgba(0,0,0,.4),
    inset 0 1px 3px rgba(255,255,255,0.5),
    inset 0 -1px 3px rgba(0,0,0,0.2);
}

.scroll-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      rgba(139, 115, 85, 0.1) 1px,
      transparent 2px,
      transparent 25px
    );
  pointer-events: none;
  border-radius: 18px;
}

.scroll-content h3 {
  color: #5D4E37;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px 0;
  font-family: "Playfair Display", serif;
  text-align: center;
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
  position: relative;
}

.scroll-content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8B7355, transparent);
}

.scroll-content p {
  color: #3D2F1F;
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
  font-family: "Times New Roman", serif;
  text-align: justify;
  hyphens: auto;
}

.scroll-content::-webkit-scrollbar {
  width: 8px;
}

.scroll-content::-webkit-scrollbar-track {
  background: rgba(139, 115, 85, 0.2);
  border-radius: 4px;
}

.scroll-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8B7355, #6B5B47);
  border-radius: 4px;
  border: 1px solid #5D4E37;
}

.scroll-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #6B5B47, #5D4E37);
}

.lightbox-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox img { 
  max-width: 100%;
  max-height: 80vh; 
  border-radius: 16px; 
  box-shadow: 0 25px 60px rgba(0,0,0,.6);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  object-fit: contain;
}

.lightbox:not([hidden]) img {
  transform: scale(1);
}

.lightbox-close { 
  position: fixed; 
  top: 30px; 
  right: 30px; 
  font-size: 32px; 
  line-height: 1; 
  background: rgba(0,0,0,0.5); 
  color: white; 
  border: none; 
  border-radius: 50%; 
  width: 50px;
  height: 50px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

/* Responsive Lightbox */
@media (max-width: 1024px) {
  .lightbox-content {
    flex-direction: column;
    gap: 15px;
    max-height: 95vh;
  }
  
  .lightbox-description {
    flex: none;
    width: 100%;
    max-width: 600px;
    max-height: 250px;
    order: 2;
  }
  
  .lightbox-image-container {
    order: 1;
    max-height: 60vh;
  }
  
  .scroll-content {
    padding: 30px 25px 25px;
    max-height: 220px;
  }
  
  .scroll-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .lightbox {
    padding: 15px;
  }
  
  .lightbox-content {
    gap: 10px;
    max-height: 98vh;
  }
  
  .lightbox-description {
    flex: 0 0 200px;
    max-height: 200px;
    max-width: 100%;
  }
  
  .lightbox-description::before,
  .lightbox-description::after {
    width: 25px;
    height: 25px;
  }
  
  .lightbox-description::before {
    top: -12px;
  }
  
  .lightbox-description::after {
    bottom: -12px;
  }
  
  .scroll-content {
    padding: 25px 20px 20px;
    max-height: 170px;
    border-radius: 15px;
  }
  
  .scroll-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .scroll-content p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .lightbox-image-container {
    max-height: 50vh;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .lightbox {
    padding: 10px;
  }
  
  .lightbox-content {
    gap: 8px;
  }
  
  .lightbox-description {
    flex: 0 0 160px;
    max-height: 160px;
  }
  
  .lightbox-description::before,
  .lightbox-description::after {
    width: 20px;
    height: 20px;
  }
  
  .lightbox-description::before {
    top: -10px;
  }
  
  .lightbox-description::after {
    bottom: -10px;
  }
  
  .scroll-content {
    padding: 20px 15px 15px;
    max-height: 130px;
    border-radius: 12px;
  }
  
  .scroll-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .scroll-content p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .lightbox-image-container {
    max-height: 45vh;
  }
  
  .lightbox-close {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}

@media (max-width: 900px) { 
  .hero { min-height: 90vh; padding-bottom: 80px; }
  .hero-inner { grid-template-columns: 1fr; } 
  .hero-preview { order: -1; height: 280px; } 
  .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
  .card img { height: 220px; }
  #gallery { padding: 60px 0 80px; }
  /* About section mobile fixes */
  .about-layout { 
    grid-template-columns: 1fr; 
    gap: 28px; 
    justify-items: center;
    align-items: start;
    place-items: center;
    justify-content: center;
  }
  .about-section .section-header { text-align: center; }
  /* Center the about containers with a local max width */
  .about-section .container { width: min(680px, calc(100% - 32px)); margin-inline: auto; }
  .about-section .about-layout { width: min(680px, 100%); margin-inline: auto; }
  .about-layout > * { justify-self: center; width: 100%; }
  .about-main, .about-sidebar { width: 100%; max-width: 640px; margin-inline: auto; }
  .about-main { display: flex; flex-direction: column; align-items: center; }
  .artist-card, .facts-card, .contact-card, .video-card, .achievements-card { width: 100%; margin-inline: auto; }
  .intro-layout { flex-direction: column; align-items: center; text-align: center; }
  .about-main { align-items: center; }
  .artist-card, .facts-card, .contact-card, .achievements-card { text-align: center; }
  .intro-image { margin: 0 auto; }
  .about-section .intro-badge,
  .about-section .artist-card,
  .about-section .contact-card,
  .about-section .facts-card,
  .about-section .achievements-card { margin-left: auto; margin-right: auto; }
  .intro-content { width: 100%; max-width: 560px; text-align: center; margin-inline: auto; }
  .intro-badge { margin-inline: auto; }
  .social-platforms { justify-content: center; }
  /* About section mobile fixes */
  .about-layout { 
    grid-template-columns: 1fr; 
    gap: 32px; 
  }
  .about-sidebar {
    order: -1;
  }
  .intro-layout {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  .intro-image {
    width: 140px;
  }
  .intro-image img {
    height: 175px;
  }
  
  .social-platforms {
    justify-content: center;
  }
  .artist-card,
  .facts-card,
  .contact-card,
  .video-card,
  .achievements-card {
    padding: 24px;
  }
}

@media (max-width: 560px) { 
  .video-card {
    visibility: hidden;
    display: none;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .card img { height: 250px; }
  .hero { min-height: 85vh; }
  /* About section small mobile centering */
  .about-layout { justify-items: center !important; place-items: center !important; } 
  .about-section .container { width: min(560px, calc(100% - 28px)); margin-inline: auto; }
  .about-section .about-layout { width: min(560px, 100%); margin-inline: auto; }
  .about-layout > * { justify-self: center !important; width: 100% !important; }
  .about-main, .about-sidebar { max-width: 560px !important; margin-inline: auto !important; align-items: center !important; justify-content: center !important; }
  .artist-card, .facts-card, .contact-card, .video-card, .achievements-card { width: 100% !important; max-width: 540px !important; margin-inline: auto !important; }
  .about-main { display: flex; flex-direction: column; align-items: center !important; }
  .intro-image { width: 120px; margin: 0 auto; }
  .intro-content { max-width: 520px; text-align: center; margin-inline: auto; }
  .intro-text { text-align: center; }
  .intro-badge { margin-inline: auto; }
  .contact-card .email-section { text-align: center; }
  /* Section padding for small mobile */
  .section {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 20px;
  }
  
  /* About section small mobile */
  .about-layout {
    gap: 20px !important;
  }
  
  .about-main {
    gap: 20px !important;
  }
  
  .about-sidebar {
    gap: 20px !important;
  }
  
  .intro-layout {
    gap: 16px !important;
  }
  
  .intro-image {
    width: 120px !important;
  }
  
  .intro-image img {
    height: 150px !important;
  }
  
  .artist-card,
  .facts-card,
  .contact-card,
  .video-card,
  .achievements-card {
    padding: 20px !important;
  }
  
  .intro-badge {
    font-size: 13px;
    padding: 8px 14px;
  }
  
  .intro-text {
    font-size: 15px;
  }
  
  .card-title {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }
  
  .fact-item {
    padding: 12px !important;
  }
  
  .fact-text {
    font-size: 14px !important;
  }
  
  .email-btn {
    padding: 10px 18px !important;
    font-size: 14px !important;
  }
  
  .timeline-item {
    padding: 12px !important;
  }
  
  .chip {
    padding: 6px 10px !important;
    font-size: 14px !important;
    margin-right: 6px !important;
    margin-top: 6px !important;
  }
  
  /* Typography adjustments for mobile */
  .section-title {
    font-size: 28px !important;
    margin-bottom: 12px !important;
  }
  
  .section-subtitle {
    font-size: 16px !important;
  }
}

/* Commissions */
.commission-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: start; }
.packages { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.package { background: linear-gradient(180deg, #181a20, #14161a); border: 1px solid var(--stroke); border-radius: 14px; padding: 16px; position: relative; overflow: hidden; }
.package::after { content: ""; position: absolute; inset: -1px; background: conic-gradient(from 220deg, transparent 0 70%, #ffffff08 75%, transparent 80%); pointer-events: none; }
.package .price { font-size: 22px; font-weight: 700; margin: 10px 0; }
.package .features { margin: 0; padding-left: 18px; color: var(--muted); }
.package .package-actions { margin-top: auto; display: flex; }
.package .package-actions .btn.small { margin-top: 10px; }
/* Paint-style bullets */
.package .features li { position: relative; list-style: none; padding-left: 12px; }
.package .features li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 7px; height: 7px; border-radius: 2px; transform: rotate(18deg);
  background: linear-gradient(135deg, var(--accent), var(--primary)); box-shadow: 0 0 0 1px #0006;
}
.package.featured { outline: 2px dashed #ffffff33; outline-offset: 4px; box-shadow: 0 0 0 6px #ff5a7a22; }

.commission-form { background: var(--panel); border: 1px solid var(--stroke); border-radius: 14px; padding: 16px; box-shadow: var(--shadow); }
.commission-form.highlight { animation: pulseGlow .9s ease; }
@keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 #ff5a7a55; } 70% { box-shadow: 0 0 0 10px #ff5a7a00; } 100% { box-shadow: var(--shadow); } }
.form-row { display: grid; gap: 6px; margin-bottom: 12px; }
label { font-weight: 600; font-size: 14px; }
input, select, textarea { background: #0f1217; color: var(--text); border: 1px solid #ffffff1a; border-radius: 10px; padding: 10px 12px; font: inherit; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px #7dd3fc33; }

@media (max-width: 1024px) { .packages { grid-template-columns: 1fr; } .commission-layout { grid-template-columns: 1fr; } }

/* About Section - Clean & Organized */


.about-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

/* Left Column - Main Content */
.about-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Card Base Styles */
.artist-card,
.facts-card,
.contact-card,
.video-card,
.achievements-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
  font-family: "Playfair Display", serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Artist Card */
.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(255, 90, 122, 0.25);
}

.intro-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.intro-image {
  flex-shrink: 0;
  width: 160px;
}

.intro-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--stroke);
}

.intro-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intro-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

.highlight-text {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.coffee-emoji {
  font-size: 18px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-3px); }
  60% { transform: translateY(-2px); }
}

/* Contact Card */
.social-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.email-section {
  border-top: 1px solid var(--stroke);
  padding-top: 24px;
  text-align: center;
}

.email-text {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 16px;
}

.email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-2), #f59e0b);
  color: #1f2937;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.25);
}

.email-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 204, 21, 0.35);
}

/* Right Sidebar */
.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Video Card */


.video-header {
  text-align: center;
  margin-bottom: 75px;
}

.video-title {
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

.video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

/* Achievements Card */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.timeline-year {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
  min-width: 50px;
}

.timeline-content h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.timeline-content p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* Chips */
.chip { display: inline-flex; align-items: center; gap: 8px; background: var(--chip); border: 1px solid var(--stroke); padding: 8px 12px; border-radius: 999px; margin-right: 8px; margin-top: 8px; }

/* Footer */
.site-footer { border-top: 1px solid var(--stroke); padding: 24px 0 40px; color: var(--muted); text-align: center; }

/* Make Custom Art section more prominent */
#commissions.section { padding: 100px 0; }
#commissions .section-header .section-title { font-size: clamp(32px, 4vw, 48px); }
#commissions .actions { gap: 16px; }

/* Bottom marquee (above footer) */
.bottom-marquee { 
  padding: 14px 0 6px; 
  background: transparent; 
  /* full-bleed and edge fade */
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.bottom-marquee .container { width: 100%; max-width: none; padding: 0; }
.bm-track { display: inline-flex; gap: 10px; white-space: nowrap; }
.bottom-marquee .bm-track { animation: none; will-change: transform; }
@keyframes bmSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Softer chips inside marquee only */
.bottom-marquee .chip { 
  border-color: transparent; 
  background: #ffffff0f; 
  color: #cfd6e3; 
  box-shadow: none; 
}

/* If marquee is above footer, hide the footer border to avoid stacked lines */
.bottom-marquee + .site-footer { border-top-color: transparent; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(5,6,8,.72); display: grid; place-items: center; z-index: 100; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 80vh; border-radius: 12px; box-shadow: var(--shadow); }
.lightbox figcaption { margin-top: 10px; color: var(--muted); text-align: center; }
.lightbox-close { position: fixed; top: 20px; right: 20px; font-size: 28px; line-height: 1; background: #ffffff10; color: var(--text); border: 1px solid var(--stroke); border-radius: 10px; padding: 6px 10px; cursor: pointer; }

/* ==========================
   Animations & Interactions
   ========================== */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Sticky header shadow when scrolled */
.site-header.scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.35); }

/* Buttons hover micro-lift */
.btn { will-change: transform; }
.btn:hover { transform: translateY(-2px); }

/* Card hover lift */
.card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; will-change: transform; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.45); border-color: #ffffff22; }

/* Package subtle hover */
.package { transition: transform .25s ease, box-shadow .25s ease; }
.package:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.45); }

/* Logo shimmer */
.logo-mark { position: relative; overflow: hidden; }
.logo-mark::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 40%, #fff8 50%, transparent 60%); transform: translateX(-120%); }
.logo:hover .logo-mark::before { animation: shine 1.2s ease; }
@keyframes shine { to { transform: translateX(120%); } }

/* Hero splash gentle float */
.paint-splash { transform: translateY(0) scale(1); transition: transform .6s cubic-bezier(.2,.8,.2,1); will-change: transform; }
.paint-splash.float { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-8px) scale(1.01); } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; transition-delay: var(--d, 0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Lightbox open/close transitions */
.lightbox { opacity: 0; transition: opacity .25s ease; }
.lightbox.open { opacity: 1; }
.lightbox img { transform: scale(.98); transition: transform .3s ease; }
.lightbox.open img { transform: scale(1); }

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover, .card:hover, .package:hover { transform: none; }
  .paint-splash.float { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .lightbox, .lightbox img { transition: none !important; }
}

/* =====================================
   Painty styling for Commissions section
   ===================================== */
.section.painty { position: relative; }
.section.painty .section-header { position: relative; z-index: 1; }
.section.painty .section-title { position: relative; display: inline-block; padding-bottom: 10px; }
.section.painty .section-title::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%) rotate(-1deg); bottom: -6px; width: min(220px, 60vw); height: 14px; opacity: .75;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 40" preserveAspectRatio="none"><defs><linearGradient id="g" x1="0" y1="0" x2="1" y2="0"><stop offset="0" stop-color="%23ff5a7a"/><stop offset="1" stop-color="%237dd3fc"/></linearGradient></defs><path d="M3 28C40 20 80 30 120 26s80-22 120-22c30 0 48 8 56 10-8 4-18 10-38 12-40 4-82 6-126 10-22 2-44 0-64-2-20-2-44-6-68-8z" fill="url(%23g)" opacity="0.9"/></svg>') center/100% 100% no-repeat;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
}

/* Premium Commission Panel */
.premium-commission .commission-premium { 
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: center; 
  background: linear-gradient(180deg, #16171c, #13141a); 
  border: 1px solid var(--stroke); 
  border-radius: 16px; 
  padding: 20px; 
  position: relative; 
  box-shadow: var(--shadow);
}
.premium-commission .commission-premium::before { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: 16px; background: linear-gradient(180deg, transparent, #ffffff06 50%, transparent); }
.premium-commission .cp-left { position: relative; z-index: 1; }
.premium-commission .cp-badge { display: inline-block; padding: 6px 10px; border-radius: 999px; background: #ffffff10; border: 1px solid var(--stroke); color: var(--text); font-weight: 700; font-size: 11px; }
.premium-commission .cp-title { margin: 12px 0 10px; font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; letter-spacing: .2px; }
.premium-commission .commission-points { margin: 12px 0 18px; padding-left: 0; list-style: none; color: var(--muted); }
.premium-commission .commission-points li { position: relative; padding-left: 16px; margin: 6px 0; }
.premium-commission .commission-points li::before { content: ""; position: absolute; left: 0; top: .7em; width: 7px; height: 7px; border-radius: 2px; background: linear-gradient(135deg, var(--accent), var(--primary)); opacity: .85; }
.premium-commission .cp-note { margin-top: 8px; }
.premium-commission .cp-right { height: 240px; border-radius: 14px; background:
  radial-gradient(120px 90px at 30% 30%, #ffffff08 0%, transparent 70%),
  radial-gradient(100px 80px at 70% 60%, #ffffff04 0%, transparent 70%),
  linear-gradient(180deg, #14151b, #111218);
  border: 1px solid var(--stroke);
  box-shadow: inset 0 0 0 1px #0003, 0 16px 32px rgba(0,0,0,.35);
}

@media (max-width: 900px) {
  .premium-commission .commission-premium { grid-template-columns: 1fr; }
  .premium-commission .cp-right { order: -1; height: 200px; }
}

/* Mobile polish for Custom Art */
@media (max-width: 720px) {
  #commissions .section-header { text-align: center; }
  .premium-commission .commission-premium { padding: 16px; gap: 16px; border-radius: 14px; }
  .premium-commission .cp-title { font-size: clamp(20px, 5.2vw, 24px); }
  .premium-commission .commission-points { font-size: 14px; line-height: 1.55; }
  .premium-commission .cp-right { height: 170px; margin-bottom: 6px; }
  .premium-commission .cp-badge { font-size: 10px; padding: 5px 8px; }
  .premium-commission .commission-premium .actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .premium-commission .commission-premium .actions .btn { width: 100%; }
}

@media (max-width: 420px) {
  .premium-commission .commission-premium .actions { grid-template-columns: 1fr; }
  .premium-commission .cp-right { height: 150px; }
}

/* Prevent inner scrolling within images/cards on touch devices */
img { -webkit-user-drag: none; user-select: none; touch-action: pan-y; }
.card, .ribbon-card, .intro-image, .video-wrapper { overflow: hidden; }
@media (max-width: 720px) {
  .gallery-grid .card { overflow: hidden; }
  .gallery-grid .card img { display: block; width: 100%; height: auto; }
}

/* Layout polish */
.commission-layout { position: relative; z-index: 1; align-items: stretch; }
.packages { align-self: stretch; }
.packages .package { height: 100%; display: flex; flex-direction: column; justify-content: flex-start; }
.packages .package h3 { margin-top: 0; }

/* Brush borders for packages */
.package { border-width: 2px; border-style: solid; border-color: #ffffff12; position: relative; }
.package::before { content: ""; position: absolute; inset: -8px; border-radius: 18px; pointer-events: none; opacity: .4; filter: blur(.2px);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M8 18c14-8 30-8 46-10 16-2 32-4 40 2 6 4 6 12-2 18s-22 10-36 16-28 12-40 16-22 6-12 12 30 8 46 8 34-2 40-8 2-14-6-18-20-4-30-8-18-12-28-16-20-2-18-12z" fill="none" stroke="%23ffffff22" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/180% 180% no-repeat;
}
.package.featured { border-color: #ff5a7a55; box-shadow: 0 0 0 6px #ff5a7a22, 0 18px 40px rgba(0,0,0,.45); }
.package.featured::before { opacity: .55; }

/* Brush accent for the commission form */
.commission-form { position: relative; }
.commission-form::before { content: ""; position: absolute; top: -10px; left: -10px; width: 140px; height: 36px; transform: rotate(-2deg); opacity: .9; pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 80" preserveAspectRatio="none"><defs><linearGradient id="gg" x1="0" y1="0" x2="1" y2="0"><stop offset="0" stop-color="%23facc15"/><stop offset="1" stop-color="%23ff5a7a"/></linearGradient></defs><path d="M6 46c20-10 48-18 78-24 30-6 62-10 98-12 18-2 40-2 52 4-8 8-26 14-44 18-30 6-66 10-98 16-22 4-44 8-66 12 6-6 14-10 22-14-14 0-28 0-42 0z" fill="url(%23gg)"/></svg>') center/100% 100% no-repeat;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.45));
}

/* Inputs subtle texture */
input, select, textarea { background-image: radial-gradient(50% 20% at 20% 10%, #ffffff08 0%, transparent 60%); }

/* Responsive tweaks */
@media (max-width: 1024px) {
  .packages { margin-bottom: 6px; }
}
