/* ============================================
   GHEM & POVESTE — Main Stylesheet
   ============================================ */

/* === RESET & VARIABLES === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --coral: #FF6B6B;
  --coral-light: #FF8E8E;
  --teal: #4ECDC4;
  --teal-dark: #3BA99C;
  --sunshine: #FFE66D;
  --lavender: #C3A6FF;
  --peach: #FFBE76;
  --mint: #7BF5D8;
  --rose: #FF85A1;
  --cream: #FFF8F0;
  --dark: #2D1B33;
  --dark-soft: #4A3550;
  --white: #FFFFFF;
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Baloo 2', cursive; line-height: 1.2; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(255, 248, 240, 0.85);
  border-bottom: 2px solid rgba(78, 205, 196, 0.2);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 10px 40px;
  box-shadow: 0 4px 30px rgba(45, 27, 51, 0.08);
}

.logo {
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--coral), var(--lavender), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.logo::after {
  content: '🧶';
  position: relative;
  margin-left: 6px;
  -webkit-text-fill-color: initial;
  font-size: 1.4rem;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--dark-soft);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

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

.nav-toggle span {
  width: 28px; height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: 0.3s;
}

/* === SHARED === */
.section { padding: 100px 40px; position: relative; }

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

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--dark-soft);
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Baloo 2', cursive;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--rose));
  color: var(--white);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--teal);
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.15);
}
.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--lavender), #A78BFA);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(195, 166, 255, 0.35);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(195, 166, 255, 0.45);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,107,107,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(78,205,196,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(195,166,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 90%, rgba(255,230,109,0.1) 0%, transparent 60%);
  z-index: 0;
}

.float-shape {
  position: absolute;
  border-radius: 50%;
  animation: floatShape 8s ease-in-out infinite;
  z-index: 0;
}

.float-shape:nth-child(1) { width: 120px; height: 120px; background: linear-gradient(135deg, var(--coral), var(--peach)); top: 15%; left: 8%; animation-delay: 0s; opacity: 0.2; }
.float-shape:nth-child(2) { width: 80px; height: 80px; background: linear-gradient(135deg, var(--teal), var(--mint)); top: 25%; right: 12%; animation-delay: -2s; opacity: 0.25; }
.float-shape:nth-child(3) { width: 60px; height: 60px; background: linear-gradient(135deg, var(--lavender), var(--rose)); bottom: 20%; left: 15%; animation-delay: -4s; opacity: 0.2; }
.float-shape:nth-child(4) { width: 100px; height: 100px; background: linear-gradient(135deg, var(--sunshine), var(--peach)); bottom: 30%; right: 8%; animation-delay: -6s; opacity: 0.18; }
.float-shape:nth-child(5) { width: 50px; height: 50px; background: linear-gradient(135deg, var(--mint), var(--teal)); top: 60%; left: 5%; animation-delay: -1s; opacity: 0.22; }

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33% { transform: translateY(-25px) rotate(5deg) scale(1.05); }
  66% { transform: translateY(15px) rotate(-3deg) scale(0.95); }
}

.hero-content { text-align: center; max-width: 800px; position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  color: var(--dark);
  font-weight: 700; font-size: 0.85rem;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease both;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h1 .line1 { display: block; color: var(--dark); }
.hero h1 .line2 {
  display: block;
  background: linear-gradient(135deg, var(--coral), var(--lavender), var(--teal));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem; color: var(--dark-soft);
  max-width: 560px; margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite; z-index: 1;
}
.scroll-indicator span {
  display: block; width: 24px; height: 38px;
  border: 3px solid var(--teal); border-radius: 20px; position: relative;
}
.scroll-indicator span::after {
  content: ''; width: 4px; height: 10px;
  background: var(--teal); border-radius: 4px;
  position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%); animation: scrollDot 2s infinite;
}

@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }
@keyframes scrollDot { 0%{opacity:1;top:6px} 100%{opacity:0;top:20px} }

/* === ABOUT === */
.about { background: var(--white); }
.about .section-tag { background: rgba(78,205,196,0.15); color: var(--teal-dark); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1100px; margin: 0 auto; align-items: center;
}

