/* ============================
   MAE'S HANDMADE CRAFTS & GIFTS
   Premium VIP Stylesheet
   ============================ */

/* ---- CSS Variables ---- */
:root {
  --purple-deep:   #4a0080;
  --purple-dark:   #6a0dad;
  --purple-mid:    #8b2fc9;
  --purple-light:  #b24fe8;
  --purple-pale:   #d49af5;
  --purple-soft:   #f0d6ff;
  --purple-ghost:  #f9f0ff;
  --gold:          #f0c060;
  --gold-dark:     #c99a3a;
  --white:         #ffffff;
  --off-white:     #fdfaff;
  --text-dark:     #1a0030;
  --text-mid:      #4a3060;
  --text-light:    #8a70a0;
  --gradient-main: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-light) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold-dark), var(--gold));
  --shadow-sm:     0 4px 15px rgba(107, 13, 173, 0.12);
  --shadow-md:     0 8px 30px rgba(107, 13, 173, 0.2);
  --shadow-lg:     0 20px 60px rgba(107, 13, 173, 0.3);
  --radius-sm:     10px;
  --radius-md:     18px;
  --radius-lg:     28px;
  --transition:    all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Custom Cursor ---- */
.cursor {
  width: 12px; height: 12px;
  background: var(--purple-dark);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 2px solid var(--purple-mid);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, opacity 0.2s;
  opacity: 0.6;
}
.cursor.hover { transform: translate(-50%, -50%) scale(1.8); background: var(--purple-light); }
.cursor-follower.hover { transform: translate(-50%, -50%) scale(1.5); opacity: 0.3; }

/* ---- Particles ---- */
.particles {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Animate classes ---- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
}
.animate-slide-right {
  opacity: 0;
  transform: translateX(60px);
  animation: slideRight 1s cubic-bezier(0.4,0,0.2,1) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  to { opacity: 1; transform: translateX(0); }
}

/* ---- Gradient Text ---- */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, #f0d6ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(5px); }

.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: scaleX(1); }

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 6px 25px rgba(107,13,173,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(107,13,173,0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--purple-dark);
  border: 2px solid var(--purple-mid);
}
.btn-ghost:hover {
  background: var(--purple-ghost);
  transform: translateY(-3px);
}

.btn-white {
  background: #fff;
  color: var(--purple-dark);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.btn-full { width: 100%; justify-content: center; }

/* ---- Section Commons ---- */
.section-label {
  display: inline-block;
  background: var(--purple-ghost);
  color: var(--purple-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid var(--purple-soft);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(107,13,173,0.12);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px; height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--purple-dark);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-order-btn {
  background: var(--gradient-main);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(107,13,173,0.35);
  white-space: nowrap;
}
.nav-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107,13,173,0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--purple-dark);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 40%, #ede9fe 100%);
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  animation: shape-float 8s ease-in-out infinite;
}
.shape-1 { width: 600px; height: 600px; background: var(--purple-mid); top: -200px; right: -150px; }
.shape-2 { width: 400px; height: 400px; background: var(--purple-light); bottom: -100px; left: -100px; animation-delay: -2s; }
.shape-3 { width: 250px; height: 250px; background: var(--gold); top: 40%; left: 30%; animation-delay: -4s; opacity: 0.1; }
.shape-4 { width: 180px; height: 180px; background: var(--purple-pale); top: 20%; left: 10%; animation-delay: -6s; }

@keyframes shape-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(15px,-20px) scale(1.05); }
  66%       { transform: translate(-10px,10px) scale(0.98); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--purple-soft);
  color: var(--purple-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--purple-dark);
  line-height: 1;
}
.stat span { font-size: 1.4rem; color: var(--purple-mid); }
.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--purple-soft);
}

/* Hero Image Side */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-img {
  width: 420px;
  height: 420px;
  object-fit: contain;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 20px 60px rgba(107,13,173,0.3));
  animation: logo-float 6s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

.hero-img-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  animation: ring-spin linear infinite;
}
.ring-1 {
  width: 460px; height: 460px;
  border-color: rgba(178,79,232,0.15) rgba(178,79,232,0.05) rgba(178,79,232,0.15) rgba(178,79,232,0.05);
  border-width: 1.5px;
  animation-duration: 20s;
}
.ring-2 {
  width: 520px; height: 520px;
  border-color: rgba(107,13,173,0.1) transparent;
  border-width: 1px;
  animation-duration: 30s;
  animation-direction: reverse;
}
.ring-3 {
  width: 380px; height: 380px;
  border-color: transparent rgba(240,192,96,0.2) transparent rgba(240,192,96,0.2);
  border-width: 2px;
  animation-duration: 15s;
}

