/* ============================================
   CV3 DESIGNS — Premium Boutique Stylesheet
   ============================================ */

/* Fonts loaded via <link> in HTML */

/* ── CSS Variables ── */
:root {
  --blush:       #f4bfca;
  --blush-light: #fce8ed;
  --blush-mid:   #f0a8b8;
  --lavender:    #c9b8d8;
  --lavender-light: #ede5f5;
  --aqua:        #9ecfcf;
  --aqua-light:  #d6f0f0;
  --mint:        #b2d8cc;
  --white:       #ffffff;
  --cream:       #fdf8f5;
  --cream-dark:  #f7efe8;
  --charcoal:    #2d2d2d;
  --charcoal-mid:#4a4a4a;
  --charcoal-soft:#6b6b6b;
  --gold:        #c9a96e;
  --gold-light:  #e8d5b0;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --font-script:  'Dancing Script', cursive;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-xl: 60px;

  --shadow-soft: 0 4px 24px rgba(180,140,160,0.12);
  --shadow-card: 0 8px 40px rgba(180,140,160,0.18);
  --shadow-float: 0 20px 60px rgba(180,140,160,0.25);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 0.95rem;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--blush); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 400; }
h4 { font-size: 1.2rem; font-weight: 500; }
p  { font-size: 1rem; font-weight: 300; color: var(--charcoal-mid); line-height: 1.8; }

.script-accent {
  font-family: var(--font-script);
  color: var(--blush-mid);
  font-size: 1.1em;
  display: block;
  margin-bottom: 0.3rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-mid);
  display: block;
  margin-bottom: 1rem;
}

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--blush-mid), var(--lavender));
  color: white;
  box-shadow: 0 6px 24px rgba(240,168,184,0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(240,168,184,0.55);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: white;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: white;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8936a);
  color: white;
  box-shadow: 0 6px 24px rgba(201,169,110,0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,169,110,0.5);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(253, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(180,140,160,0.12);
  padding: 0.8rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  transition: var(--transition);
}
.nav-logo:hover img { transform: rotate(5deg) scale(1.05); }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  line-height: 1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--blush-mid);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--blush-mid);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--blush-mid), var(--lavender));
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.78rem !important;
  box-shadow: 0 4px 16px rgba(240,168,184,0.4);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(240,168,184,0.5) !important;
  color: white !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--cream);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 6rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: -10px 0 40px rgba(0,0,0,0.08);
}
.nav-mobile.open { right: 0; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--charcoal);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(201,184,216,0.2);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--blush-mid); padding-left: 0.5rem; }
.nav-mobile .mobile-cta {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--blush-mid), var(--lavender));
  color: white;
  text-align: center;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 500;
  border-bottom: none;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-watercolor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 10% 20%, rgba(244,191,202,0.45) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 90% 10%, rgba(201,184,216,0.4) 0%, transparent 50%),
    radial-gradient(ellipse 70% 60% at 80% 80%, rgba(158,207,207,0.38) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 30% 85%, rgba(178,216,204,0.35) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 60% 50%, rgba(244,191,202,0.2) 0%, transparent 60%);
  filter: blur(40px);
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-text { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(244,191,202,0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blush-mid);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-badge::before {
  content: '✦';
  font-size: 0.6rem;
}
.hero-text h1 {
  margin-bottom: 1.2rem;
  color: var(--charcoal);
}
.hero-text h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--blush-mid), var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  color: var(--charcoal-mid);
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,184,216,0.3);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  font-weight: 400;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-logo-display {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(244,191,202,0.3);
  animation: spin-slow 20s linear infinite;
}
.hero-logo-ring-2 {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px dashed rgba(201,184,216,0.25);
  animation: spin-slow 30s linear infinite reverse;
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-logo-blob {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,191,202,0.25) 0%, rgba(201,184,216,0.2) 40%, rgba(158,207,207,0.15) 70%, transparent 100%);
  filter: blur(20px);
}
.hero-logo-img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(244,191,202,0.4), 0 0 0 1px rgba(255,255,255,0.5);
}
.hero-floating-tags {
  position: absolute;
  width: 100%; height: 100%;
  pointer-events: none;
}
.floating-tag {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--charcoal-mid);
  box-shadow: 0 4px 16px rgba(180,140,160,0.15);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.floating-tag:nth-child(1) { top: 5%; left: -10%; animation-delay: 0s; }
.floating-tag:nth-child(2) { top: 20%; right: -15%; animation-delay: 1s; }
.floating-tag:nth-child(3) { bottom: 25%; left: -20%; animation-delay: 2s; }
.floating-tag:nth-child(4) { bottom: 10%; right: -5%; animation-delay: 0.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0.6;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--blush-mid), transparent);
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ═══════════════════════════════════════
   SECTION WRAPPERS