.about-visual {
  position: relative; height: 450px;
  border-radius: var(--radius); overflow: hidden;
}
.about-visual-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--peach), var(--coral-light), var(--lavender));
  border-radius: var(--radius);
}
.about-visual-content {
  position: absolute; inset: 20px;
  background: var(--cream); border-radius: calc(var(--radius) - 8px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; padding: 30px;
}

.yarn-emoji-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; font-size: 3rem;
}
.yarn-emoji-grid span {
  display: flex; align-items: center; justify-content: center;
  width: 80px; height: 80px; border-radius: 50%;
  transition: all 0.3s ease; cursor: default;
}
.yarn-emoji-grid span:nth-child(1) { background: rgba(255,107,107,0.12); }
.yarn-emoji-grid span:nth-child(2) { background: rgba(78,205,196,0.12); }
.yarn-emoji-grid span:nth-child(3) { background: rgba(195,166,255,0.12); }
.yarn-emoji-grid span:nth-child(4) { background: rgba(255,230,109,0.12); }
.yarn-emoji-grid span:nth-child(5) { background: rgba(255,133,161,0.12); }
.yarn-emoji-grid span:nth-child(6) { background: rgba(255,190,118,0.12); }
.yarn-emoji-grid span:hover { transform: scale(1.15) rotate(10deg); }

.about-text h3 { font-size: 1.8rem; margin-bottom: 16px; }
.about-text p { margin-bottom: 16px; color: var(--dark-soft); font-size: 1.05rem; }

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 30px;
}
.stat-item { text-align: center; padding: 20px; border-radius: var(--radius-sm); background: var(--cream); }
.stat-item .num { font-family: 'Baloo 2', cursive; font-size: 2rem; font-weight: 800; display: block; }
.stat-item:nth-child(1) .num { color: var(--coral); }
.stat-item:nth-child(2) .num { color: var(--teal); }
.stat-item:nth-child(3) .num { color: var(--lavender); }
.stat-item .label { font-size: 0.85rem; color: var(--dark-soft); font-weight: 600; }

/* === PRODUCTS === */
.products { background: linear-gradient(180deg, var(--cream) 0%, #FFF0F5 50%, var(--cream) 100%); }
.products .section-tag { background: rgba(255,107,107,0.12); color: var(--coral); }

/* category block */
.cat-block {
  max-width: 1140px;
  margin: 0 auto 56px;
}
.cat-block:last-of-type { margin-bottom: 0; }

.cat-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px dashed rgba(255,107,107,0.25);
}
.cat-emoji {
  font-size: 2.4rem;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 12px rgba(45,27,51,0.15));
}
.cat-head-text { flex: 1; min-width: 0; }
.cat-head-text h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.55rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.cat-head-text p {
  color: var(--dark-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}
.cat-price {
  flex-shrink: 0;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  background: var(--coral);
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 20px -8px var(--coral);
  white-space: nowrap;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.photo-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--white);
  box-shadow: 0 10px 30px -12px rgba(45,27,51,0.3);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.photo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -16px rgba(45,27,51,0.4);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-card:hover img { transform: scale(1.06); }
.photo-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 16px 14px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  background: linear-gradient(to top, rgba(45,27,51,0.82), transparent);
}

/* horizontal carousel rail (single row, scrollable) */
.photo-rail {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rail-track {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 14px 4px 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(45,27,51,0.2) transparent;
}
.rail-track::-webkit-scrollbar { height: 8px; }
.rail-track::-webkit-scrollbar-track { background: transparent; }
.rail-track::-webkit-scrollbar-thumb {
  background: rgba(45,27,51,0.18);
  border-radius: 4px;
}
.rail-track .photo-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
}
.rail-arrow {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--dark);
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem; line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px -8px rgba(45,27,51,0.4);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
  z-index: 2;
}
.rail-arrow:hover { transform: scale(1.12); background: var(--coral); color: var(--white); }
.rail-arrow:active { transform: scale(0.95); }
.rail-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  background: var(--white);
  color: var(--dark);
}

@media (max-width: 768px) {
  .rail-track .photo-card { flex-basis: 200px; }
  .rail-arrow { width: 40px; height: 40px; font-size: 1.5rem; }
}