@keyframes ring-spin { to { transform: rotate(360deg); } }

.floating-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--purple-soft);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--purple-dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: badge-float ease-in-out infinite;
}
.badge-1 { top: 10%; right: -10%; animation-duration: 4s; animation-delay: 0s; }
.badge-2 { bottom: 20%; left: -15%; animation-duration: 5s; animation-delay: -1s; }
.badge-3 { top: 65%; right: -12%; animation-duration: 4.5s; animation-delay: -2s; }

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--purple-mid);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}

/* ===========================
   MARQUEE
   =========================== */
.marquee-strip {
  background: var(--gradient-main);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0 40px;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================
   ABOUT
   =========================== */
.about {
  padding: 120px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }
.about-img-stack { position: relative; }

.about-card-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.craft-icon-display {
  background: linear-gradient(135deg, var(--purple-ghost) 0%, var(--purple-soft) 100%);
  border: 2px solid var(--purple-soft);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
}

.craft-emoji-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}
.craft-emoji-grid span {
  font-size: 2.5rem;
  animation: emoji-bounce 3s ease-in-out infinite;
  display: block;
}
.craft-emoji-grid span:nth-child(1) { animation-delay: 0s; }
.craft-emoji-grid span:nth-child(2) { animation-delay: 0.2s; }
.craft-emoji-grid span:nth-child(3) { animation-delay: 0.4s; }
.craft-emoji-grid span:nth-child(4) { animation-delay: 0.6s; }
.craft-emoji-grid span:nth-child(5) { animation-delay: 0.8s; }
.craft-emoji-grid span:nth-child(6) { animation-delay: 1.0s; }
.craft-emoji-grid span:nth-child(7) { animation-delay: 1.2s; }
.craft-emoji-grid span:nth-child(8) { animation-delay: 1.4s; }
@keyframes emoji-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-8px) scale(1.15); }
}

.about-floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--purple-soft);
  animation: badge-float ease-in-out infinite;
}
.card-a { top: -20px; right: -20px; animation-duration: 4s; }
.card-b { bottom: -20px; left: -20px; animation-duration: 5s; animation-delay: -2s; }

.fc-icon { font-size: 2rem; }
.fc-icon-img {
  width: 44px; height: 44px;
  background: var(--purple-ghost);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-dark);
  flex-shrink: 0;
}
.about-floating-card strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.about-floating-card p { font-size: 0.78rem; color: var(--text-light); margin: 0; }

.about-text { }
.about-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0 36px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--purple-ghost);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--purple-mid);
  transition: var(--transition);
}
.feature-item:hover {
  transform: translateX(6px);
  background: var(--purple-soft);
}
.feature-icon { font-size: 1.6rem; }
.feature-icon-svg {
  width: 46px; height: 46px;
  background: var(--purple-ghost);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--purple-soft);
}
.feature-item strong { display: block; font-size: 0.95rem; margin-bottom: 2px; color: var(--text-dark); }
.feature-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ===========================
   CRAFTS / COLLECTIONS
   =========================== */
.crafts {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--purple-ghost) 0%, var(--off-white) 100%);
}

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

.craft-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--purple-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  padding: 0 0 24px 0;
}
.craft-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.craft-card:hover::before { transform: scaleX(1); }
.craft-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-pale);
}

.craft-card.featured {
  background: linear-gradient(135deg, var(--purple-ghost) 0%, #fff 100%);
  border-color: var(--purple-pale);
  box-shadow: var(--shadow-md);
}

.craft-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gradient-gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.craft-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.craft-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.craft-card:hover .craft-card-img { transform: scale(1.07); }
.craft-card h3,
.craft-card p,
.craft-card-tag { padding-left: 24px; padding-right: 24px; }
.craft-card-tag { margin-left: 24px; display: inline-block; }

.craft-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.craft-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.craft-card-tag {
  display: inline-block;
  background: var(--purple-ghost);
  color: var(--purple-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  border: 1px solid var(--purple-soft);
}

/* ===========================
   PROCESS
   =========================== */
.process {
  padding: 100px 0;
  background: #fff;
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--purple-soft);
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.step-img-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 60px auto 20px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--purple-soft);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.process-step:hover .step-img-wrap {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}
.process-step:hover .step-img { transform: scale(1.1); }

@keyframes step-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}

