/* ============================================
   STASHKART - STATIC SITE STYLES
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --off-black: #1a1a1a;
  --dark: #2a2a2a;
  --mid: #666;
  --light: #aaa;
  --border: #e8e8e8;
  --bg: #fafaf8;
  --white: #ffffff;
  --wa-green: #25d366;
  --wa-dark: #128c7e;
  --accent: #0a0a0a;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.14);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.section { padding: 96px 0; }

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

a { color: inherit; text-decoration: none; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--transition);
  white-space: nowrap;
}
.btn-wa {
  background: var(--wa-green); color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  background: var(--wa-dark);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---- SECTION LABELS / HEADERS ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mid);
  margin-bottom: 16px;
}
.section-label.light { color: rgba(255,255,255,0.6); }
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--mid); }
.section-sub { color: var(--mid); font-size: 1.05rem; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }
.section-header .section-label { display: block; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,250,248,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 34px; width: auto; display: block; }
.logo-sm img { height: 28px; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 0.9rem; font-weight: 500;
}
.nav-links a { color: var(--dark); transition: color var(--transition); }
.nav-links a:hover { color: var(--black); }
.nav-links .btn { margin-left: 8px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--black);
  border-radius: 2px; transition: all 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); }

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 8px 24px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 14px 0; font-size: 1rem; font-weight: 500;
  color: var(--dark); border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link.cta-link { color: var(--black); font-weight: 700; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
  background: var(--bg);
}
.hero-bg-text {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-size: clamp(120px, 20vw, 240px); font-weight: 900; line-height: 1;
  color: rgba(0,0,0,0.03); user-select: none; pointer-events: none;
  letter-spacing: -0.04em; white-space: nowrap;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 50px;
  background: var(--black); color: var(--white);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title em { font-style: italic; color: var(--mid); }
.hero-sub {
  font-size: 1.125rem; color: var(--mid); max-width: 520px;
  margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--light); opacity: 0.7;
}
.scroll-line {
  width: 1px; height: 40px; background: linear-gradient(var(--light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-strip {
  background: var(--black); color: var(--white);
  padding: 14px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 32px; align-items: center;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span { font-size: 0.85rem; font-weight: 600; white-space: nowrap; letter-spacing: 0.05em; }
.marquee-track .dot { color: rgba(255,255,255,0.3); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual { position: relative; min-height: 400px; }
.about-img-placeholder {
  width: 100%; height: 380px;
  background: linear-gradient(135deg, #f5f5f3 0%, #ebebea 100%);
  border-radius: var(--radius-lg); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.founders-initials {
  font-family: var(--serif); font-size: 3rem; font-weight: 700; color: var(--dark);
}
.about-img-placeholder p { font-weight: 600; font-size: 0.95rem; }
.about-img-placeholder span { font-size: 0.8rem; color: var(--mid); }

.about-card {
  position: absolute; background: var(--black); color: var(--white);
  padding: 16px 20px; border-radius: var(--radius); min-width: 170px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem; font-weight: 500;
}
.about-card-1 { top: 24px; right: -24px; }
.about-card-2 { bottom: 40px; left: -24px; }
.about-icon { font-size: 1.25rem; }

.about-copy { display: flex; flex-direction: column; gap: 20px; }
.about-copy p { color: var(--mid); line-height: 1.75; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.pill {
  padding: 7px 16px; border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.8rem; font-weight: 600; color: var(--dark);
  transition: all var(--transition);
}
.pill:hover { border-color: var(--black); background: var(--black); color: var(--white); }

/* ============================================
   WHAT WE DO
   ============================================ */
