/* =====================================================
   BLOOM FLOWER — Ana CSS
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --pink:       #E91E63;
  --pink-dark:  #C2185B;
  --pink-light: #F48FB1;
  --gold:       #FFD700;
  --gold-dark:  #F0C000;
  --dark:       #06030a;
  --dark2:      #100720;
  --dark3:      #1c1030;
  --glass:      rgba(255,255,255,0.06);
  --glass-b:    rgba(255,255,255,0.12);
  --white:      #ffffff;
  --muted:      rgba(255,255,255,0.55);
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --nav-h:      76px;
  --radius:     20px;
  --trans:      0.4s cubic-bezier(.25,.8,.25,1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 4px; }

/* ── PETAL CANVAS ── */
#petal-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: var(--trans);
}
.nav.scrolled {
  background: rgba(6,3,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-b);
  box-shadow: 0 4px 40px rgba(233,30,99,0.08);
}
.nav-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 20px rgba(233,30,99,0.4);
}
.nav-logo-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-text span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.3s;
}
.nav-phone:hover { color: var(--gold); }
.btn-nav {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(233,30,99,0.35);
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233,30,99,0.5);
}

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: rgba(10,5,20,0.97);
  backdrop-filter: blur(30px);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.7,0,.3,1);
  padding: 100px 32px 40px;
  border-left: 1px solid var(--glass-b);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer a {
  display: block;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-radius: 12px;
  transition: var(--trans);
}
.nav-drawer a:hover, .nav-drawer a.active {
  color: var(--white);
  background: var(--glass);
}
.nav-drawer-footer {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--glass-b);
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,3,10,0.88) 0%,
    rgba(6,3,10,0.60) 50%,
    rgba(233,30,99,0.15) 100%
  );
}
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(233,30,99,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,215,0,0.1) 0%, transparent 50%),
    linear-gradient(160deg, #06030a 0%, #100720 50%, #1c1030 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--nav-h);
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(233,30,99,0.12);
  border: 1px solid rgba(233,30,99,0.25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 28px;
}
.hero-tag::before { content: '✦'; color: var(--gold); }
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--pink-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 44px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 72px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--trans);
  box-shadow: 0 8px 32px rgba(233,30,99,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(233,30,99,0.55);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--trans);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0a00;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--trans);
  box-shadow: 0 8px 32px rgba(255,215,0,0.3);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(255,215,0,0.45);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 600px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 36px;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 4px;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ── SECTION COMMONS ── */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}
.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--pink-light);
}
.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-sub { margin: 0 auto; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── STRIP ── */
.strip {
  background: linear-gradient(90deg, var(--pink-dark), var(--pink), #ff5283);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.strip-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}
.strip-item span { color: var(--gold); font-size: 16px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img:hover img { transform: scale(1.06); }
.about-img-main {
  grid-column: 1 / -1;
  height: 280px;
}
.about-img-sm { height: 180px; }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 5;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(255,215,0,0.35);
}
.about-badge-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a0a00;
  line-height: 1;
}
.about-badge-txt {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(26,10,0,0.7);
  text-align: center;
  margin-top: 2px;
}
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.about-list-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(233,30,99,0.3);
}

/* ── SERVICES ── */
.section-services { background: var(--dark2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233,30,99,0.35);
  box-shadow: 0 32px 64px rgba(233,30,99,0.12);
}
.service-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,3,10,0.85), transparent 60%);
}
.service-icon {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 28px;
}
.service-body { padding: 24px; }
.service-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.service-tag {
  padding: 4px 12px;
  background: rgba(233,30,99,0.12);
  border: 1px solid rgba(233,30,99,0.2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--pink-light);
}
.service-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 10px; }

/* ── GALLERY / PRODUCTS ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
  margin-top: 60px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item:nth-child(4) {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,3,10,0.8), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info { }
.gallery-cat {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.gallery-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
}
.gallery-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: var(--gold);
  color: #1a0a00;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* ── TESTIMONIALS ── */
