@import "https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600;700;800&display=swap";

:root {
  --black: #050505;
  --white: #fff;
  --bg-main: #050505;
  --bg-card: #121212;
  --accent: #9ab07e;
  --accent-light: #9ab07e26;
  --accent-dark: #556b2f;
  --accent-glow: #9ab07e14;
  --coral: #8fa673;
  --olive: #9ab07e;
  --olive-muted: #1e2418;
  --gray-900: #121212;
  --gray-800: #1a1a1a;
  --gray-700: #333;
  --gray-600: #4c4c4c;
  --gray-500: #666;
  --gray-400: gray;
  --gray-300: #999;
  --gray-200: #b3b3b3;
  --gray-100: #ccc;
  --gray-50: #e6e6e6;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --text-display: clamp(2.5rem, 8vw, 6.5rem);
  --text-h1: clamp(2rem, 6vw, 4rem);
  --text-h2: clamp(1.6rem, 4vw, 2.8rem);
  --text-h3: clamp(1.3rem, 3vw, 2rem);
  --text-h4: clamp(1.05rem, 2vw, 1.4rem);
  --text-body: 1rem;
  --text-small: .88rem;
  --transition-fast: .25s cubic-bezier(.25, 1, .5, 1);
  --transition-normal: .5s cubic-bezier(.25, 1, .5, 1);
  --transition-slow: .9s cubic-bezier(.16, 1, .3, 1);
  --shadow-sm: 0 4px 15px #0003;
  --shadow-md: 0 10px 30px #0000004d;
  --shadow-lg: 0 20px 45px #0006;
  --shadow-float: 0 30px 60px #00000080;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
}

/* ==========================================================================
   1. MOBILE-FIRST BASE STYLES (< 768px default)
   ========================================================================== */

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

html {
  scroll-behavior: auto;
  background-color: var(--bg-main);
  font-size: 15px;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: .01em;
  color: var(--white);
  font-weight: 500;
  line-height: 1.25;
}

.display-text {
  font-size: var(--text-display);
  letter-spacing: -.02em;
  font-weight: 400;
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); }

p {
  color: var(--gray-200);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

a {
  color: inherit;
  transition: color var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
}

img, picture, video, canvas, svg {
  border-radius: var(--radius-md);
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

::selection {
  background-color: var(--accent);
  color: var(--white);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--gray-500); border-radius: var(--radius-pill); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Base Container & Page Sections - Mobile First */
.container, .container-narrow, .container-wide, .container-fluid {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-padding { padding: 3.5rem 0; }
.section-padding-top { padding-top: 3.5rem; }
.section-padding-bottom { padding-bottom: 3.5rem; }

.about-page, .portfolio-page, .services-page, .contact-page, .workshop-page {
  scroll-margin-top: 100px;
}

/* Mobile First Grid & Flex System */
.grid {
  display: grid;
  gap: 1.75rem;
  width: 100%;
}

.grid-2, .grid-3, .grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  width: 100%;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-5 { gap: 2.5rem; }
.gap-6 { gap: 3rem; }
.wrap { flex-wrap: wrap; }

.split-layout, .split-50-50, .split-60-40, .split-40-60, .story-split-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.split-50-50 > *, .split-60-40 > *, .split-40-60 > * {
  flex: 1 1 100%;
  width: 100%;
}

.layout-sticky-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-sticky {
  width: 100%;
  position: static;
}

.layout-main-content { flex: 1; width: 100%; }

/* Meet the Artist Layout */
.artist-split-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.artist-media-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
}

/* Studio Gallery Grid */
.studio-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
}

.studio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--bg-card);
}

.studio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}

.studio-card:hover img {
  transform: scale(1.05);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

.filter-btn {
  background: rgba(255,255,255,0.05);
  font-family: var(--font-body);
  color: var(--gray-300);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  touch-action: manipulation;
}

.filter-btn:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.filter-btn.active {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
  font-weight: 600;
}

/* ==========================================================================
   FORM & MODAL INPUT STYLING - HIGH CONTRAST DARK THEME FIX
   ========================================================================== */

.form-group {
  margin-bottom: 1.25rem;
  width: 100%;
}

.form-label, label, .modal-content label {
  color: #ffffff !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  margin-bottom: 0.4rem !important;
  display: block !important;
  opacity: 0.95;
}

.form-input, .form-textarea, select, 
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], textarea {
  background-color: #1a1a1a !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  border-radius: var(--radius-md) !important;
  padding: 0.85rem 1.15rem !important;
  font-size: 0.95rem !important;
  font-family: var(--font-body) !important;
  width: 100% !important;
  transition: all var(--transition-fast) !important;
  box-shadow: none !important;
}

.form-input:focus, .form-textarea:focus, select:focus,
input:focus, textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(154, 176, 126, 0.25) !important;
  outline: none !important;
  background-color: #222222 !important;
}

select option {
  background-color: #121212 !important;
  color: #ffffff !important;
}