/* === GIFT SHOWCASE (COVERFLOW) === */
.giftshow {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.giftshow .section-tag {
  background: rgba(255,107,107,0.12);
  color: var(--coral);
  letter-spacing: 1px;
}
/* ambient colour wash that follows the active card */
.giftshow-ambient {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 140%;
  z-index: 0;
  background:
    radial-gradient(closest-side at 50% 38%, var(--cf-accent, rgba(255,181,158,0.55)), transparent 72%);
  filter: blur(20px);
  opacity: 0.6;
  transition: background 0.7s ease;
  pointer-events: none;
}
.giftshow .section-header,
.giftshow .coverflow,
.giftshow .cf-meta,
.giftshow .giftshow-cta { position: relative; z-index: 1; }

.coverflow {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cf-stage {
  position: relative;
  flex: 1;
  height: 600px;
  perspective: 1700px;
  transform-style: preserve-3d;
}
.cf-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(78vw, 420px);
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  background: var(--card-accent, #fff);
  box-shadow: 0 30px 70px -25px rgba(45,27,51,0.5);
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.55s ease,
              box-shadow 0.4s ease;
  will-change: transform, opacity;
}
.cf-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* real product photos fill the card edge-to-edge */
.cf-card.cf-photo img { object-fit: cover; }
.cf-card.is-active {
  box-shadow: 0 40px 90px -25px rgba(45,27,51,0.62);
}
.cf-card.is-active::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 26px;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.7);
  pointer-events: none;
}

.cf-arrow {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--dark);
  font-size: 2rem;
  line-height: 1;
  font-family: 'Baloo 2', cursive;
  cursor: pointer;
  box-shadow: 0 10px 28px -10px rgba(45,27,51,0.4);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  z-index: 3;
}
.cf-arrow:hover {
  transform: scale(1.12);
  background: var(--coral);
  color: var(--white);
}
.cf-arrow:active { transform: scale(0.96); }

.cf-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.cf-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  color: var(--dark);
  transition: opacity 0.3s ease;
}
.cf-dots {
  display: flex;
  gap: 10px;
}
.cf-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(45,27,51,0.18);
  cursor: pointer;
  padding: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}
.cf-dot:hover { transform: scale(1.25); }
.cf-dot.is-active {
  background: var(--coral);
  transform: scale(1.3);
}

.giftshow-cta {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 720px) {
  .cf-stage { height: 500px; }
  .cf-card { width: min(82vw, 340px); }
  .cf-arrow { width: 46px; height: 46px; font-size: 1.6rem; }
}

/* === PROCESS === */
.process { background: linear-gradient(180deg, var(--cream), #F0F7FF, var(--cream)); }
.process .section-tag { background: rgba(78,205,196,0.15); color: var(--teal-dark); }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px; max-width: 1100px; margin: 0 auto;
}

.process-step {
  text-align: center; padding: 40px 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(45,27,51,0.05);
  transition: all 0.3s ease; position: relative;
}
.process-step:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(45,27,51,0.1); }

.step-num {
  position: absolute; top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 0.9rem;
  color: var(--dark);
}
.process-step:nth-child(1) .step-num { background: var(--coral); }
.process-step:nth-child(2) .step-num { background: var(--teal); }
.process-step:nth-child(3) .step-num { background: var(--lavender); }
.process-step:nth-child(4) .step-num { background: var(--sunshine); }

.step-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.process-step h4 { font-size: 1.15rem; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--dark-soft); line-height: 1.6; }

/* === TESTIMONIALS === */
.testimonials { background: var(--white); }
.testimonials .section-tag { background: rgba(195,166,255,0.15); color: #8B5CF6; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; max-width: 1100px; margin: 0 auto;
}

.testimonial-card {
  padding: 32px; border-radius: var(--radius);
  background: var(--cream); position: relative;
  transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(45,27,51,0.08); }
.testimonial-card::before {
  content: '"'; font-family: 'Baloo 2', cursive;
  font-size: 4rem; line-height: 1;
  position: absolute; top: 16px; left: 28px; opacity: 0.15;
}

.testimonial-card:nth-child(1) { border-top: 4px solid var(--coral); }
.testimonial-card:nth-child(2) { border-top: 4px solid var(--teal); }
.testimonial-card:nth-child(3) { border-top: 4px solid var(--lavender); }

.stars { color: var(--sunshine); font-size: 0.9rem; margin-bottom: 14px; }