.section-testimonials { background: var(--dark3); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testi-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--trans);
  position: relative;
}
.testi-card:hover {
  border-color: rgba(233,30,99,0.3);
  transform: translateY(-6px);
}
.testi-quote {
  font-size: 48px;
  line-height: 1;
  color: var(--pink);
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.testi-role {
  font-size: 11px;
  color: var(--gold);
  margin-top: 2px;
}

/* ── CTA ── */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(233,30,99,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(255,215,0,0.1) 0%, transparent 50%),
    var(--dark2);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cta-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--pink-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
/* Floating petals in CTA */
.cta-petal {
  position: absolute;
  font-size: 24px;
  opacity: 0.15;
  animation: floatPetal 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes floatPetal {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(120deg); }
  66% { transform: translateY(15px) rotate(240deg); }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-img {
  position: absolute;
  inset: 0;
}
.page-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,3,10,0.9) 0%, rgba(6,3,10,0.5) 60%, rgba(6,3,10,0.2) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 60px;
}
.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--pink); opacity: 0.5; }
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  margin-top: 60px;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: 16px;
  transition: var(--trans);
}
.contact-card:hover {
  border-color: rgba(233,30,99,0.3);
  transform: translateX(6px);
}
.contact-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(233,30,99,0.2), rgba(194,24,91,0.1));
  border: 1px solid rgba(233,30,99,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}
.contact-card-val {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}
.contact-card-val a { color: inherit; transition: color 0.3s; }
.contact-card-val a:hover { color: var(--gold); }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--glass-b);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(30%) invert(90%) hue-rotate(180deg); }

/* Contact form */
.contact-form-wrap {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius);
  padding: 40px;
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-b);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233,30,99,0.12);
}
.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.3)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.form-select option { background: #1c1030; color: var(--white); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: 0 8px 32px rgba(233,30,99,0.35);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(233,30,99,0.5);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-msg {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  display: none;
}
.form-msg.success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #86efac;
  display: block;
}
.form-msg.error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  display: block;
}

/* ── ABOUT PAGE ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.value-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--trans);
}
.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233,30,99,0.3);
}
.value-icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: block;
}
.value-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.value-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.team-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: var(--trans);
}
.team-card:hover { transform: translateY(-6px); }
.team-img {
  height: 240px;
  overflow: hidden;
}
.team-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.team-card:hover .team-img img { transform: scale(1.06); }
.team-body { padding: 24px; }
.team-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.team-role { font-size: 12px; color: var(--pink-light); letter-spacing: 0.1em; }

/* ── PRODUCTS PAGE ── */
.products-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 48px 0 40px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid var(--glass-b);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(233,30,99,0.35);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233,30,99,0.3);
  box-shadow: 0 24px 60px rgba(233,30,99,0.1);
}
.product-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,3,10,0.6);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card:hover .product-img-overlay { opacity: 1; }
.product-ask-btn {
  padding: 10px 24px;
  background: var(--pink);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.3s;
}
.product-ask-btn:hover { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 10px; right: 10px;
  padding: 4px 10px;
  background: var(--gold);
  color: #1a0a00;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
}
.product-body { padding: 20px; }
.product-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-main {
  padding: 80px 0 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 24px rgba(233,30,99,0.35);
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}
.footer-brand-sub {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--muted);
  transition: var(--trans);
}
.footer-social:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, gap 0.3s;
}
.footer-links a::before { content: '›'; color: var(--pink); font-size: 16px; }
.footer-links a:hover { color: var(--white); gap: 12px; }
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.footer-contact-icon { color: var(--pink); margin-top: 1px; flex-shrink: 0; }
.footer-contact-item a { transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.footer-hour {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.footer-hour-time { color: var(--gold); font-weight: 600; }
.footer-hour-closed { color: #f87171; }
.footer-newsletter label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.footer-newsletter-form {
  display: flex;
  gap: 8px;
}
.footer-newsletter-form input {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--white);
  font-size: 12px;
  outline: none;
  transition: border-color 0.3s;
}
.footer-newsletter-form input:focus { border-color: var(--pink); }
.footer-newsletter-form button {
  padding: 10px 20px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.footer-newsletter-form button:hover { background: var(--pink-dark); }
.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-inner a { color: var(--gold); transition: color 0.3s; }
.footer-bottom-inner a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-content { padding: 0 24px; padding-top: calc(var(--nav-h) + 20px); }
  .hero-h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { bottom: -10px; right: -10px; width: 90px; height: 90px; }
  .about-badge-num { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / -1; grid-row: auto; height: 220px; }
  .gallery-item:nth-child(4) { grid-column: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { height: 280px; }
  .page-hero-content { padding: 0 24px 40px; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; height: 200px; }
  .values-grid { grid-template-columns: 1fr; }
}
