/* ============================================
   ANEERA ART STUDIOS — v3 Creative Immersive
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* ── Pigment-inspired palette ── */
  --color-primary: #D05538;          /* Vermillion — warm, bold, like cadmium red */
  --color-primary-dark: #B5432A;
  --color-primary-light: #E8795F;
  --color-secondary: #1E3A5F;        /* Indigo ink — deep, sophisticated */
  --color-secondary-light: #2B5080;
  --color-accent: #D4960A;           /* Saffron gold — rich, Indian, warm */
  --color-accent2: #3A8F6E;          /* Viridian green — calming, natural */
  --color-accent3: #8B4D7A;          /* Alizarin violet — artistic, muted */
  --color-bg: #FBF6EF;              /* Handmade paper cream */
  --color-bg-alt: #F3EADC;          /* Canvas beige */
  --color-bg-dark: #141820;          /* Charcoal slate */
  --color-surface: #FFFFFF;
  --color-text: #2A1F1A;             /* Warm near-black (like dried ink) */
  --color-text-light: #5E4F44;
  --color-text-lighter: #937E70;
  --color-border: #E6D8C8;           /* Warm parchment edge */
  --color-stars: #D4960A;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(42,31,26,0.06);
  --shadow-md: 0 8px 24px rgba(42,31,26,0.09);
  --shadow-lg: 0 16px 48px rgba(42,31,26,0.13);
  --shadow-glow: 0 0 40px rgba(208,85,56,0.18);
  --shadow-hover: 0 12px 32px rgba(208,85,56,0.18);

  --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: 0.2s ease;
  --max-width: 1240px;

  /* Gradient presets — watercolor washes, not neon */
  --grad-vibrant: linear-gradient(135deg, #D05538 0%, #D4960A 50%, #3A8F6E 100%);
  --grad-warm: linear-gradient(135deg, #D4960A, #D05538, #8B4D7A);
  --grad-sunset: linear-gradient(135deg, #D4960A 0%, #D05538 40%, #8B4D7A 70%, #1E3A5F 100%);
  --grad-candy: linear-gradient(135deg, #D05538, #D4960A);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  cursor: url('assets/brush-cursor.svg') 4 28, auto;
}

/* Keep pointer on interactive elements */
a, button, input, select, textarea, [onclick], iframe, .filter-btn {
  cursor: pointer !important;
}

@media (hover: none) {
  body { cursor: auto; }
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-primary-dark); }

::selection {
  background: var(--color-primary);
  color: #fff;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-left { text-align: left; }

/* Placeholder images */
.placeholder-img {
  background: linear-gradient(
    135deg,
    hsl(var(--hue, 330) 65% 68%),
    hsl(calc(var(--hue, 330) + 40) 60% 55%)
  );
  width: 100%;
  height: 100%;
  min-height: 200px;
}

/* ---------- Gradient text utility ---------- */
.gradient-text {
  background: var(--grad-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Paint blob decorations ---------- */
.paint-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-candy);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(208,85,56,0.25);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(208,85,56,0.35);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
  box-shadow: 0 4px 16px rgba(30,58,95,0.25);
}
.btn-secondary:hover {
  background: var(--color-secondary-light);
  border-color: var(--color-secondary-light);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(30,58,95,0.35);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.88rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(251, 246, 239, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(42,31,26,0.08);
  padding: 8px 0;
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--grad-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all var(--transition);
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-text-light);
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--grad-candy);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO — Full vibrant
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7DD3F0; /* Sky blue matching the banner */
  overflow: hidden;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   HERO — Artist's Collage / Mood Board
   Photos scattered like polaroids on a table,
   logo center, girl painting at the edge.
   ═══════════════════════════════════════════ */
.hero-clothesline {
  background: #89e2fd;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 70px 24px 60px;
}

/* Center block: logo */
.hero-clothesline .hero-center {
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-clothesline .hero-logo-img {
  width: 100%;
  max-width: 640px;
  height: auto;
}

/* ═══════════════════════════════════
   CLOTHESLINE — Photos hanging on a rope
   ═══════════════════════════════════ */
.clothesline {
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  height: 240px;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 0 40px;
}

/* The rope */
.rope {
  position: absolute;
  top: 0;
  left: 3%;
  right: 3%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #6B4226 5%, #8B6242 50%, #6B4226 95%, transparent 100%);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Each hanging photo */
.hanging-photo {
  position: relative;
  flex-shrink: 0;
  padding-top: 18px; /* space for clip */
  transform-origin: top center;
  transition: transform 0.4s ease;
  z-index: 2;
}

.hanging-photo img {
  width: 140px;
  height: 120px;
  object-fit: cover;
  display: block;
  border: 4px solid #fff;
  border-bottom-width: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  border-radius: 2px;
}

.hanging-photo:hover {
  transform: scale(1.12) rotate(0deg) !important;
  z-index: 20;
}

.hanging-photo:hover img {
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

/* Clothespin / clip */
.clip {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 22px;
  z-index: 3;
}

.clip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 20px;
  background: linear-gradient(180deg, #C9A96E 0%, #A8834A 100%);
  border-radius: 3px 3px 1px 1px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.clip::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 4px;
  background: #8B6914;
  border-radius: 1px;
}

/* Individual photo sway — each at different angle & speed */
.hp-1 {
  animation: sway1 4s ease-in-out infinite;
}
.hp-2 {
  animation: sway2 4.5s ease-in-out infinite 0.3s;
}
.hp-3 {
  animation: sway1 3.8s ease-in-out infinite 0.7s;
}
.hp-4 {
  animation: sway2 4.2s ease-in-out infinite 1s;
}
.hp-5 {
  animation: sway1 3.6s ease-in-out infinite 0.5s;
}

@keyframes sway1 {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

@keyframes sway2 {
  0%, 100% { transform: rotate(2deg); }
  50% { transform: rotate(-4deg); }
}

/* ── Warm lighting glow — cozy studio feel ── */
.warm-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(255,220,160,0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Scroll indicator */
.hero-clothesline .hero-scroll {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.hero-clothesline .hero-scroll span { color: rgba(0,0,0,0.3); }
.hero-clothesline .hero-scroll svg { color: rgba(0,0,0,0.3); }

/* ── Tablet ── */
@media (max-width: 1024px) {
  .clothesline { gap: 20px; padding: 0 24px; }
  .hanging-photo img { width: 120px; height: 100px; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero-clothesline { padding: 80px 16px 60px; }
  .hero-clothesline .hero-logo-img { max-width: 85%; }
  .clothesline { gap: 12px; padding: 0 12px; bottom: 5%; }
  .hanging-photo img { width: 90px; height: 75px; border-bottom-width: 12px; }
}

@media (max-width: 480px) {
  .clothesline { gap: 8px; padding: 0 8px; }
  .hanging-photo img { width: 65px; height: 55px; border-width: 3px; border-bottom-width: 10px; }
  .clip::before { width: 8px; height: 16px; }
}

/* (Banner hero uses image, no gradient blobs needed) */

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

/* (Hero content is now in the banner image itself) */

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* (Hero CTA styles are on .hero-banner .hero-cta) */

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  color: rgba(255,255,255,0.5);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.reels-section {
  z-index: 1;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-bg-dark);
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--grad-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-dark .section-title { color: #fff; }

.section-desc {
  font-size: 1.08rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.section-dark .section-desc { color: rgba(255,255,255,0.65); }

/* Section decorative blobs */
.section .section-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  pointer-events: none;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-btn.active {
  background: var(--grad-candy);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(232,69,107,0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: all var(--transition);
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

img.gallery-img {
  position: absolute;
  inset: 0;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,24,32,0.7), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.gallery-item.hidden {
  display: none;
}

.instagram-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 2px solid var(--color-border);
}

.instagram-cta p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-weight: 500;
}

/* ---------- Reel cards in gallery ---------- */
.reel-item {
  aspect-ratio: 9/16;
}

.reel-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(20,24,32,0.3);
  transition: background var(--transition);
}

.reel-item:hover .reel-play-overlay {
  background: rgba(20,24,32,0.55);
}

.reel-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
}

.reel-item:hover .reel-play-btn {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(208,85,56,0.4);
}

.reel-play-btn svg { margin-left: 3px; }

.reel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ============================================
   REELS CAROUSEL — Auto-playing section
   ============================================ */
.reels-section {
  padding: 100px 0;
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.reels-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(208,85,56,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(212,150,10,0.1) 0%, transparent 50%);
}

.reels-section .section-header {
  position: relative;
  z-index: 1;
}

.reels-section .section-title { color: #fff; }
.reels-section .section-desc { color: rgba(255,255,255,0.6); }

.reels-track-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* Fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.reels-track {
  display: flex;
  gap: 20px;
  padding: 0 24px;
  animation: reelsScroll 60s linear infinite;
  width: max-content;
}

.reels-track:hover {
  animation-play-state: paused;
}

@keyframes reelsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reels-track {
  animation-duration: 25s;
}

.reel-embed-card {
  flex-shrink: 0;
  width: 320px;
  height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: all var(--transition);
  position: relative;
}

.reel-embed-card:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 48px rgba(208,85,56,0.25);
}

.reel-embed-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.reels-cta {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.reels-cta .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.reels-cta .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

/* ============================================
   REEL MODAL
   ============================================ */
.reel-modal {
  position: fixed;
  inset: 0;
  background: rgba(20,24,32,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(8px);
}

.reel-modal.active {
  opacity: 1;
  pointer-events: all;
}

.reel-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: transform var(--transition);
}
.reel-modal-close:hover { transform: rotate(90deg); }

.reel-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 420px;
  padding: 16px;
}

.reel-modal-body iframe {
  width: 100%;
  max-width: 400px;
  height: 680px;
  border-radius: var(--radius-lg);
  background: #111;
}

.reel-open-ig {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}
.reel-open-ig:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

/* ============================================
   WORKSHOPS
   ============================================ */
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.workshop-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid var(--color-border);
  will-change: transform;
}

.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.workshop-img {
  position: relative;
  height: 220px;
}

.workshop-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--grad-candy);
  color: #fff;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(208,85,56,0.25);
}

.workshop-body {
  padding: 24px;
}

.workshop-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--color-text);
}

.workshop-desc {
  font-size: 0.92rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.65;
}

.workshop-details {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.workshop-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-text-light);
  background: var(--color-bg-alt);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.workshop-detail svg { flex-shrink: 0; }

.workshop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 2px solid var(--color-border);
}

.workshop-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--grad-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.workshop-note {
  text-align: center;
  margin-top: 48px;
  padding: 36px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--color-border);
}

.workshop-note p {
  color: var(--color-text-light);
  margin-bottom: 20px;
}

/* ============================================
   SUPPORT US
   ============================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.support-card {
  text-align: center;
  padding: 44px 28px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.support-card.featured {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, rgba(208,85,56,0.04) 0%, var(--color-surface) 100%);
}

.support-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-candy);
  color: #fff;
  padding: 5px 20px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(208,85,56,0.25);
}

.support-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  filter: saturate(1.4);
}

.support-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.support-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--grad-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.support-card p:last-of-type {
  color: var(--color-text-light);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.support-custom {
  text-align: center;
  padding: 36px;
  background: linear-gradient(135deg, rgba(232,69,107,0.04), rgba(139,92,246,0.04));
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
}

.support-custom p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.custom-amount-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.input-group {
  display: flex;
  align-items: center;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0 20px;
  transition: border-color var(--transition);
}

.input-group:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(208,85,56,0.1);
}

.input-prefix {
  font-weight: 700;
  color: var(--color-primary);
  margin-right: 8px;
  font-size: 1.15rem;
}

.input-group input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 0;
  width: 140px;
  color: var(--color-text);
}

/* ============================================
   ABOUT
   ============================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 3px solid transparent;
  background: var(--grad-candy) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.about-placeholder {
  min-height: 480px;
  border-radius: var(--radius-xl);
}

.about-text .section-tag { text-align: left; }
.about-text .section-title { text-align: left; }

.about-text p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 1.04rem;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 2px solid var(--color-border);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--color-surface);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--color-border);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--color-stars);
  font-size: 1.15rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-card > p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  min-height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--color-text-lighter);
}

/* Google source badge */
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--color-text-lighter);
  margin-top: 4px;
}

.review-source svg { flex-shrink: 0; }

/* Review CTA */
.review-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--color-border);
}