::placeholder, :-ms-input-placeholder, ::-webkit-input-placeholder {
  color: var(--gray-400) !important;
  opacity: 0.75 !important;
}

@media (max-width: 600px) {
  .form-split-grid, .form-row-2 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
}

/* Contact Grid Layout */
.contact-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Buttons & Touch Targets */
.btn {
  border-radius: var(--radius-pill);
  letter-spacing: .02em;
  font-size: .95rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  border: none;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  touch-action: manipulation;
  width: 100%;
}

.btn:active { transform: scale(.97); }

.btn-primary {
  background-color: var(--white);
  color: var(--black);
}

.btn-primary:hover {
  background-color: var(--accent);
  color: var(--black);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  color: var(--white);
  background-color: transparent;
  border: 1px solid #ffffff33;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--white);
  background-color: #ffffff14;
}

.btn-ghost {
  color: var(--accent);
  box-shadow: none;
  background: 0 0;
  padding: .5rem 1rem;
  width: auto;
}

.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

/* Navigation Bar - Mobile First */
.navbar {
  z-index: 1000;
  width: calc(100% - 1.5rem);
  max-width: 1400px;
  transition: all var(--transition-normal);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  color: var(--white);
  background: #0a0a0ae6;
  border: 1px solid #ffffff1a;
  padding: 0.75rem 1.25rem;
  position: fixed;
  top: 0.75rem;
  left: 50%;
  transform: translate(-50%);
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-brand {
  font-family: var(--font-heading);
  letter-spacing: -.01em;
  font-size: 1.25rem;
  font-weight: 600;
}

.nav-logo-sub {
  font-family: var(--font-body);
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .7;
  font-size: .55rem;
  display: block;
}

.nav-links { display: none; }

.hamburger {
  cursor: pointer;
  z-index: 1001;
  color: var(--white);
  background: 0 0;
  border: none;
  display: block;
  padding: .5rem;
  touch-action: manipulation;
}

.hamburger-line {
  background-color: currentColor;
  border-radius: 2px;
  width: 24px;
  height: 2px;
  margin: 4px 0;
  display: block;
}

/* Mobile Drawer Menu */
.mobile-menu {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 999;
  transition: transform var(--transition-normal);
  background: #050505fa;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
  transform: translate(100%);
  padding: 2rem 1.5rem;
}

.mobile-menu.open { transform: translate(0); }

.mobile-menu-inner {
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  display: flex;
  width: 100%;
}

.mobile-nav-links {
  text-align: center;
  flex-direction: column;
  gap: 1.25rem;
  display: flex;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color var(--transition-fast);
  font-size: 1.8rem;
  font-weight: 400;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--accent);
}

.mobile-menu-footer {
  gap: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.mobile-menu-footer a {
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .85rem;
}

/* Cards & Service Components */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #ffffff0d;
  overflow: hidden;
  width: 100%;
}

.service-card {
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  height: 340px;
  width: 100%;
}

.service-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform var(--transition-slow);
}

.service-card .overlay {
  color: var(--white);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 20%, rgba(5,5,5,0.95) 100%);
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  display: flex;
  position: absolute;
  inset: 0;
}

.service-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card:first-child, .service-card:nth-child(2),
.service-card:nth-child(3), .service-card:nth-child(4) {
  grid-column: 1 / -1;
  height: 340px;
}

/* Footer Section - Mobile First */
.footer {
  background-color: var(--white);
  color: var(--black);
  border-top: 1px solid var(--gray-100);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  display: grid;
}

.footer-heading {
  color: var(--black);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-links {
  flex-direction: column;
  gap: 0.75rem;
  display: flex;
}

.footer-link {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  color: var(--gray-500);
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.85rem;
  display: flex;
}

/* Stats Grid Mobile First */
.stats-grid {
  text-align: center;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  display: grid;
}

.stat-number {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  font-size: 0.75rem;
}

/* Instagram Grid Mobile First */
.instagram-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  display: grid;
}

.instagram-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.instagram-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Cart & Modal Overlays */
.cart-sidebar {
  background: var(--white);
  color: var(--black);
  z-index: 9999;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  transition: transform var(--transition-normal);
  flex-direction: column;
  display: flex;
  position: fixed;
  top: 0; right: 0;
  transform: translate(100%);
}

.cart-sidebar.open { transform: translate(0); }

/* Workshop & Details Grid */
.workshop-details-grid {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.75rem;
  display: grid;
  margin-top: 0;
}

.detail-item {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.shop-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.shop-sidebar { width: 100%; }
.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* ==========================================================================
   2. TABLET ENHANCEMENTS (>= 768px)
   ========================================================================== */

@media (min-width: 768px) {
  html { font-size: 16px; }

  .container, .container-narrow, .container-wide, .container-fluid {
    padding: 0 2.5rem;
  }

  .section-padding { padding: 5rem 0; }

  .btn { width: auto; }

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

  .split-50-50, .split-layout, .story-split-grid {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }

  .artist-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
  }

  .studio-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .workshop-details-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -3rem;
  }

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

  .product-detail-layout {
    grid-template-columns: 1fr 1fr;
  }

  .cart-sidebar {
    width: 420px;
    max-width: 90vw;
  }
}

