/* ==========================================================================
   Just My Fit Clothing Store — Global Stylesheet
   Palette: charcoal base · pink + purple (logo) · royal blue accent · soft neutrals
   ========================================================================== */

:root {
  /* Brand colors */
  --black: #0d0d12;
  --charcoal: #16161d;
  --charcoal-soft: #1f1f29;
  --ink: #2a2a33;

  --pink: #e6489b;
  --pink-bright: #ff5fae;
  --purple: #7d2c98;
  --purple-deep: #5c1f78;
  --royal: #2540c4;
  --royal-soft: #4360e0;

  --neutral-bg: #faf7fb;
  --neutral-card: #ffffff;
  --neutral-line: #ece6f0;
  --text: #232027;
  --text-soft: #5d5766;
  --text-muted: #8a8494;
  --white: #ffffff;

  /* Gradients */
  --grad-brand: linear-gradient(120deg, var(--purple) 0%, var(--pink) 55%, var(--royal) 130%);
  --grad-brand-soft: linear-gradient(120deg, #7d2c98 0%, #e6489b 100%);
  --grad-dark: linear-gradient(160deg, #14141b 0%, #1d1526 60%, #160f22 100%);

  /* Type */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 16px rgba(40, 20, 60, 0.06);
  --shadow-md: 0 14px 40px rgba(50, 20, 70, 0.12);
  --shadow-lg: 0 24px 60px rgba(50, 20, 70, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--neutral-bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Utility ----- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}
.text-grad {
  background: var(--grad-brand-soft);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section { padding: 92px 0; }
.section-tight { padding: 64px 0; }
.center { text-align: center; }
.lead {
  font-size: 1.12rem;
  color: var(--text-soft);
  max-width: 640px;
}
.center .lead { margin-left: auto; margin-right: auto; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad-brand-soft);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(125, 44, 152, 0.34);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(230, 72, 155, 0.42); }
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn-ink {
  background: var(--ink);
  color: var(--white);
}
.btn-ink:hover { background: var(--purple-deep); }
.btn-royal {
  background: var(--royal);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(37, 64, 196, 0.3);
}
.btn-royal:hover { background: var(--royal-soft); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 18, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--white);
  line-height: 1.05;
}
.brand-name span { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pink-bright); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 0.96rem;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -7px;
  height: 2px; width: 0;
  background: var(--grad-brand-soft);
  transition: width 0.28s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--charcoal);
    padding: 10px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links a { width: 100%; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 1.05rem; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .nav-cta .btn { padding: 10px 16px; font-size: 0.82rem; }
}

/* Phones: drop the header call pill (the floating call button covers it) */
@media (max-width: 560px) {
  .nav-cta { display: none; }
  .nav { height: 64px; }
  .brand img { height: 42px; }
  .nav-links { inset: 64px 0 auto 0; max-height: calc(100vh - 64px); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--grad-dark);
  color: var(--white);
  overflow: hidden;
  padding: 84px 0 96px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(230,72,155,0.42), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  bottom: -200px; left: -140px;
  background: radial-gradient(circle, rgba(37,64,196,0.4), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-logo {
  width: 132px;
  border-radius: 16px;
  margin-bottom: 26px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero p.sub {
  font-size: 1.17rem;
  color: rgba(255,255,255,0.86);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.pill b { color: var(--pink-bright); font-weight: 700; }

/* Hero visual collage */
.hero-visual {
  position: relative;
  min-height: 440px;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255,255,255,0.1);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card.c1 { width: 60%; height: 78%; top: 0; right: 4%; z-index: 2; }
.hero-card.c2 { width: 46%; height: 52%; bottom: 0; left: 0; z-index: 3; }
.hero-card.c3 {
  width: 38%; height: 30%; bottom: 14%; right: 0; z-index: 4;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--grad-brand-soft); border: none; padding: 14px;
}
.hero-card.c3 .stat { color: #fff; }
.hero-card.c3 .stat b { font-family: var(--font-head); font-size: 2rem; display: block; line-height: 1; }
.hero-card.c3 .stat span { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.92; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 360px; max-width: 460px; margin: 0 auto; width: 100%; }
}
@media (max-width: 560px) {
  .hero { padding: 56px 0 64px; }
  .hero-visual { min-height: 300px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ==========================================================================
   Intro / image-text band
   ========================================================================== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3.4;
}
.intro-media img { width: 100%; height: 100%; object-fit: cover; }
.intro-media .badge-float {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(13,13,18,0.82);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
}
.intro-media .badge-float b { font-family: var(--font-head); font-size: 1.5rem; color: var(--pink-bright); }
.intro-media .badge-float span { font-size: 0.82rem; display: block; opacity: 0.85; }

@media (max-width: 820px) {
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ==========================================================================
   Product / category cards
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--neutral-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-line);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-media img { transform: scale(1.07); }
.card-media .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(13,13,18,0.78);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
}
.card-body { padding: 22px 24px 26px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { color: var(--text-soft); font-size: 0.96rem; margin: 0; }

@media (max-width: 900px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Why shop — feature blocks
   ========================================================================== */
.why { background: var(--charcoal); color: #fff; position: relative; }
.why .eyebrow { color: var(--pink-bright); }
.why h2 { color: #fff; }
.why .lead { color: rgba(255,255,255,0.78); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.feature:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.feature .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-brand-soft);
  margin-bottom: 18px;
}
.feature .ico svg { width: 26px; height: 26px; stroke: #fff; }
.feature h3 { color: #fff; font-size: 1.18rem; margin-bottom: 6px; }
.feature p { color: rgba(255,255,255,0.72); font-size: 0.94rem; margin: 0; }

@media (max-width: 880px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats-strip {
  background: var(--grad-brand);
  color: #fff;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item b {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  display: block;
  line-height: 1;
}
.stat-item span { font-size: 0.9rem; opacity: 0.92; letter-spacing: 0.04em; }
@media (max-width: 620px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }

/* ==========================================================================
   Location / Visit
   ========================================================================== */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.visit-card {
  background: var(--neutral-card);
  border-radius: var(--radius);
  border: 1px solid var(--neutral-line);
  box-shadow: var(--shadow-sm);
  padding: 38px 36px;
}
.visit-card h2 { margin-bottom: 8px; }
.info-list { margin: 24px 0 28px; }
.info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--neutral-line);
}
.info-list li:last-child { border-bottom: 0; }
.info-list .ico {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(125,44,152,0.12), rgba(230,72,155,0.12));
}
.info-list .ico svg { width: 20px; height: 20px; stroke: var(--purple); }
.info-list .info-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin: 0; }
.info-list .info-val { font-weight: 600; margin: 0; color: var(--text); }
.info-list a.info-val:hover { color: var(--pink); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-line);
  aspect-ratio: 1 / 1;
  position: relative;
  background: #ece6f0;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 820px) { .visit-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ==========================================================================
   Social band
   ========================================================================== */
.social-band {
  background: var(--grad-dark);
  color: #fff;
  text-align: center;
}
.social-band h2 { color: #fff; }
.social-band .lead { color: rgba(255,255,255,0.78); margin: 0 auto 28px; }
.social-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.social-links a {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  transition: transform 0.25s var(--ease), background 0.25s;
}
.social-links a:hover { transform: translateY(-4px); background: var(--grad-brand-soft); border-color: transparent; }
.social-links a svg { width: 24px; height: 24px; fill: #fff; }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  background: var(--grad-dark);
  color: #fff;
  text-align: center;
  padding: 76px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  top: -180px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(230,72,155,0.32), transparent 65%);
  filter: blur(10px);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.84); max-width: 620px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--pink-bright); }

/* ==========================================================================
   Product detail rows (Products page)
   ========================================================================== */
.prod-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 80px;
}
.prod-row:last-child { margin-bottom: 0; }
.prod-row.reverse .prod-media { order: 2; }
.prod-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5 / 4;
}
.prod-media img { width: 100%; height: 100%; object-fit: cover; }
.prod-text .num {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.prod-text h2 { margin: 6px 0 14px; }
.prod-text ul.checks { margin-top: 18px; }
.prod-text ul.checks li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0;
  color: var(--text-soft);
}
.prod-text ul.checks svg { width: 20px; height: 20px; flex: 0 0 20px; stroke: var(--purple); margin-top: 3px; }

@media (max-width: 820px) {
  .prod-row { grid-template-columns: 1fr; gap: 30px; margin-bottom: 56px; }
  .prod-row.reverse .prod-media { order: 0; }
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: var(--grad-brand);
  color: #fff;
  text-align: center;
  border-radius: 0;
}
.cta-band h2 { color: #fff; max-width: 720px; margin: 0 auto 14px; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.7); }
.cta-band .btn-light { background: #fff; color: var(--purple-deep); }
.cta-band .btn-light:hover { background: #fff; box-shadow: 0 14px 30px rgba(0,0,0,0.2); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--neutral-card);
  border: 1px solid var(--neutral-line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: #e3d3ec; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-q .chev {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-brand-soft);
  transition: transform 0.32s var(--ease);
}
.faq-q .chev svg { width: 14px; height: 14px; stroke: #fff; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner { padding: 0 24px 22px; color: var(--text-soft); }
.faq-a-inner a { color: var(--pink); font-weight: 600; }

/* ==========================================================================
   Contact block (shared)
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-tile {
  background: var(--neutral-card);
  border: 1px solid var(--neutral-line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.contact-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-tile .ico {
  width: 58px; height: 58px;
  margin: 0 auto 18px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(125,44,152,0.12), rgba(230,72,155,0.12));
}
.contact-tile .ico svg { width: 26px; height: 26px; stroke: var(--purple); }
.contact-tile h3 { font-size: 1.15rem; margin-bottom: 6px; }
.contact-tile p { color: var(--text-soft); font-size: 0.95rem; margin: 0 0 4px; }
.contact-tile a { color: var(--pink); font-weight: 600; word-break: break-word; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 56px; border-radius: 10px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; max-width: 320px; }
.footer-tagline {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--pink-bright);
  font-size: 1.05rem;
  margin-top: 10px;
}
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--pink-bright); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; font-size: 0.94rem; }
.footer-contact svg { width: 18px; height: 18px; stroke: var(--pink); flex: 0 0 18px; margin-top: 3px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  transition: background 0.25s, transform 0.25s var(--ease);
}
.footer-social a:hover { background: var(--grad-brand-soft); transform: translateY(-3px); border-color: transparent; }
.footer-social svg { width: 20px; height: 20px; fill: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--pink-bright); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ==========================================================================
   Floating call button (mobile)
   ========================================================================== */
.fab-call {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--grad-brand-soft);
  display: none;
  place-items: center;
  box-shadow: 0 10px 26px rgba(230,72,155,0.5);
  animation: pulse 2.4s infinite;
}
.fab-call svg { width: 26px; height: 26px; stroke: #fff; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(230,72,155,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(230,72,155,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,72,155,0); }
}
@media (max-width: 900px) { .fab-call { display: grid; } }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .fab-call { animation: none; }
}

/* ==========================================================================
   Gallery / Lookbook
   ========================================================================== */
.ig-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--purple);
}
.ig-handle svg { width: 22px; height: 22px; fill: var(--purple); }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.filter-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--neutral-line);
  background: var(--neutral-card);
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--purple); color: var(--purple); }
.filter-btn.active {
  background: var(--grad-brand-soft);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(125, 44, 152, 0.28);
}
.gallery .g-item.is-hidden { display: none; }
.gallery-empty { text-align: center; color: var(--text-muted); padding: 30px 0; }