.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.process-arrow {
  font-size: 1.8rem;
  color: var(--purple-pale);
  flex-shrink: 0;
  animation: arrow-pulse 1.5s ease-in-out infinite;
}
@keyframes arrow-pulse {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50%       { transform: translateX(6px); opacity: 1; }
}

/* ===========================
   GALLERY
   =========================== */
.gallery {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--purple-ghost) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 220px;
}
.gallery-item.item-lg {
  grid-column: span 1;
  grid-row: span 2;
  min-height: 460px;
}
.gallery-item.item-wide {
  grid-column: span 2;
}

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.5s ease;
  min-height: inherit;
}
.gallery-placeholder span { font-size: 3.5rem; }
.gallery-placeholder p { font-size: 0.85rem; font-weight: 600; color: var(--text-mid); text-align: center; }

.gp-1 { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.gp-2 { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }
.gp-3 { background: linear-gradient(135deg, #fdf4ff, #fae8ff); }
.gp-4 { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.gp-5 { background: linear-gradient(135deg, #fff7ed, #ffedd5); }

.gallery-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  min-height: 220px;
  position: relative;
  z-index: 1;
}
.gallery-item.item-lg .gallery-real-img { min-height: 460px; }
.gallery-item:hover .gallery-real-img { transform: scale(1.08); }

.gallery-overlay {

  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-overlay span {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-item:hover .gallery-overlay { opacity: 0.9; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  padding: 120px 0;
  background: #fff;
}

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

.testimonial-card {
  background: var(--purple-ghost);
  border: 1px solid var(--purple-soft);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--purple-soft);
  line-height: 1;
  z-index: 0;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-pale);
}
.testimonial-card.featured-review {
  background: var(--gradient-main);
  border-color: transparent;
}
.testimonial-card.featured-review::before { color: rgba(255,255,255,0.15); }
.testimonial-card.featured-review p,
.testimonial-card.featured-review strong,
.testimonial-card.featured-review span { color: #fff; }

.stars { font-size: 1.1rem; margin-bottom: 16px; position: relative; z-index: 1; }
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-card.featured-review .author-avatar {
  background: rgba(255,255,255,0.25);
}
.testimonial-author strong { display: block; font-size: 0.92rem; color: var(--text-dark); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-light); }

/* ===========================
   CTA BANNER — REDESIGNED
   =========================== */
.cta-banner-new {
  padding: 100px 0;
  background: linear-gradient(135deg, #faf5ff 0%, #f0d6ff 50%, #e9d5ff 100%);
  overflow: hidden;
  position: relative;
}

.cta-new-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* ---- Image Side ---- */
.cta-img-side {
  position: relative;
}

.cta-img-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(107,13,173,0.3);
  z-index: 2;
}

.cta-main-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.cta-img-frame:hover .cta-main-photo { transform: scale(1.04); }

.cta-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(74,0,128,0.1) 0%,
    rgba(74,0,128,0.05) 40%,
    rgba(74,0,128,0.5) 100%
  );
  pointer-events: none;
}

/* Stat cards on image */
.cta-stat-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(107,13,173,0.15);
  z-index: 5;
  animation: badge-float ease-in-out infinite;
}
.cta-stat-top    { top: 24px; right: -20px; animation-duration: 4s; }
.cta-stat-bottom { bottom: 80px; left: -20px; animation-duration: 5s; animation-delay: -2s; }

.cta-stat-icon { font-size: 1.8rem; }
.cta-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--purple-dark);
  line-height: 1;
}
.cta-stat-lbl {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Logo watermark at bottom of image */
.cta-logo-mark {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 5;
}
.cta-logo-mark img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  opacity: 0.9;
}

/* Decorative blobs */
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}
.blob-a {
  width: 280px; height: 280px;
  background: rgba(178,79,232,0.25);
  bottom: -60px; left: -60px;
  animation: shape-float 8s ease-in-out infinite;
}
.blob-b {
  width: 180px; height: 180px;
  background: rgba(240,192,96,0.2);
  top: -40px; right: 40px;
  animation: shape-float 10s ease-in-out infinite reverse;
}

/* ---- Content Side ---- */
.cta-content-side { }
.cta-content-inner { }