═══════════════════════════════════════ */
section { padding: 6rem 0; }
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-header p {
  font-size: 1.05rem;
  margin-top: 0.8rem;
}
.section-divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--blush-mid), var(--lavender));
  margin: 1rem auto;
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   ABOUT BAND
═══════════════════════════════════════ */
#about {
  background: white;
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,191,202,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
}
.about-img-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--blush-light), var(--lavender-light), var(--aqua-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  border-radius: var(--radius-lg);
}
.about-img-placeholder .logo-mark {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.7;
}
.about-img-placeholder p {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--charcoal-mid);
  opacity: 0.7;
}
.about-badge-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  min-width: 140px;
}
.about-badge-card .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--blush-mid);
  line-height: 1;
}
.about-badge-card .label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-top: 0.3rem;
}
.about-text { }
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1.2rem; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.value-chip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blush-mid);
}
.value-chip .icon { font-size: 1.1rem; }
.value-chip .text { font-size: 0.85rem; font-weight: 500; color: var(--charcoal-mid); }

/* ═══════════════════════════════════════
   FEATURED PRODUCTS
═══════════════════════════════════════ */
#featured {
  background: var(--cream);
  position: relative;
}
#featured::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(244,191,202,0.4), transparent);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.product-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  group: true;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
}
.product-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 2.5rem;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-placeholder { transform: scale(1.05); }
.product-img-placeholder .img-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.6;
}
.product-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.9);
  border-radius: 50px;
  padding: 0.25rem 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blush-mid);
}
.product-info { padding: 1.5rem; }
.product-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.product-price {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--blush-mid);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.product-link {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal-mid);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.product-link:hover { color: var(--blush-mid); gap: 0.7rem; }

/* ═══════════════════════════════════════
   GRADUATION SPOTLIGHT
═══════════════════════════════════════ */
#graduation {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 40%, #1a2d3d 100%);
  color: white;
}
#graduation::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 30%, rgba(244,191,202,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(201,184,216,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 10%, rgba(158,207,207,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.grad-inner {
  position: relative;
  z-index: 2;
}
.grad-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.grad-header .section-label { color: var(--gold-light); }
.grad-header h2 { color: white; }
.grad-header p { color: rgba(255,255,255,0.7); }
.grad-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.grad-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.grad-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(244,191,202,0.3);
  transform: translateY(-4px);
}
.grad-card.featured {
  grid-row: span 2;
}
.grad-img-placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 3rem;
  color: white;
}
.grad-card.featured .grad-img-placeholder { height: 380px; font-size: 4rem; }
.grad-card:not(.featured) .grad-img-placeholder { height: 180px; }
.grad-card-info { padding: 1.2rem 1.5rem 1.5rem; }
.grad-card-info h4 { color: white; font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 0.3rem; }
.grad-card-info p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.5; margin-bottom: 0.8rem; }
.grad-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201,169,110,0.2);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  font-weight: 500;
}
.grad-cta-row {
  text-align: center;
  margin-top: 3.5rem;
}

/* ═══════════════════════════════════════
   WHY CHOOSE
═══════════════════════════════════════ */
#why {
  background: white;
  position: relative;
  overflow: hidden;
}
#why::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(158,207,207,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blush-light), var(--lavender-light));
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover { border-color: rgba(244,191,202,0.3); transform: translateY(-6px); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  position: relative;
  z-index: 1;
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: var(--transition);
}
.why-card:nth-child(1) .why-icon { background: var(--blush-light); }
.why-card:nth-child(2) .why-icon { background: var(--lavender-light); }
.why-card:nth-child(3) .why-icon { background: var(--aqua-light); }
.why-card:nth-child(4) .why-icon { background: var(--gold-light); }
.why-card:hover .why-icon { transform: scale(1.1) rotate(5deg); }
.why-card h3 {
  position: relative; z-index: 1;
  font-size: 1.3rem; font-weight: 500; margin-bottom: 0.8rem;
}
.why-card p {
  position: relative; z-index: 1;
  font-size: 0.9rem; color: var(--charcoal-soft);
}

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
#gallery {
  background: var(--cream);
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1.5px solid rgba(201,184,216,0.4);
  color: var(--charcoal-mid);
  background: white;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--blush-mid), var(--lavender));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(240,168,184,0.35);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item:hover { transform: scale(0.98); box-shadow: var(--shadow-float); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.08); }