.gallery {
  column-count: 3;
  column-gap: 20px;
}
.gallery .g-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: linear-gradient(135deg, #2a1733, #3a1c46);
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
}
.gallery .g-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery .g-item:hover img { transform: scale(1.05); }
.gallery .g-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  text-align: left;
  background: linear-gradient(to top, rgba(13,13,18,0.82) 0%, rgba(13,13,18,0.05) 45%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery .g-item:hover .g-overlay,
.gallery .g-item:focus-visible .g-overlay { opacity: 1; }
.gallery .g-overlay h3 { color: #fff; font-size: 1.1rem; margin: 0 0 2px; }
.gallery .g-overlay span { color: rgba(255,255,255,0.85); font-size: 0.86rem; }
.gallery .g-zoom {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: grid; place-items: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.gallery .g-item:hover .g-zoom { opacity: 1; transform: scale(1); }
.gallery .g-zoom svg { width: 18px; height: 18px; stroke: var(--purple); }

@media (max-width: 880px) { .gallery { column-count: 2; } }
@media (max-width: 520px) { .gallery { column-count: 1; } }

/* Home Instagram preview strip */
.ig-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ig-strip a {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
  background: linear-gradient(135deg, #2a1733, #3a1c46);
}
.ig-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.ig-strip a:hover img { transform: scale(1.07); }
.ig-strip a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(125,44,152,0.0), rgba(230,72,155,0.0));
  transition: background 0.3s;
}
.ig-strip a:hover::after { background: linear-gradient(135deg, rgba(125,44,152,0.28), rgba(230,72,155,0.28)); }
@media (max-width: 760px) { .ig-strip { grid-template-columns: repeat(2, 1fr); } }

/* ----- Lightbox ----- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8,8,12,0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.6);
  border: 3px solid rgba(255,255,255,0.12);
}
.lb-cap {
  position: absolute;
  bottom: 22px; left: 0; right: 0;
  text-align: center;
  color: #fff;
  font-size: 0.95rem;
}
.lb-cap b { font-family: var(--font-head); }
.lb-btn {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s, transform 0.2s var(--ease);
}
.lb-btn:hover { background: var(--grad-brand-soft); border-color: transparent; }
.lb-close { top: 22px; right: 22px; font-size: 1.4rem; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.08); }
@media (max-width: 560px) {
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-btn { width: 44px; height: 44px; }
}

/* ----- Image fallback: brand gradient behind every media wrapper ----- */
.card-media, .prod-media, .intro-media, .hero-card.c1, .hero-card.c2, .map-embed {
  background: linear-gradient(135deg, #2a1733, #3a1c46);
}

/* ----- Section header helper ----- */
.section-head { max-width: 640px; margin-bottom: 18px; }
.center.section-head { margin-left: auto; margin-right: auto; }