.review-cta p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-weight: 500;
}

/* Overall rating badge */
.rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  padding: 20px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.rating-badge-score {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.rating-badge-stars {
  color: var(--color-stars);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-badge-count {
  font-size: 0.82rem;
  color: var(--color-text-lighter);
}

.rating-badge-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text-lighter);
  font-weight: 500;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--color-surface);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.form-group { margin-bottom: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(208,85,56,0.08);
}

.form-group textarea { resize: vertical; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(208,85,56,0.08), rgba(212,150,10,0.08));
  border-radius: var(--radius-md);
  color: var(--color-primary);
}

.contact-item strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 3px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Map */
.contact-map {
  margin-bottom: 20px;
}

.contact-map strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.map-wrapper {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--color-border);
  transition: all var(--transition);
}

.map-wrapper:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.map-overlay-link {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(20,24,32,0.85), transparent);
  padding: 24px 16px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(208,85,56,0.06), rgba(212,150,10,0.06));
  color: var(--color-text-light);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--grad-candy);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(208,85,56,0.25);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 24px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-sunset);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand .logo-text {
  -webkit-text-fill-color: #fff;
  -webkit-background-clip: unset;
  background-clip: unset;
  background: none;
}

.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }

.footer-tagline {
  margin-top: 8px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  animation: none;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,24,32,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: transform var(--transition);
}
.lightbox-close:hover { transform: rotate(90deg); }

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lightbox-img img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