.gallery-placeholder .gal-icon { font-size: 2.5rem; }
.gallery-placeholder .gal-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.7;
  color: var(--charcoal);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,45,45,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.gallery-item[data-hidden] { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-inner {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 600px;
  max-width: 90vw;
  height: 500px;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  font-size: 3rem;
}
.lightbox-inner p {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--charcoal-mid);
}
.lightbox-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
#testimonials {
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--lavender-light) 50%, var(--aqua-light) 100%);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '"';
  position: absolute;
  top: -2rem; left: 5%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(244,191,202,0.2);
  line-height: 1;
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  background: rgba(255,255,255,0.9);
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.9rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: white;
}
.author-name { font-size: 0.9rem; font-weight: 500; color: var(--charcoal); }
.author-event { font-size: 0.75rem; color: var(--charcoal-soft); letter-spacing: 0.05em; }

/* ═══════════════════════════════════════
   ORDER PROCESS
═══════════════════════════════════════ */
#process {
  background: white;
}
.process-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1rem;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, var(--blush-mid), var(--lavender), var(--aqua));
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 24px rgba(240,168,184,0.3);
  transition: var(--transition);
  position: relative;
}
.process-step:hover .step-circle {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(240,168,184,0.45);
}
.process-step:nth-child(1) .step-circle { background: linear-gradient(135deg, var(--blush-mid), #e8a0b0); }
.process-step:nth-child(2) .step-circle { background: linear-gradient(135deg, var(--lavender), #b8a0cc); }
.process-step:nth-child(3) .step-circle { background: linear-gradient(135deg, var(--aqua), #80b8b8); }
.process-step:nth-child(4) .step-circle { background: linear-gradient(135deg, var(--mint), #8cc8b8); }
.process-step:nth-child(5) .step-circle { background: linear-gradient(135deg, var(--gold), #b8936a); }
.step-title { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; color: var(--charcoal); margin-bottom: 0.4rem; }
.step-desc { font-size: 0.8rem; color: var(--charcoal-soft); max-width: 130px; line-height: 1.5; }

/* ═══════════════════════════════════════
   ORDER FORM
═══════════════════════════════════════ */
#order {
  background: var(--cream);
  position: relative;
}
#order::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--blush-mid), var(--lavender), var(--aqua), var(--mint));
}
.order-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.order-info h2 { margin-bottom: 1rem; }
.order-info p { margin-bottom: 2rem; }
.order-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.order-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.order-feature:hover { transform: translateX(4px); box-shadow: var(--shadow-card); }
.order-feature .feat-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.order-feature:nth-child(1) .feat-icon { background: var(--blush-light); }
.order-feature:nth-child(2) .feat-icon { background: var(--lavender-light); }
.order-feature:nth-child(3) .feat-icon { background: var(--aqua-light); }
.order-feature .feat-text { font-size: 0.88rem; font-weight: 500; color: var(--charcoal-mid); }

.order-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(244,191,202,0.15);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.form-subtitle {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,184,216,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal-mid);
  margin-bottom: 0.5rem;
}
.form-group label .req { color: var(--blush-mid); }
.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(201,184,216,0.35);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--blush-mid);
  background: white;
  box-shadow: 0 0 0 3px rgba(240,168,184,0.15);
}
.form-control::placeholder { color: var(--charcoal-soft); opacity: 0.6; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-radio-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.3rem; }
.form-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.form-radio input { accent-color: var(--blush-mid); cursor: pointer; }
.form-radio span { font-size: 0.88rem; color: var(--charcoal-mid); }
.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--blush-mid), var(--lavender));
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(240,168,184,0.4);
  margin-top: 0.5rem;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(240,168,184,0.5);
}
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--charcoal-soft);
  margin-top: 1rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show { display: block; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; margin-bottom: 0.5rem; }
.form-success p { color: var(--charcoal-soft); }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
#faq {
  background: white;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border: 1.5px solid rgba(201,184,216,0.25);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(244,191,202,0.5); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
}
.faq-question:hover { color: var(--blush-mid); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--blush-mid);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--blush-mid); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
#contact {
  background: var(--cream);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(244,191,202,0.15);
}
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.contact-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item:nth-child(1) .contact-icon-wrap { background: var(--blush-light); }
.contact-item:nth-child(2) .contact-icon-wrap { background: var(--lavender-light); }
.contact-item:nth-child(3) .contact-icon-wrap { background: var(--aqua-light); }
.contact-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal-soft);
  margin-bottom: 0.2rem;
}
.contact-item-value {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 400;
}
.contact-item-value a { color: var(--charcoal); transition: var(--transition); }
.contact-item-value a:hover { color: var(--blush-mid); }
.contact-social { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(201,184,216,0.2); }
.contact-social h4 { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--charcoal-soft); margin-bottom: 1rem; font-family: var(--font-body); }
.social-icons { display: flex; gap: 0.75rem; }
.social-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,184,216,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--charcoal-mid);
  transition: var(--transition);
  background: white;
}
.social-icon:hover {
  background: linear-gradient(135deg, var(--blush-mid), var(--lavender));
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(240,168,184,0.4);
}