.what-we-do { background: var(--bg); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1px solid var(--border);
  transition: all var(--transition);
}
.product-card:hover {
  border-color: var(--black);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.product-icon { font-size: 2rem; margin-bottom: 16px; }
.product-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.product-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.65; }
.product-card-cta {
  background: var(--black); color: var(--white);
  border-color: var(--black);
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
}
.product-card-cta h3 { color: var(--white); font-size: 1.1rem; }
.product-card-cta p { color: rgba(255,255,255,0.6); }
.product-card-cta:hover { transform: translateY(-4px); border-color: var(--black); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how { background: var(--white); }
.steps {
  display: flex; gap: 24px; align-items: flex-start;
}
.step {
  flex: 1; padding: 36px 28px;
  background: var(--bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.step-num {
  font-size: 2.5rem; font-weight: 900; color: var(--border); letter-spacing: -0.04em;
  margin-bottom: 16px; line-height: 1;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: var(--mid); line-height: 1.65; }
.step-arrow {
  font-size: 1.5rem; color: var(--light); align-self: center;
  flex-shrink: 0; padding-top: 8px;
}

/* ============================================
   GALLERY
   ============================================ */
/* PRICING */
.pricing { background: var(--white); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: var(--bg);
}
.price-info { padding: 12px 14px 14px; }
.price-info h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
.price { font-size: 0.9rem; color: var(--mid); font-weight: 600; }
.pricing-note {
  text-align: center; margin-top: 32px;
  color: var(--mid); font-size: 0.9rem;
}
.pricing-note a { color: var(--black); font-weight: 600; text-decoration: underline; }

.btn-catalog { margin-top: 16px; }

/* CLIENTS */
.clients { background: var(--bg); padding: 48px 0; }
.clients-label {
  text-align: center; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--light);
  margin-bottom: 20px;
}
.clients-row {
  display: flex; justify-content: center; align-items: center;
  gap: 20px 48px; flex-wrap: wrap;
}
.clients-row span {
  font-size: 1.05rem; font-weight: 700; color: var(--mid);
  letter-spacing: -0.01em; white-space: nowrap;
}

/* INSTAGRAM */
.insta { background: var(--white); }
.insta-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.insta-copy p { color: var(--mid); margin: 12px 0 24px; }
.btn-insta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; font-weight: 600; font-size: 0.95rem;
  padding: 12px 24px; border-radius: 50px;
}
.insta-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.insta-thumbs a {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5;
  transition: transform var(--transition);
}
.insta-thumbs a:hover { transform: scale(1.04); }
.insta-thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* FAQ */
.faq { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 22px; margin-bottom: 12px;
}
.faq-list summary {
  font-weight: 700; font-size: 1rem; cursor: pointer;
  list-style: none; position: relative; padding-right: 32px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); font-size: 1.4rem; font-weight: 400; color: var(--mid);
  transition: transform var(--transition);
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin-top: 12px; color: var(--mid); line-height: 1.6; font-size: 0.95rem; }

.gallery { background: var(--bg); }
/* Masonry-style columns: images keep their natural aspect ratio, never cropped */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  background: var(--border);
  break-inside: avoid;
  margin-bottom: 16px;
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-placeholder {
  width: 100%; height: 100%; min-height: 200px;
  background: linear-gradient(135deg, #f0f0ee 0%, #e8e8e6 100%);
  display: flex; align-items: center; justify-content: center;
}
.gallery-placeholder-inner {
  text-align: center; color: var(--light); display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.gallery-icon { font-size: 2rem; opacity: 0.5; }
.gallery-placeholder-inner p { font-size: 0.8rem; font-weight: 500; }
.gallery-item img {
  width: 100%; height: auto;
  display: block; transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  opacity: 0; transition: opacity var(--transition);
}
.gallery-tag {
  display: inline-block; background: var(--white); color: var(--black);
  font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 50px;
}
.gallery-note {
  text-align: center; margin-top: 32px;
  color: var(--mid); font-size: 0.9rem;
}
.gallery-note strong { color: var(--black); }

/* ============================================
   REVIEWS
   ============================================ */
.reviews { background: var(--white); }
.reviews-aggregate {
  display: flex; align-items: center; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-top: 16px;
}
.agg-stars { font-size: 1.3rem; color: #f4b400; letter-spacing: -0.05em; }
.agg-score { font-size: 1.75rem; font-weight: 900; letter-spacing: -0.04em; }
.agg-count { font-size: 0.85rem; color: var(--mid); }
.google-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border: 1.5px solid var(--border); border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; color: var(--dark);
  transition: all var(--transition); margin-left: 8px;
}
.google-badge:hover { border-color: var(--black); box-shadow: var(--shadow); }
.ml-auto { margin-left: auto; }

.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 28px 24px; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-header {
  display: flex; align-items: center; gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.9rem; }
.review-stars { font-size: 0.8rem; color: #f4b400; letter-spacing: -0.05em; margin-top: 2px; }
.review-text { font-size: 0.88rem; color: var(--mid); line-height: 1.7; }
.google-icon { display: flex; align-items: center; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--black); color: var(--white);
  padding: 96px 0;
}
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cta-text h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 16px;
}
.cta-text p { color: rgba(255,255,255,0.6); line-height: 1.7; }
.cta-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.cta-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--off-black); color: var(--white); }
.footer-inner {
  padding: 64px 24px 48px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--white); color: var(--white); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); text-align: center; }

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.fab-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa-green); color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: all var(--transition);
}
.fab-wa:hover {
  background: var(--wa-dark);
  box-shadow: 0 6px 32px rgba(37,211,102,0.6);
  transform: scale(1.08);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-card-1, .about-card-2 { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-bg-text { display: none; }
  .hero-title { font-size: 2.25rem; }
  .hero-scroll-hint { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { min-height: 0; }

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

  .steps { flex-direction: column; }
  .step-arrow { display: none; }

  .gallery-grid { columns: 2; }
  .insta-inner { grid-template-columns: 1fr; gap: 32px; }
  .insta-thumbs { grid-template-columns: repeat(2, 1fr); }

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

  .cta-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { columns: 1; }
  .footer-links { grid-template-columns: 1fr; }
}
