/* ============================================================
   DP Fashion — styles.css
   Palette, layout and components for the single-page site.
   ============================================================ */

:root {
  --pink:      #b0286e;
  --pink-dark: #7c1a4c;
  --pink-soft: #fce7f0;
  --gold:      #d9a441;
  --ink:       #2b1a24;
  --muted:     #6b5560;
  --cream:     #fff8fb;
  --tint:      #fbeef4;
  --white:     #ffffff;
  --green:     #25d366;
  --shadow:    0 10px 30px -12px rgba(124, 26, 76, .28);
  --shadow-sm: 0 4px 16px -8px rgba(124, 26, 76, .35);
  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1140px;
  --header-h:  70px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  font-family: "Merriweather", Georgia, serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: "Merriweather", Georgia, serif; line-height: 1.15; margin: 0; font-weight: 600; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px;
  font-weight: 700; font-size: .98rem;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary  { background: var(--pink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--pink-dark); }
.btn-whatsapp { background: var(--green); color: #fff; box-shadow: 0 6px 18px -8px rgba(37,211,102,.7); }
.btn-whatsapp:hover { background: #1eb457; }
.btn-ghost    { background: rgba(255,255,255,.85); color: var(--pink-dark); border-color: rgba(176,40,110,.25); }
.btn-ghost:hover { background: #fff; }
.btn-header   { background: var(--pink); color: #fff; padding: 10px 18px; font-size: .9rem; }
.btn-header:hover { background: var(--pink-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.60);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border:1px solid rgba(0,0,0,.10);
 }
/* trendy hairline glow under the glass header */
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; 
  background: linear-gradient(90deg, transparent, rgba(176,40,110,.35), rgba(217,164,65,.35), transparent);
}
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
/* Brand emblem — the SVG has blank space in its lower half, so we crop to the
   artwork with object-fit/position rather than editing the file. */
.brand-logo {
  height: 46px; width: auto;
  aspect-ratio: 151 / 109;
  object-fit: cover; object-position: center top;
  display: block;
}
/* footer sits on a dark background — render the black emblem in white */
.brand-logo-light { filter: invert(1) brightness(2); }
.footer-brand .brand-logo { height: 58px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: "Merriweather", serif; margin-bottom: 4px; font-size: 1.4rem; color: var(--pink-dark); }
.brand-text em { font-style: normal; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.main-nav { display: flex; gap: 26px; }
.main-nav a { font-weight: 600; font-size: .95rem; color: var(--ink); position: relative; padding: 6px 0; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--pink); transition: width .2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.display_none { display: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--pink-dark); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white); border-bottom: 1px solid rgba(176,40,110,.12);
  padding: 8px 20px 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 4px; font-weight: 600; border-bottom: 1px solid rgba(176,40,110,.08); }

/* ---------- Hero (two-column, animated background) ---------- */
.hero { position: relative; overflow: hidden; padding: 64px 0 72px; isolation: isolate; }

/* animated background photo (banner-bg.png) with a slow ken-burns pan */
.hero-bg {
  position: absolute; inset: -5%; z-index: 0;
  background: url("../assets/img/banner-bg.png") center/cover no-repeat;
  animation: heroPan 28s ease-in-out infinite alternate;
}
/* brand-tinted overlay: opaque on the left for text contrast, sheer on the right */
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(255,246,250,.95) 0%, rgba(252,231,241,.86) 34%, rgba(255,240,247,.45) 64%, rgba(255,255,255,.08) 100%),
    radial-gradient(680px 420px at 14% 22%, rgba(217,164,65,.16), transparent 60%);
}

/* soft drifting colour blobs */
.hero-blobs { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-blobs span { position: absolute; border-radius: 50%; filter: blur(46px); opacity: .5; }
.hero-blobs span:nth-child(1) { width: 340px; height: 340px; left: -70px; top: -50px;
  background: radial-gradient(circle, #f6bcd8, transparent 70%); animation: blobA 15s ease-in-out infinite; }
.hero-blobs span:nth-child(2) { width: 280px; height: 280px; right: 6%; bottom: -70px;
  background: radial-gradient(circle, #ffdfae, transparent 70%); animation: blobB 19s ease-in-out infinite; }
.hero-blobs span:nth-child(3) { width: 220px; height: 220px; left: 42%; top: 28%;
  background: radial-gradient(circle, #e6c6ff, transparent 70%); animation: blobA 22s ease-in-out infinite reverse; }

/* two-column grid */
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center;
}
.hero-copy { max-width: 640px; animation: heroFade .8s .05s both; }

.eyebrow {
  display: inline-block; margin: 0 0 18px;
  background: rgba(255,255,255,.55); color: var(--pink-dark);
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: .82rem;
  letter-spacing: .01em;
  box-shadow: 0 8px 24px -14px rgba(124,26,76,.5);
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.7rem); font-weight: 900; letter-spacing: -.015em; line-height: 1.08; }
.hero h1 span { color: var(--pink); }
.hero-sub { font-size: clamp(1.02rem, 2.3vw, 1.2rem); color: var(--muted); max-width: 560px; margin: 16px 0 26px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 20px; padding: 0; margin: 0; color: var(--muted); font-size: .9rem; font-weight: 600; }

/* right-hand visual: family cutout floating over a soft glow */
.hero-visual { position: relative; display: flex; justify-content: center; animation: heroFade .8s .18s both; }
.hero-visual-glow {
  position: absolute; inset: 8% 6% 4%; z-index: 0;
  border-radius: 48% 48% 44% 44%;
  background: radial-gradient(closest-side, rgba(176,40,110,.30), rgba(217,164,65,.12) 60%, transparent 74%);
  filter: blur(14px);
  animation: glowPulse 7s ease-in-out infinite;
}
.hero-banner-img {
  position: relative; z-index: 1; width: 100%; max-width: 500px; height: auto;
  filter: drop-shadow(0 26px 42px rgba(124,26,76,.30));
  animation: heroFloat 6s ease-in-out infinite;
}

/* keyframes */
@keyframes heroPan   { from { transform: scale(1) translate3d(0,0,0); } to { transform: scale(1.09) translate3d(-1.5%,-1%,0); } }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes glowPulse { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.06); opacity: 1; } }
@keyframes blobA { 0%,100% { transform: translate(0,0); } 50% { transform: translate(24px,28px); } }
@keyframes blobB { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-26px,-20px); } }
@keyframes heroFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ---------- Section shell ---------- */
.section { padding: 80px 0; }
.section-tint { background: var(--tint); }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.kicker {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700;
  color: var(--pink); margin: 0 0 12px;
}
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--ink); }
.section-lead { color: var(--muted); margin: 14px 0 0; font-size: 1.05rem; }
.section-head.light .kicker { color: var(--gold); }
.section-head.light h2, .section-head.light .section-lead { color: #fff; }

.img-hint { text-align: center; margin-top: 26px; color: var(--muted); font-size: .85rem; }
.img-hint code { background: rgba(176,40,110,.1); padding: 2px 7px; border-radius: 6px; font-size: .82em; }

/* ---------- Category grid (photo cards) ---------- */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-card {
  display: flex; flex-direction: column;
  overflow: hidden;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(176,40,110,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* Photo area with number + label overlaid; gradient shows if no photo is set */
.cat-photo {
  position: relative; aspect-ratio: 3 / 4; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px;
}
.cat-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
/* dark scrim so the label stays readable over any photo */
.cat-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,0) 75%);
}
.cat-num {
  position: relative; z-index: 3;
  color: rgba(255,255,255,.85); font-family: "Merriweather", serif;
  font-size: .95rem; font-weight: 600; margin-bottom: 2px;
}
.cat-photo h3 {
  position: relative; z-index: 3;
  color: #fff; font-size: 1.5rem; letter-spacing: .01em;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
/* per-category gradient fallback (visible until a real photo is dropped in) */
.cat-ladies .cat-photo { background: linear-gradient(150deg,#e84a97,#7c1a4c); }
.cat-ethnic .cat-photo { background: linear-gradient(150deg,#b06ab3,#4a1a4c); }
.cat-kids   .cat-photo { background: linear-gradient(150deg,#f59e0b,#c2410c); }
.cat-acc    .cat-photo { background: linear-gradient(150deg,#2dd4bf,#0f766e); }

.cat-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 14px; }
.cat-tags { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px 8px; }
.cat-tags li {
  background: var(--pink-soft); color: var(--pink-dark);
  padding: 4px 11px; border-radius: 999px; font-size: .82rem; font-weight: 600;
}
.cat-link { font-weight: 700; color: var(--pink); font-size: .9rem; margin-top: auto; }
.cat-link:hover { color: var(--pink-dark); }

/* ---------- Why grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(176,40,110,.06);
  transition: transform .2s ease;
}
.why-card:hover { transform: translateY(-4px); }
.why-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 16px;
  background: var(--pink-soft); color: var(--pink);
  box-shadow: inset 0 0 0 1px rgba(176,40,110,.08);
}
.why-ico svg { width: 26px; height: 26px; }
.why-card:hover .why-ico { background: var(--pink); color: #fff; transition: background .2s ease, color .2s ease; }
.why-card h3 { font-size: 1.2rem; color: var(--pink-dark); margin-bottom: 8px; }
.why-card p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ---------- Collections grid ---------- */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.coll-card { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; transition: transform .2s ease; }
.coll-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.coll-img {
  aspect-ratio: 4 / 3; position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--h1), var(--h2));
  display: grid; place-items: center;
}
.coll-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
/* label overlay only shows as fallback (behind the photo); the caption below names each tile */
.coll-img::after {
  content: attr(data-label); z-index: 0;
  color: #fff; font-family: "Merriweather", serif; font-weight: 600; font-size: 1.15rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.25); padding: 0 12px; text-align: center;
}
.coll-card figcaption { padding: 14px 18px; font-weight: 700; color: var(--ink); }

/* ---------- Offers ---------- */
.offers { background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 55%, #d1477f 100%); }
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.offer-card {
  position: relative; text-align: center;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  border-radius: var(--radius); padding: 30px 20px; color: #fff;
  transition: transform .2s ease, background .2s ease;
}
.offer-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.2); }
.offer-card.featured { background: #fff; color: var(--pink-dark); box-shadow: var(--shadow); }
.offer-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: .72rem; font-weight: 700;
  padding: 4px 14px; border-radius: 999px; letter-spacing: .05em; text-transform: uppercase;
}
.offer-ico { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.offer-card h3 { font-size: 1.25rem; margin-bottom: 6px; color: inherit; }
.offer-card p { margin: 0; font-size: .92rem; opacity: .92; }
.offers-cta { text-align: center; margin-top: 40px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; grid-auto-rows: 180px; }
.g-item {
  border-radius: var(--radius-sm); position: relative; overflow: hidden;
  background: linear-gradient(150deg,#f8d6e6,#c9518c);
  box-shadow: var(--shadow-sm); display: grid; place-items: end start;
  transition: transform .2s ease;
}
.g-item:nth-child(2) { background: linear-gradient(150deg,#e3d4ff,#7c5cd9); }
.g-item:nth-child(3) { background: linear-gradient(150deg,#ffe3c4,#e08c2a); }
.g-item:nth-child(4) { background: linear-gradient(150deg,#cdeee0,#2c9c86); }
.g-item:nth-child(5) { background: linear-gradient(150deg,#d6e4ff,#4f7ce0); }
.g-item:hover { transform: scale(1.02); }
.g-item.g-wide { grid-column: span 2; }
.g-item::after {
  content: attr(data-label);
  color: #fff; font-weight: 700; font-size: 1rem; padding: 14px 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px; margin: 0;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(176,40,110,.07);
  position: relative;
}
.review-card .stars { font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { font-family: "Merriweather", serif; font-size: 1.3rem; color: var(--ink); margin: 0 0 16px; font-style: italic; }
.review-card cite { color: var(--muted); font-style: normal; font-weight: 600; font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white); border: 1px solid rgba(176,40,110,.1);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-weight: 700; font-size: 1.08rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem; line-height: 1; color: var(--pink);
  transition: transform .2s ease; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--pink-dark); }
.faq-a { padding: 0 24px 20px; color: var(--muted); font-size: 1rem; }
.faq-a p { margin: 0; }
.faq-a a { color: var(--pink); font-weight: 600; }

/* ---------- Store info ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(176,40,110,.07);
}
.info-ico { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.info-card h3 { font-size: 1.2rem; color: var(--pink-dark); margin-bottom: 10px; }
.info-card p { margin: 0; color: var(--muted); }

/* ---------- Location ---------- */
.location-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 26px; align-items: stretch; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 340px; }
.location-card {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(176,40,110,.07);
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.location-card h3 { font-size: 1.5rem; color: var(--pink-dark); }
.location-card address { font-style: normal; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.serving-note { margin: 0; color: var(--pink-dark); font-size: .92rem; font-weight: 600; }
.location-card .btn { align-self: flex-start; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(135deg, #2b1a24 0%, #4a2138 100%); }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 300px)); gap: 18px; justify-content: center; }
.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 30px 20px; color: #fff;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.contact-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.12); border-color: var(--gold); }
.contact-ico { font-size: 2.2rem; }
.contact-card strong { font-size: 1.1rem; }
.contact-card span:last-child { color: rgba(255,255,255,.7); font-size: .92rem; }

/* ---------- Footer ---------- */
.site-footer { background: #1f1119; color: rgba(255,255,255,.75); padding: 48px 0 30px; }
.footer-inner { display: grid; gap: 26px; }
.footer-brand { display: flex; gap: 16px; align-items: flex-start; max-width: 520px; }
.footer-brand strong { color: #fff; font-family: "Merriweather", serif; font-size: 1.2rem; display: block; margin-bottom: 4px; }
.footer-brand p { margin: 0; font-size: .92rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-nav a { font-weight: 600; font-size: .92rem; color: rgba(255,255,255,.8); }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: .85rem; color: rgba(255,255,255,.5); margin: 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-credit { font-size: .82rem; color: rgba(255,255,255,.45); margin: 8px 0 0; }
.footer-credit a { color: var(--gold); font-weight: 600; }
.footer-credit a:hover { color: #fff; }

/* ---------- Sticky mobile bar ---------- */
.sticky-bar { display: none; }

/* ---------- Hero Tamil tagline ---------- */
.hero-tamil {
  font-family: "Merriweather", serif; font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: var(--pink-dark); font-weight: 600; margin: 6px 0 0;
}

/* ---------- Category: ethnic card accent ---------- */
.cat-ethnic::before { background: linear-gradient(90deg,#e84a97,#7c1a4c); }

/* ---------- Offers: amount chip + note ---------- */
.offer-amt {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0,0,0,.28); color: #fff; font-weight: 700;
  font-size: .78rem; padding: 3px 10px; border-radius: 999px;
}
.offer-card.featured .offer-amt { background: var(--pink); color: #fff; }
.offers-note { text-align: center; color: rgba(255,255,255,.8); margin: 26px 0 0; font-size: .92rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .category-grid, .offer-grid, .gallery-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .collection-grid, .review-grid, .info-grid { grid-template-columns: repeat(2, 1fr); }
  .location-wrap { grid-template-columns: 1fr; }
  .map-embed { min-height: 300px; }

  /* stack the hero: copy on top, family image below */
  .hero-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .hero-copy { max-width: 640px; margin: 0 auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-banner-img { max-width: 400px; }
}

@media (max-width: 720px) {
  .main-nav, .btn-header { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 60px 0; }
  .hero { padding: 60px 0 72px; }
  .why-grid, .collection-grid, .review-grid, .info-grid,
  .category-grid, .offer-grid, .contact-grid { grid-template-columns: 1fr; }
  .cat-photo { aspect-ratio: 16 / 10; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-item.g-wide { grid-column: span 2; }
  .hero-trust { gap: 12px; }

  /* Sticky bottom bar on mobile */
  .sticky-bar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: #fff; box-shadow: 0 -6px 24px -8px rgba(0,0,0,.25);
    border-top: 1px solid rgba(176,40,110,.12);
  }
  .sticky-bar a {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 10px 4px; font-size: .78rem; font-weight: 700; color: var(--pink-dark);
  }
  .sticky-bar a span { font-size: 1.25rem; }
  .sticky-bar .sb-wa { color: var(--green); }
  .sticky-bar a:not(:last-child) { border-right: 1px solid rgba(176,40,110,.1); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .hero-bg, .hero-banner-img, .hero-visual-glow, .hero-blobs span,
  .hero-copy, .hero-visual { animation: none !important; }
}