/* Simple contact form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--blush-mid), var(--lavender), var(--aqua), var(--mint), var(--gold));
}
footer::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,191,202,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.footer-logo-wrap img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(244,191,202,0.3);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: white;
  line-height: 1.1;
}
.footer-brand-name span {
  display: block;
  font-size: 0.55rem;
  font-family: var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush-mid);
  margin-top: 3px;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-social .social-icon {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
}
.footer-social .social-icon:hover {
  background: linear-gradient(135deg, var(--blush-mid), var(--lavender));
  border-color: transparent;
  color: white;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--blush-mid); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-heart { color: var(--blush-mid); }
.footer-tagline {
  font-family: var(--font-script);
  font-size: 1rem;
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-mid), var(--lavender));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(240,168,184,0.4);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 500;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(240,168,184,0.5);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grad-grid { grid-template-columns: 1fr 1fr; }
  .grad-card.featured { grid-row: span 1; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text h1, .hero-text p { text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .order-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .process-track { flex-direction: column; align-items: center; gap: 2rem; }
  .process-track::before { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .container { padding: 0 1.2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .grad-grid { grid-template-columns: 1fr; }
  .order-form-card { padding: 2rem 1.5rem; }
  .contact-card { padding: 2rem 1.5rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-badge { font-size: 0.65rem; }
}

/* ═══════════════════════════════════════
   PRODUCT TABS
═══════════════════════════════════════ */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1.5px solid rgba(201,184,216,0.4);
  color: var(--charcoal-mid);
  background: white;
  transition: var(--transition);
  cursor: pointer;
}
.tab-btn:hover, .tab-btn.active {
  background: linear-gradient(135deg, var(--blush-mid), var(--lavender));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(240,168,184,0.35);
}
.products-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.product-card[data-hidden] { display: none; }

/* ═══════════════════════════════════════
   SIGNS SECTION
═══════════════════════════════════════ */
.signs-event-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.sign-filter {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1.5px solid rgba(201,184,216,0.4);
  color: var(--charcoal-mid);
  background: var(--cream);
  transition: var(--transition);
  cursor: pointer;
}
.sign-filter:hover, .sign-filter.active {
  background: linear-gradient(135deg, var(--blush-mid), var(--lavender));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(240,168,184,0.3);
}
.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.sign-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid rgba(201,184,216,0.2);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.sign-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(244,191,202,0.4);
}
.sign-card[data-hidden] { display: none; }
.sign-icon-wrap {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  transition: transform 0.4s ease;
}
.sign-card:hover .sign-icon-wrap { transform: scale(1.08); }
.sign-info { padding: 1.2rem 1.4rem 1.4rem; }
.sign-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.sign-size {
  font-size: 0.75rem;
  color: var(--charcoal-soft);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.sign-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blush-mid);
  margin-bottom: 0.8rem;
}
.sign-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.sign-event-tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
}
.sign-event-tag.grad  { background: rgba(201,169,110,0.15); color: #9a7a3a; }
.sign-event-tag.bday  { background: rgba(244,191,202,0.25); color: var(--blush-mid); }
.sign-event-tag.baby  { background: rgba(158,207,207,0.2);  color: #5a9f9f; }
.sign-event-tag.wed   { background: rgba(201,184,216,0.25); color: #7a5fa0; }
.sign-event-tag.holiday { background: rgba(178,216,204,0.25); color: #4a8a70; }
.signs-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  padding: 1rem 2rem;
  background: var(--blush-light);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  justify-content: center;
}
.signs-note a {
  color: var(--blush-mid);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═══════════════════════════════════════
   HERO section fix
═══════════════════════════════════════ */
#hero { padding: 0; }

/* ═══════════════════════════════════════
   RESPONSIVE ADDITIONS
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .signs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .signs-grid { grid-template-columns: 1fr; }
  .products-masonry { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   REAL IMAGE HELPERS
═══════════════════════════════════════ */
.grad-img-real {
  width: 100%;
  overflow: hidden;
}
.grad-img-real img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.grad-card:hover .grad-img-real img { transform: scale(1.04); }

.grad-img-real.grad-img-sm img {
  height: 180px;
}

.sign-img-real {
  width: 100%;
  height: 120px;
  overflow: hidden;
}
.sign-img-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.sign-card:hover .sign-img-real img { transform: scale(1.06); }

/* Lightbox real image wrapper */
.lightbox-inner-img {
  display: flex;
  flex-direction: column;
  align-items: center;
}