/* ==========================================================================
   3. DESKTOP ENHANCEMENTS (>= 1024px)
   ========================================================================== */

@media (min-width: 1024px) {
  .container { max-width: 1400px; padding: 0 3.5rem; }
  .container-narrow { max-width: 850px; }
  .container-wide { max-width: 1600px; }

  .section-padding { padding: 7rem 0; }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
  }

  .hamburger { display: none; }

  .service-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }

  .service-card:first-child { grid-column: 1 / 8; height: 480px; }
  .service-card:nth-child(2) { grid-column: 8 / 13; height: 480px; }
  .service-card:nth-child(3) { grid-column: 1 / 6; height: 400px; }
  .service-card:nth-child(4) { grid-column: 6 / 13; height: 400px; }

  .studio-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .workshop-details-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .shop-layout {
    flex-direction: row;
    gap: 3.5rem;
  }

  .shop-sidebar { flex: 0 0 260px; }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }

  .layout-sticky-sidebar {
    flex-direction: row;
    gap: 3.5rem;
  }

  .sidebar-sticky {
    flex: 0 0 320px;
    position: sticky;
    top: 100px;
  }
}

/* -------------------------------------------------------------------------- */
/* LUXURY INITIAL WEBSITE LOADER & PAGE TRANSITION SYSTEM */
/* -------------------------------------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  max-width: 320px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-logo-text {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: -0.02em;
  display: block;
  animation: loaderPulse 2s ease-in-out infinite alternate;
}

.loader-logo-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gray-400);
  margin-top: 0.25rem;
}

@keyframes loaderPulse {
  0% { opacity: 0.6; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1.02); }
}

.loader-progress {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
  position: relative;
}

.loader-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #d4e157 100%);
  transition: width 0.4s ease;
  box-shadow: 0 0 12px var(--accent);
}

/* Page Transitions */
.page-exit {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.page-enter {
  opacity: 0;
  transform: translateY(12px);
}

.page-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Skeleton Image Loaders */
.skeleton-box {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.8s infinite;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* -------------------------------------------------------------------------- */
/* REUSABLE EXPANDABLE PORTFOLIO FOLDER DRAWER COMPONENT */
/* -------------------------------------------------------------------------- */
.expandable-folder-drawer {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg), 0 20px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.expandable-folder-drawer .drawer-collapsed-view {
  display: block;
  transition: opacity 0.35s ease;
}

.expandable-folder-drawer .drawer-expanded-view {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease, margin-top 0.45s ease;
  margin-top: 0;
}

.expandable-folder-drawer.is-open .drawer-expanded-view {
  max-height: 3000px;
  opacity: 1;
  margin-top: 2rem;
}

.folder-tab-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(154, 176, 126, 0.15);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.folder-expand-trigger-btn {
  background: var(--bg-main);
  border: 1px solid var(--accent);
  color: var(--white);
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.folder-expand-trigger-btn:hover {
  background: var(--accent);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(154, 176, 126, 0.3);
}

.folder-arrow-anim {
  font-size: 1.1rem;
  color: var(--accent);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  animation: drawerArrowBounce 1.8s infinite alternate ease-in-out;
}

.folder-expand-trigger-btn:hover .folder-arrow-anim {
  color: var(--black);
}

.expandable-folder-drawer.is-open .folder-arrow-anim {
  animation: none;
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .expandable-folder-drawer {
    padding: 1.25rem;
  }

  .folder-expand-trigger-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.88rem;
    width: 100%;
    justify-content: center;
  }
}

/* -------------------------------------------------------------------------- */
/* MOBILE-FIRST RESPONSIVE HERO & COMPACT CATALOG PREVIEW */
/* -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .hero-split-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .hero-info-col {
    text-align: center;
  }

  .hero-info-col p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-buttons {
    justify-content: center !important;
  }

  .display-text {
    font-size: clamp(2.1rem, 7vw, 3.2rem) !important;
    line-height: 1.15 !important;
  }

  #canvasFrame {
    height: 220px !important;
  }

  .page-hero {
    padding-top: 135px !important;
  }

  .home-page, .about-page, .portfolio-page, .services-page, .blog-page, .workshop-page, .shop-page, .contact-page {
    scroll-margin-top: 135px !important;
  }

  .asymmetric-col-2, .asymmetric-col-3 {
    transform: none !important;
  }

  .asymmetric-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  .painting-card {
    padding: 0.85rem !important;
  }

  .painting-card img {
    max-height: 180px !important;
    object-fit: cover !important;
  }
}

@media (max-width: 576px) {
  .asymmetric-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .hero-subtitle {
    font-size: 0.75rem !important;
    letter-spacing: 0.2em !important;
  }
}