/* ============================================
   BOOKING MODAL
   ============================================ */
.booking-modal, .success-modal {
  position: fixed;
  inset: 0;
  background: rgba(20,24,32,0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}

.booking-modal.active, .success-modal.active {
  opacity: 1;
  pointer-events: all;
}

.booking-modal-content, .success-modal-content {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  max-height: 90vh;
  overflow-y: auto;
}

.booking-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-text-lighter);
  cursor: pointer;
  line-height: 1;
}

.booking-modal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.booking-subtitle {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.booking-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin: 8px 0 16px;
  border-top: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
  font-weight: 600;
}

.booking-total {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

.booking-secure {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-lighter);
  margin-top: 12px;
}

/* Success modal */
.success-modal-content {
  text-align: center;
  max-width: 400px;
}

.success-icon {
  margin-bottom: 16px;
}

.success-modal-content h3 {
  color: #3A8F6E;
  margin-bottom: 8px;
}

.success-id {
  font-family: monospace;
  font-size: 0.82rem;
  color: var(--color-text-lighter);
  background: var(--color-bg-alt);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin: 8px 0;
}

.success-note {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 8px;
}

/* (Scroll reveal styles are now in the parallax section above) */

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  gap: 14px;
}

.paint-drop {
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: var(--c);
  animation: paintBounce 1.2s var(--d) ease-in-out infinite;
}