.cta-label-pill {
  display: inline-block;
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px rgba(107,13,173,0.3);
}

.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.cta-heading-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 32px;
}

/* Feature badges grid */
.cta-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.cta-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--purple-soft);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.cta-badge:hover {
  background: var(--purple-ghost);
  border-color: var(--purple-pale);
  transform: translateY(-2px);
}
.cta-badge svg { color: var(--purple-dark); flex-shrink: 0; }

/* CTA buttons */
.cta-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-main);
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 28px rgba(107,13,173,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.btn-cta-primary svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(107,13,173,0.5); }
.btn-cta-primary:hover svg { transform: translateX(5px); }

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--purple-dark);
  border: 2px solid var(--purple-mid);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}
.btn-cta-ghost:hover {
  background: var(--purple-ghost);
  transform: translateY(-3px);
}

.cta-trust {
  font-size: 0.88rem;
  color: var(--text-light);
}
.cta-trust strong { color: var(--purple-dark); }

/* Responsive */
@media (max-width: 900px) {
  .cta-new-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-main-photo { height: 360px; }
  .cta-stat-top { right: 10px; }
  .cta-stat-bottom { left: 10px; }
}
@media (max-width: 600px) {
  .cta-badges { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; }
  .cta-new-inner { padding: 0 20px; }
}


/* ===========================
   CONTACT
   =========================== */
.contact {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--purple-ghost) 0%, var(--off-white) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--purple-soft);
  box-shadow: var(--shadow-md);
}
.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--text-dark);
}
.contact-info-card > p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--purple-soft);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
  font-size: 1.6rem;
  width: 44px; height: 44px;
  background: var(--purple-ghost);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; color: var(--text-dark); margin-bottom: 4px; }
.contact-item a, .contact-item span {
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--purple-dark); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--purple-ghost);
  border: 1px solid var(--purple-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-dark);
  transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  background: var(--gradient-main);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--purple-soft);
  box-shadow: var(--shadow-md);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 18px;
  border: 1.5px solid var(--purple-soft);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--purple-ghost);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-mid);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(107,13,173,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-sm);
  color: #166534;
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 16px;
}
.form-success.show { display: flex; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--purple-deep);
  color: rgba(255,255,255,0.8);
}

.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 16px;
  color: rgba(255,255,255,0.65);
}
.footer-logo {
  height: 80px;
  width: auto;
  filter: brightness(1.1);
}

.footer-links-col h4,
.footer-newsletter h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links-col a:hover { color: var(--purple-pale); padding-left: 6px; }

.footer-newsletter p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 18px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.15);
}
.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 12px 22px;
  background: var(--purple-light);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--purple-mid); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ===========================
   RESPONSIVE — TABLET (≤1024px)
   =========================== */