.testimonial-text { font-size: 1rem; color: var(--dark-soft); margin-bottom: 20px; font-style: italic; position: relative; z-index: 1; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.testimonial-card:nth-child(1) .author-avatar { background: rgba(255,107,107,0.15); }
.testimonial-card:nth-child(2) .author-avatar { background: rgba(78,205,196,0.15); }
.testimonial-card:nth-child(3) .author-avatar { background: rgba(195,166,255,0.15); }
.author-info .name { font-weight: 700; font-size: 0.95rem; }
.author-info .role { font-size: 0.8rem; color: var(--dark-soft); }

/* === CONTACT === */
.contact { background: linear-gradient(180deg, var(--cream) 0%, #FFF0F5 100%); }
.contact .section-tag { background: rgba(255,133,161,0.15); color: var(--rose); }

.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1100px; margin: 0 auto;
}

.contact-info h3 { font-size: 1.8rem; margin-bottom: 16px; }
.contact-info p { color: var(--dark-soft); font-size: 1.05rem; margin-bottom: 30px; }

.contact-methods { display: flex; flex-direction: column; gap: 20px; }

.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 20px; background: var(--white);
  border-radius: var(--radius-sm); transition: all 0.3s ease;
  text-decoration: none; color: var(--dark);
}
.contact-method:hover { transform: translateX(8px); box-shadow: 0 4px 20px rgba(45,27,51,0.08); }

.method-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.method-icon svg { width: 26px; height: 26px; }
.contact-method .method-icon.tiktok-icon { background: #010101; color: var(--white); }
.contact-method .method-icon.instagram-icon {
  background: linear-gradient(45deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
  color: var(--white);
}

.method-text .method-label { font-weight: 700; font-size: 1rem; display: block; }
.method-text .method-value { color: var(--dark-soft); font-size: 0.9rem; }

.contact-form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: 0 8px 40px rgba(45,27,51,0.06);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px;
  border: 2px solid #E5E7EB; border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif; font-size: 1rem;
  transition: all 0.3s ease; background: var(--cream);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(78,205,196,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  width: 100%; padding: 16px; border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--coral), var(--rose));
  color: var(--white);
  font-family: 'Baloo 2', cursive; font-size: 1.1rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255,107,107,0.3);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,107,107,0.4); }
.btn-submit:disabled { opacity: 0.7; cursor: default; transform: none; box-shadow: none; }

.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  min-height: 1.2em;
}
.form-status.is-success { color: var(--teal-dark, #2A9D8F); }
.form-status.is-error { color: var(--coral); }

/* === NEWSLETTER POPUP === */
.newsletter-overlay {
  position: fixed; inset: 0;
  background: rgba(45,27,51,0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.newsletter-overlay.show { display: flex; }

.newsletter-popup {
  background: var(--white); border-radius: var(--radius);
  padding: 48px; max-width: 480px; width: 100%;
  text-align: center; position: relative;
  animation: popIn 0.4s ease;
  box-shadow: 0 20px 60px rgba(45,27,51,0.2);
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.newsletter-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: var(--cream);
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s;
}
.newsletter-close:hover { background: var(--coral); color: var(--white); }

.newsletter-popup h3 { font-size: 1.8rem; margin-bottom: 8px; }
.newsletter-popup .emoji-big { font-size: 4rem; display: block; margin-bottom: 16px; }
.newsletter-popup p { color: var(--dark-soft); margin-bottom: 24px; }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 10px; }
.newsletter-form .form-status { flex-basis: 100%; margin-top: 4px; }
.newsletter-form input {
  flex: 1; padding: 14px 18px;
  border: 2px solid #E5E7EB; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: 1rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--teal); }
.newsletter-form button {
  padding: 14px 28px; border: none; border-radius: 50px;
  background: linear-gradient(135deg, var(--coral), var(--rose));
  color: var(--white); font-family: 'Baloo 2', cursive;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  white-space: nowrap; transition: 0.3s;
}
.newsletter-form button:hover { transform: translateY(-2px); }

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 40px 30px;
}
.footer-content {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; max-width: 1100px; margin: 0 auto 40px;
}
.footer-brand .logo { font-size: 1.5rem; margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; max-width: 300px; }

.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.95rem; transition: all 0.3s ease;
}
.footer-links a:hover { color: var(--teal); transform: translateX(4px); display: inline-block; }

.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; text-decoration: none;
  transition: all 0.3s ease; background: rgba(255,255,255,0.08);
}
.social-btn { color: var(--white); }
.social-btn:hover { transform: translateY(-3px); }
.social-btn:nth-child(1):hover { background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); }
.social-btn:nth-child(2):hover { background: #010101; }
.social-btn svg { width: 18px; height: 18px; }

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

/* === ANIMATIONS === */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 300px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 20px; }
  .hero { padding: 100px 20px 60px; }
  .navbar { padding: 12px 20px; }

  .nav-links {
    display: none; position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 20px; gap: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-head { flex-wrap: wrap; }
  .about-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
}