@keyframes paintBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-28px) scale(1.1); }
  50% { transform: translateY(0) scale(0.9, 1.15); }
  65% { transform: translateY(-8px) scale(1.05); }
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 3px;
}

/* ============================================
   SCROLL PROGRESS BRUSH STROKE
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--grad-sunset);
  z-index: 1100;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(208,85,56,0.3);
  transition: width 0.05s linear;
}

/* ============================================
   PAINT BRUSH TRAIL CANVAS
   ============================================ */
.cursor-dot {
  display: none; /* replaced by canvas */
}

.brush-trail-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9989;
  opacity: 0.85;
}

@media (hover: none) { .brush-trail-canvas { display: none; } }
@media (max-width: 768px) { .brush-trail-canvas { display: none; } }

/* ============================================
   INK SPLASH on click
   ============================================ */
.click-ripple-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9989;
}

.ink-splash {
  position: absolute;
  pointer-events: none;
  animation: splashFade 1s ease-out forwards;
}

@keyframes splashFade {
  0% { opacity: 0.9; transform: scale(0.3); }
  30% { opacity: 0.8; transform: scale(1); }
  70% { opacity: 0.5; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.15); }
}

@media (hover: none) { .click-ripple-container { display: none; } }

/* ============================================
   FLOATING PAINT SPLATTERS (CSS animation)
   ============================================ */