@media (max-width: 1024px) {
  /* Disable Custom Cursor on Touch Devices */
  body { cursor: auto !important; }
  .cursor, .cursor-follower { display: none !important; }

  /* Navbar */
  .nav-order-btn { padding: 8px 16px; font-size: 0.82rem; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 140px 40px 70px;
    text-align: center;
    gap: 40px;
  }
  .hero-content { order: 2; }
  .hero-image  { order: 1; }
  .hero-subtitle { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .hero-btns  { justify-content: center; }
  .scroll-indicator { display: none; }
  .hero-logo-img { width: 300px; height: 300px; }
  .ring-1 { width: 340px; height: 340px; }
  .ring-2 { width: 390px; height: 390px; }
  .ring-3 { width: 290px; height: 290px; }
  .floating-badge { font-size: 0.72rem; padding: 8px 14px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-main-img { height: 300px; }

  /* Crafts */
  .crafts-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-steps { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .process-arrow { display: none; }
  .process-step { flex: 0 0 45%; min-width: 200px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  /* CTA */
  .cta-new-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 40px; }
  .cta-main-photo { height: 380px; }
  .cta-stat-top { top: 16px; right: 16px; }
  .cta-stat-bottom { bottom: 60px; left: 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ===========================
   RESPONSIVE — MOBILE (≤768px)
   =========================== */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(107, 13, 173, 0.08);
    padding: 12px 0;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(107, 13, 173, 0.15);
    border-radius: 0 0 24px 24px;
    border-top: 1px solid var(--purple-soft);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link {
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    font-size: 1.05rem;
    border-radius: 12px;
  }
  .nav-link:hover {
    background: var(--purple-ghost);
  }
  .nav-link::after { display: none; } /* Hide line hover effect on mobile dropdown */
  .hamburger { display: flex; margin-left: auto; }
  .nav-order-btn { display: none; }
  .nav-logo img { height: 48px; }

  /* Hero */
  .hero {
    padding: 140px 20px 60px;
    gap: 32px;
  }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-logo-img { width: 260px; height: 260px; }
  .ring-1 { width: 300px; height: 300px; }
  .ring-2 { width: 340px; height: 340px; }
  .ring-3 { width: 250px; height: 250px; }
  .floating-badge { display: none; }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; }

  /* Section headers */
  .section-title { font-size: 1.8rem; }
  .section-desc  { font-size: 0.95rem; }
  .section-header { margin-bottom: 40px; }

  /* About */
  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-main-img { height: 260px; }
  .about-floating-card { display: none; }
  .about-text { padding: 0 4px; }
  .about-desc { font-size: 0.97rem; }

  /* Crafts */
  .crafts { padding: 80px 0; }
  .crafts-grid { grid-template-columns: 1fr; gap: 20px; }
  .craft-card-img-wrap { height: 180px; }

  /* Process */
  .process { padding: 70px 0; }
  .process-steps { flex-direction: column; align-items: center; gap: 0; }
  .process-step { flex: none; width: 100%; max-width: 340px; padding: 20px 24px 30px; }
  .step-img-wrap { margin: 20px auto 16px; width: 80px; height: 80px; }
  .step-number { font-size: 3rem; top: 6px; }

  /* Gallery */
  .gallery { padding: 80px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-item.item-lg { grid-column: span 2; min-height: 260px; }
  .gallery-item.item-wide { grid-column: span 2; }
  .gallery-item { min-height: 160px; }
  .gallery-real-img { min-height: 160px; }
  .gallery-item.item-lg .gallery-real-img { min-height: 260px; }

  /* Testimonials */
  .testimonials { padding: 80px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; max-width: 100%; }

  /* Contact */
  .contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-info-card { padding: 28px 24px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer-top { padding: 60px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo { height: 70px; }

  /* Back to Top */
  .back-to-top { bottom: 16px; right: 16px; width: 44px; height: 44px; }
}

/* ===========================
   RESPONSIVE — SMALL MOBILE (≤480px)
   =========================== */
@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 130px 16px 50px; }
  .hero-title { font-size: 1.75rem; line-height: 1.2; }
  .hero-subtitle { font-size: 0.93rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .hero-stats { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .stat-num { font-size: 1.6rem; }
  .hero-logo-img { width: 180px; height: 180px; }
  .ring-1 { width: 220px; height: 220px; }
  .ring-2 { width: 260px; height: 260px; }
  .ring-3 { width: 180px; height: 180px; }

  /* Marquee */
  .marquee-track span { padding: 0 24px; font-size: 0.8rem; }

  /* About */
  .about { padding: 60px 0; }
  .about-main-img { height: 220px; }

  /* Crafts */
  .crafts { padding: 60px 0; }
  .craft-card-img-wrap { height: 160px; }
  .craft-card h3 { font-size: 1.1rem; }

  /* Process */
  .process { padding: 60px 0; }
  .process-step { max-width: 100%; padding: 16px 20px 24px; }
  .step-img-wrap { width: 70px; height: 70px; margin: 16px auto 12px; }

  /* Gallery */
  .gallery { padding: 60px 0; }
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item,
  .gallery-item.item-lg,
  .gallery-item.item-wide { grid-column: span 1; min-height: 200px; }
  .gallery-real-img,
  .gallery-item.item-lg .gallery-real-img { min-height: 200px; }

  /* Testimonials */
  .testimonials { padding: 60px 0; }
  .testimonial-card { padding: 24px 20px; }

  /* Contact */
  .contact { padding: 60px 0; }
  .contact-info-card { padding: 22px 18px; }
  .contact-form-wrap { padding: 22px 16px; }

  /* Footer */
  .footer-top { padding: 50px 0 32px; }
  .footer-logo { height: 60px; }
  .newsletter-form { flex-direction: column; border-radius: 12px; }
  .newsletter-form input { border-radius: 10px 10px 0 0; }
  .newsletter-form button { border-radius: 0 0 10px 10px; padding: 12px; }

  /* Section */
  .section-title { font-size: 1.55rem; }
  .container { padding: 0 16px; }
}