.float-splat {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.float-splat-1 {
  top: 15%;
  right: 10%;
  animation: floatDrift 14s ease-in-out infinite;
}

.float-splat-2 {
  bottom: 25%;
  left: 8%;
  animation: floatDrift 18s ease-in-out infinite reverse;
}

.float-splat-3 {
  top: 55%;
  right: 25%;
  animation: floatDrift 12s ease-in-out infinite 3s;
}

@keyframes floatDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -20px) rotate(5deg); }
  50% { transform: translate(-10px, 15px) rotate(-3deg); }
  75% { transform: translate(20px, 10px) rotate(4deg); }
}

/* ============================================
   STORY ELEMENTS
   ============================================ */
.story-tag {
  font-style: italic;
  opacity: 0.6;
  font-size: 0.7rem;
}

.story-quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-primary);
  border-left: 3px solid var(--color-primary);
  padding-left: 20px;
  margin: 24px 0;
  line-height: 1.6;
}

/* Hero word-by-word reveal */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordFadeIn 0.6s ease forwards;
}

.word-reveal:nth-child(1) { animation-delay: 0.3s; }
.word-reveal:nth-child(2) { animation-delay: 0.6s; }
.word-reveal:nth-child(3) { animation-delay: 0.9s; }

@keyframes wordFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Workshop card paint-fill hover */
.workshop-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to top, rgba(208,85,56,0.06), transparent);
  transition: height 0.5s ease;
  z-index: 0;
  border-radius: var(--radius-lg);
}

.workshop-card {
  position: relative;
}

.workshop-card:hover::before {
  height: 100%;
}

/* Gallery watercolor hover */
.gallery-item:hover {
  box-shadow: 0 0 0 3px rgba(208,85,56,0.2), var(--shadow-lg);
}

/* ============================================
   PARALLAX SCROLL REVEAL ANIMATIONS
   ============================================ */

/* -- Reveal: slide up -- */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* -- Reveal: slide from left -- */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* -- Reveal: slide from right -- */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* -- Reveal: scale in -- */
.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* -- Reveal: fade -- */
.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.reveal-fade.revealed {
  opacity: 1;
}

/* -- Parallax depth layers -- */
[data-parallax] {
  will-change: transform;
}

/* ============================================
   PAINT DRIP DIVIDERS
   ============================================ */
.paint-drip-divider {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: -1px;
  margin-bottom: -1px;
  background: transparent;
}

.paint-drip-divider svg {
  width: 100%;
  display: block;
}

.drip-hero {
  margin-top: -2px;
}

.drip-up {
  transform: scaleY(-1);
  margin-bottom: -2px;
}

/* ============================================
   TEXT COLOR WIPE REVEAL
   ============================================ */
.wipe-animate {
  position: relative;
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.section-title.wipe-animate {
  background-image: linear-gradient(
    90deg,
    var(--color-text) 50%,
    transparent 50%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-dark .section-title.wipe-animate,
.hero-title.wipe-animate {
  background-image: linear-gradient(
    90deg,
    #fff 50%,
    transparent 50%
  );
}

.wipe-animate.wipe-revealed {
  background-position: 0 0;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-dark);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 500;
  z-index: 3000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 1px solid rgba(208,85,56,0.25);
  animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
             toastOut 0.3s ease 3s forwards;
  max-width: 90vw;
  text-align: center;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(24px) scale(0.9); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(-50%) translateY(0); }
  to   { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-placeholder { min-height: 320px; }

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

  .reel-embed-card {
    width: 280px;
    height: 470px;
  }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-surface);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
  }

  .nav-links.open { right: 0; }

  .nav-links li { border-bottom: 1px solid var(--color-border); }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
  }

  .nav-links a::after { display: none; }

  .hero-content { padding: 100px 16px 60px; }

  .section { padding: 72px 0; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }

  .reel-item {
    aspect-ratio: 9/16;
    grid-column: auto;
    grid-row: auto;
  }

  .workshop-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }

  .about-stats { gap: 20px; }
  .stat-number { font-size: 1.6rem; }

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

  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links { justify-content: center; }

  .reel-embed-card {
    width: 260px;
    height: 440px;
  }

  .reel-modal-body iframe {
    height: 75vh;
    max-width: 100%;
  }

  .reel-play-btn { width: 52px; height: 52px; }
  .reel-play-btn svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .about-stats { flex-wrap: wrap; }

  .reel-embed-card {
    width: 240px;
    height: 400px;
  }
}
