/* ══════════════════════════════════════════════════════
   Sri Nimishamba Paints — Clean Minimal Design System
   Apple-inspired. Precision typography. Zero clutter.
   ══════════════════════════════════════════════════════ */

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

:root {
  --black:   #1D1D1F;
  --ink:     #3A3A3C;
  --mid:     #6E6E73;
  --muted:   #86868B;
  --border:  #E2E2E7;
  --light:   #F5F5F7;
  --white:   #FFFFFF;
  --wall:    #FCFBF7; /* Cozy alabaster cream */
  --wall-soft:#F5F3EE; /* Cozy warm beige/linen */
  --primary: #6750a0; /* Logo Purple */
  --accent:  #e31959; /* Logo Pink/Magenta */
  --navy:    #152b4c; /* Logo Navy */
  --gold:    #ffc830; /* Logo Gold */
  --green:   #34C759;
  --r:       12px;
  --ease:    cubic-bezier(.25,.46,.45,.94);
}

html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }

body {
  font-family:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background:var(--wall);
  color:var(--black);
  line-height:1.6;
  overflow-x:hidden;
}

/* ── UTILITIES ──────────────────────────────────────── */
.wrap { max-width:1120px; margin:0 auto; padding:0 24px; }
.pg {
  display:none;
}
.pg.active {
  display:block;
  animation:fadeIn 0.35s ease forwards;
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

/* ── NAV ────────────────────────────────────────────── */
#nav {
  position:fixed; top:0; left:0; transform:none; z-index:900;
  width:100%; max-width:none;
  background:var(--wall);
  border-bottom:3px solid transparent;
  border-image:linear-gradient(to right, var(--primary), var(--accent), var(--gold), var(--navy)) 1;
  box-shadow:0 4px 20px rgba(0,0,0,0.03);
  transition:all 0.3s ease;
}
.nav-wrap {
  height:70px; display:flex; align-items:center; gap:2rem;
  max-width:1120px; margin:0 auto;
  padding:0 24px;
}
.nav-logo {
  display:flex; align-items:center; gap:9px;
  text-decoration:none; color:var(--black);
  transition:opacity 0.2s ease;
}
.nav-logo:hover { opacity:0.85; }
.nav-logo img {
  height:44px; width:auto;
  transition:transform 0.3s ease;
}
.nav-logo:hover img { transform:scale(1.05); }
.nav-logo span {
  font-family:'Fraunces', Georgia, serif;
  font-size:1.15rem; font-weight:700; letter-spacing:-0.015em;
  color:var(--black);
}
.nav-menu {
  display:flex; list-style:none; gap:0.5rem; margin-left:auto;
}
.nav-menu a {
  display:block; padding:6px 14px; border-radius:980px;
  color:var(--ink); text-decoration:none;
  font-size:0.85rem; font-weight:550;
  transition:all 0.2s ease;
}
.nav-menu a:hover { background:rgba(0,0,0,0.04); color:var(--black); }
.nav-menu a.active {
  background:var(--primary); color:var(--white) !important;
}
.nav-btn {
  display:inline-flex; align-items:center;
  background:var(--primary); color:white;
  padding:8px 18px; border-radius:980px;
  text-decoration:none; font-size:0.82rem; font-weight:600;
  transition:all 0.2s ease;
  white-space:nowrap;
  box-shadow:0 4px 12px rgba(103,80,160,0.2);
}
.nav-btn:hover { background:var(--accent); transform:scale(1.03); box-shadow:0 6px 16px rgba(103,80,160,0.3); }
.burger {
  display:none; flex-direction:column; gap:4px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.burger span { display:block; width:20px; height:2px; background:var(--black); border-radius:2px; transition:all 0.25s; }

/* ── BUTTONS ────────────────────────────────────────── */
.btn-fill {
  display:inline-flex; align-items:center; gap:7px;
  background:linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color:white;
  padding:12px 22px; border-radius:980px;
  font-family:inherit; font-size:0.9rem; font-weight:600;
  border:none; cursor:pointer; text-decoration:none;
  transition:transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow:0 4px 15px rgba(103,80,160,0.25);
}
.btn-fill:hover {
  transform:scale(1.02);
  filter:brightness(1.08);
  box-shadow:0 6px 20px rgba(227,25,89,0.35);
}

.btn-line {
  display:inline-flex; align-items:center; gap:7px;
  background:transparent; color:var(--primary);
  padding:12px 22px; border-radius:980px;
  font-family:inherit; font-size:0.9rem; font-weight:600;
  border:2px solid var(--primary); cursor:pointer; text-decoration:none;
  transition:all 0.2s;
}
.btn-line:hover {
  background:linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-color:transparent;
  color:white;
}

.btn-line-dark {
  display:inline-flex; align-items:center; gap:7px;
  background:transparent; color:white;
  padding:12px 22px; border-radius:980px;
  font-family:inherit; font-size:0.9rem; font-weight:600;
  border:2px solid rgba(255,255,255,0.4); cursor:pointer; text-decoration:none;
  transition:all 0.2s;
}
.btn-line-dark:hover { background:rgba(255,255,255,0.1); border-color:white; }

.btn-wa {
  display:inline-flex; align-items:center; gap:7px;
  background:#25D366; color:white;
  padding:12px 22px; border-radius:980px;
  font-family:inherit; font-size:0.9rem; font-weight:600;
  border:none; cursor:pointer; text-decoration:none;
  transition:all 0.2s;
}
.btn-wa:hover { background:#1da851; transform:scale(1.02); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height:100vh; padding-top:96px;
  display:grid; grid-template-columns:1fr 1fr;
  align-items:center; background:var(--wall);
  position:relative; overflow:hidden;
}
.hero-left {
  padding:4rem 3rem 5rem 5rem;
  position:relative; z-index:2;
}
.hero-glow-1 {
  position:absolute; top:-10%; left:-10%;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle, rgba(103,80,160,0.16) 0%, rgba(227,25,89,0.05) 50%, transparent 80%);
  filter:blur(60px); pointer-events:none; z-index:1;
}
.hero-glow-2 {
  position:absolute; bottom:10%; left:20%;
  width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle, rgba(227,25,89,0.12) 0%, rgba(255,200,48,0.05) 60%, transparent 80%);
  filter:blur(50px); pointer-events:none; z-index:1;
}
.eyebrow {
  display:inline-block; color:var(--primary);
  font-size:0.78rem; font-weight:600; letter-spacing:0.06em;
  text-transform:uppercase; margin-bottom:1.25rem;
}
.hero-h1 {
  font-family:'Fraunces', Georgia, serif;
  font-size:clamp(2.8rem, 5vw, 4.4rem);
  font-weight:700; line-height:1.1; letter-spacing:-0.02em;
  color:var(--black); margin-bottom:1.5rem;
}
.hero-h1 em { color:var(--primary); font-style:italic; font-weight:300; }
.hero-body {
  font-size:1.05rem; color:var(--mid); max-width:420px;
  line-height:1.75; margin-bottom:2.5rem;
}
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; }
 
.hero-right {
  position:relative; height:100%;
  display:flex; align-items:center; justify-content:center;
  padding:3rem 4rem 3rem 1rem; background:var(--wall-soft);
  z-index:2;
}
.hero-img {
  width:100%; height:100%; max-height:560px; object-fit:cover;
  border-radius:20px;
  filter:drop-shadow(0 24px 48px rgba(0,0,0,0.1));
}
.hero-pill {
  position:absolute;
  display:flex; align-items:center; gap:8px;
  background:white; padding:9px 16px; border-radius:980px;
  box-shadow:0 4px 20px rgba(0,0,0,0.1);
  font-size:0.78rem; font-weight:600; color:var(--black);
  z-index: 10;
}
.hero-pill-1 { top:15%; left:0; transform:translateX(-30%); }
.hero-pill-2 { bottom:22%; right:0; transform:translateX(20%); }
.pill-dot { width:8px; height:8px; border-radius:50%; flex-shrink:0; }

/* ── MARQUEE ─────────────────────────────────────────── */
.marquee-wrap {
  overflow:hidden; border-top:1px solid var(--border);
  border-bottom:1px solid var(--border); background:var(--wall);
}
.marquee-track {
  display:flex; align-items:center; gap:2.5rem;
  padding:1rem 0;
  animation:marquee 22s linear infinite;
  white-space:nowrap;
}
.marquee-track span {
  font-size:0.82rem; font-weight:500; color:var(--muted);
  letter-spacing:0.04em; text-transform:uppercase; flex-shrink:0;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── STATS ───────────────────────────────────────────── */
.stats-section { padding:5rem 0; background:var(--wall); }
.stats-grid {
  display:flex; align-items:center; justify-content:center;
  gap:0; flex-wrap:wrap;
}
.stat-item {
  display:flex; flex-direction:column; align-items:center;
  padding:0 4rem; gap:6px;
}
.stat-n {
  font-family:'Fraunces', serif; font-size:3rem; font-weight:700;
  color:var(--black); letter-spacing:-0.03em; line-height:1;
}
.stat-l { font-size:0.82rem; color:var(--muted); text-align:center; }
.stat-div { width:1px; height:60px; background:var(--border); }

/* ── BENTO ───────────────────────────────────────────── */
.bento-section { padding:5rem 0; background:var(--wall-soft); }
.section-eye { color:var(--primary); font-size:0.78rem; font-weight:600; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:0.75rem; }
.section-h2 {
  font-family:'Fraunces', serif;
  font-size:clamp(2rem, 3.5vw, 3rem);
  font-weight:700; letter-spacing:-0.02em;
  color:var(--black); line-height:1.15; margin-bottom:2.5rem;
}
.bento-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:14px;
}
.bento-card {
  background:var(--white); border-radius:18px;
  padding:2rem; overflow:hidden; position:relative;
  transition:all 0.25s var(--ease);
  border:1.5px solid transparent;
}
.bento-card:hover { transform:translateY(-3px); box-shadow:0 12px 40px rgba(0,0,0,0.06); }
.bento-wide { grid-row:1/3; }
.bento-icon {
  width:44px; height:44px; border-radius:12px;
  display:flex; align-items:center;
  justify-content:center; margin-bottom:1.25rem;
  flex-shrink:0;
}
.bento-card h3 { font-size:1.05rem; font-weight:700; color:var(--black); margin-bottom:0.5rem; }
.bento-card p { font-size:0.875rem; color:var(--mid); line-height:1.65; }

/* Authorized Dealer Card (Navy) */
.bento-dealer {
  background:var(--navy);
  border:1.5px solid rgba(255,255,255,0.05);
}
.bento-dealer h3 { color:var(--white); font-size:1.3rem; }
.bento-dealer p { color:rgba(255,255,255,0.65); }
.bento-dealer .bento-icon { background:rgba(255,255,255,0.1); color:var(--white); }
.bento-dealer:hover { border-color:rgba(255,255,255,0.15); box-shadow:0 12px 40px rgba(21,43,76,0.25); }

/* 2,500+ Shades Card (Purple) */
.bento-shades {
  background:rgba(103,80,160,0.04);
  border-color:rgba(103,80,160,0.12);
}
.bento-shades .bento-icon { background:rgba(103,80,160,0.08); color:var(--primary); }
.bento-shades:hover { border-color:rgba(103,80,160,0.4); box-shadow:0 12px 40px rgba(103,80,160,0.12); }

/* Free Colour Advice Card (Pink) */
.bento-advice {
  background:rgba(227,25,89,0.04);
  border-color:rgba(227,25,89,0.1);
}
.bento-advice .bento-icon { background:rgba(227,25,89,0.08); color:var(--accent); }
.bento-advice:hover { border-color:rgba(227,25,89,0.4); box-shadow:0 12px 40px rgba(227,25,89,0.12); }

/* Same-Day Tinting Card (Gold) */
.bento-tinting {
  background:rgba(255,200,48,0.06);
  border-color:rgba(255,200,48,0.15);
}
.bento-tinting .bento-icon { background:rgba(255,200,48,0.1); color:var(--gold); }
.bento-tinting:hover { border-color:rgba(255,200,48,0.5); box-shadow:0 12px 40px rgba(255,200,48,0.15); }

.bento-img {
  position:absolute; bottom:-10px; right:-10px;
  width:75%; object-fit:contain; opacity:0.9;
  border-radius:12px; margin-top:1rem;
}
.bento-color-strip {
  padding:1rem; display:flex; flex-wrap:wrap; gap:6px; align-content:flex-start;
  min-height:180px; overflow:hidden;
}
.b-swatch {
  width:32px; height:32px; border-radius:7px;
  transition:transform 0.2s;
  box-shadow:0 1px 4px rgba(0,0,0,0.12);
  flex-shrink:0;
}
.b-swatch:hover { transform:scale(1.18) translateY(-2px); }

/* ── TEAM CARDS ── */
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin-top:2rem; }
.team-card {
  padding:2.5rem 2rem; border-radius:18px; background:var(--white);
  border:1px solid var(--border); text-align:center;
  transition:all 0.25s;
}
.team-card:hover { transform:translateY(-4px); box-shadow:0 12px 36px rgba(0,0,0,0.06); background:var(--white); border-color:var(--primary); }
.team-avatar {
  width:72px; height:72px; border-radius:50%;
  margin:0 auto 1.25rem; display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; font-weight:700; color:white; letter-spacing:0.02em;
}
.team-card h3 { font-size:1.05rem; font-weight:700; color:var(--black); margin-bottom:4px; }
.team-role { font-size:0.78rem; font-weight:600; color:var(--muted); text-transform:uppercase; letter-spacing:0.06em; display:block; margin-bottom:1rem; }
.team-phone { display:inline-block; font-size:0.9rem; color:var(--primary); text-decoration:none; font-weight:600; }
.team-phone:hover { text-decoration:underline; }

/* ── COLOURS PREVIEW ─────────────────────────────────── */
.colours-preview { padding:5rem 0; background:var(--wall); }
.colours-head {
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:2.5rem; gap:2rem; flex-wrap:wrap;
}
.preview-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(120px, 1fr));
  gap:10px;
}
.prev-tile {
  border-radius:14px; overflow:hidden; cursor:pointer;
  transition:transform 0.22s var(--ease), box-shadow 0.22s;
  background:var(--light);
}
.prev-tile:hover { transform:translateY(-5px) scale(1.03); box-shadow:0 14px 32px rgba(0,0,0,0.14); }
.prev-swatch { height:88px; width:100%; }
.prev-info { padding:8px 10px; }
.prev-code { font-size:0.67rem; color:var(--muted); font-weight:600; letter-spacing:0.04em; }
.prev-name { font-size:0.78rem; font-weight:600; color:var(--black); margin-top:1px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

/* ── ABOUT STRIP ─────────────────────────────────────── */
.about-strip { padding:5rem 0; background:var(--wall-soft); }
.about-split {
  display:grid; grid-template-columns:1fr 1fr;
  gap:5rem; align-items:center;
}
.about-img-wrap { border-radius:20px; overflow:hidden; box-shadow:0 24px 64px rgba(0,0,0,0.12); }
.about-img { width:100%; display:block; height:440px; object-fit:cover; }
.body-text { font-size:0.975rem; color:var(--mid); line-height:1.8; margin-bottom:1.25rem; }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testi-section { padding:5rem 0; background:var(--wall); }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:1rem; }
.testi-c {
  padding:2rem; border-radius:18px; background:var(--white);
  border:1px solid var(--border); transition:all 0.22s;
  box-shadow:0 4px 15px rgba(0,0,0,0.02);
}
.testi-c:hover { background:var(--white); box-shadow:0 12px 36px rgba(103,80,160,0.08); border-color:var(--primary); transform:translateY(-2px); }
.stars { color:var(--gold); font-size:0.95rem; margin-bottom:1rem; letter-spacing:2px; }
.testi-c p { font-size:0.9rem; color:var(--ink); line-height:1.75; margin-bottom:1.25rem; font-style:italic; }
.t-name { font-size:0.78rem; font-weight:700; color:var(--muted); }

/* ── CTA BAND ────────────────────────────────────────── */
.cta-band {
  background:var(--navy); padding:6rem 0;
}
.cta-inner { display:flex; justify-content:space-between; align-items:center; gap:3rem; flex-wrap:wrap; }
.cta-h {
  font-family:'Fraunces', serif;
  font-size:clamp(2rem, 3.5vw, 3rem);
  font-weight:700; letter-spacing:-0.02em; color:white; line-height:1.15;
}
.cta-btns { display:flex; gap:1rem; flex-wrap:wrap; }

/* ── INNER HERO (sub-pages) ──────────────────────────── */
.inner-hero {
  background:var(--navy); padding:9rem 0 4rem; margin-top:0;
}
.inner-h1 {
  font-family:'Fraunces', serif;
  font-size:clamp(2.4rem, 5vw, 4rem);
  font-weight:700; color:white; line-height:1.1; letter-spacing:-0.02em;
  margin-top:1rem;
}
.inner-h1 em { color:var(--primary); font-style:italic; font-weight:300; }

/* ── SHADE EXPLORER ──────────────────────────────────── */
.shade-sec { padding:3rem 0 6rem; }
.shade-bar { display:flex; flex-direction:column; gap:1rem; margin-bottom:1.5rem; }
.search-box {
  width:100%; padding:14px 20px; border-radius:14px;
  border:1.5px solid var(--border); background:var(--light);
  font-family:inherit; font-size:1rem; color:var(--black);
  outline:none; transition:border 0.2s, background 0.2s;
}
.search-box:focus { border-color:var(--primary); background:white; }
.cat-pills { display:flex; flex-wrap:wrap; gap:8px; }
.c-pill {
  padding:6px 16px; border-radius:980px;
  border:1.5px solid var(--border); background:white;
  font-family:inherit; font-size:0.8rem; font-weight:600; color:var(--mid);
  cursor:pointer; transition:all 0.18s;
}
.c-pill:hover { border-color:var(--primary); color:var(--primary); }
.c-pill.on { background:var(--black); border-color:var(--black); color:white; }
.shade-meta { font-size:0.82rem; color:var(--muted); margin-bottom:1.5rem; }
.shade-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(130px, 1fr));
  gap:12px;
}
.s-tile {
  border-radius:14px; overflow:hidden;
  background:var(--light); border:1px solid var(--border);
}
.s-swatch { height:92px; }
.s-info { padding:9px 11px 10px; }
.s-code { font-size:0.67rem; color:var(--muted); font-weight:600; letter-spacing:0.04em; }
.s-name { font-size:0.8rem; font-weight:600; color:var(--black); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; margin-top:1px; }
.s-cat { display:inline-block; margin-top:4px; padding:2px 7px; border-radius:980px; background:white; font-size:0.62rem; color:var(--muted); border:1px solid var(--border); }

/* ── SHADE MODAL ─────────────────────────────────────── */
.modal-bg {
  display:none; position:fixed; inset:0; z-index:1000;
  background:rgba(0,0,0,0.6); backdrop-filter:blur(8px);
  justify-content:center; align-items:center; padding:24px;
}
.modal-bg.open { display:flex; }
.modal-box {
  background:white; border-radius:24px; overflow:hidden;
  width:100%; max-width:440px;
  box-shadow:0 32px 80px rgba(0,0,0,0.35);
  animation:popIn 0.22s var(--ease);
}
@keyframes popIn {
  from { opacity:0; transform:scale(0.95) translateY(20px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}
.modal-x {
  position:absolute; top:14px; right:14px; z-index:10;
  width:30px; height:30px; border-radius:50%;
  background:rgba(0,0,0,0.15); border:none; color:white;
  font-size:0.85rem; cursor:pointer; display:flex;
  align-items:center; justify-content:center; transition:background 0.2s;
}
.modal-x:hover { background:rgba(0,0,0,0.3); }
.modal-sw { height:200px; width:100%; }
.modal-body { padding:1.75rem 2rem 2rem; }
.m-code { font-size:0.72rem; color:var(--muted); font-weight:700; letter-spacing:0.08em; }
.m-name { font-family:'Fraunces', serif; font-size:1.7rem; font-weight:700; color:var(--black); margin:4px 0 8px; line-height:1.1; }
.m-cat { display:inline-block; padding:3px 11px; border-radius:980px; background:var(--light); color:var(--muted); font-size:0.78rem; border:1px solid var(--border); }
.m-desc { font-size:0.875rem; color:var(--mid); line-height:1.7; margin:1rem 0; }
.m-pair-lbl { font-size:0.75rem; font-weight:700; color:var(--black); letter-spacing:0.04em; text-transform:uppercase; margin-bottom:8px; }
.m-pairs { display:flex; gap:8px; margin-bottom:1.5rem; flex-wrap:wrap; }
.m-pair-dot { width:38px; height:38px; border-radius:10px; box-shadow:0 2px 8px rgba(0,0,0,0.12); transition:transform 0.2s; cursor:default; }
.m-pair-dot:hover { transform:scale(1.12); }
.modal-wa-btn { width:100%; justify-content:center; }

/* ── GALLERY ─────────────────────────────────────────── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gal-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s var(--ease);
  border: 1px solid var(--border);
  height: 260px;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.gal-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(103,80,160,0.12);
  border-color: var(--primary);
}
.gal-item:hover img {
  transform: scale(1.05);
}
.gal-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(21, 43, 76, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  padding: 6px 14px;
  border-radius: 980px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s;
}
.gal-item:hover .gal-label {
  background: var(--primary);
  transform: scale(1.03);
}
.gal-cta { margin-top:3rem; text-align:center; padding:3rem; background:var(--light); border-radius:20px; }
.gal-cta p { font-size:1.05rem; color:var(--ink); margin-bottom:1.25rem; }

@media (min-width: 901px) {
  .gal-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
  .gal-item.g-tall {
    grid-row: span 2;
    height: 500px;
  }
  .gal-item.g-wide {
    grid-column: span 2;
  }
}

/* ── HOMEPAGE GALLERY PREVIEW ────────────────────────── */
.gallery-preview {
  padding: 5rem 0;
  background: var(--wall);
  border-top: 1px solid var(--border);
}
.gallery-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-preview-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  height: 280px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s var(--ease);
  border: 1px solid var(--border);
}
.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.gallery-preview-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(103,80,160,0.12);
  border-color: var(--primary);
}
.gallery-preview-item:hover img {
  transform: scale(1.06);
}
.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 43, 76, 0.8) 0%, rgba(21, 43, 76, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-preview-overlay span {
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.gallery-preview-item:hover .gallery-preview-overlay span {
  gap: 12px;
}

/* ── HOMEPAGE CONTACT PREVIEW ────────────────────────── */
.contact-preview {
  padding: 5rem 0;
  background: var(--wall);
  border-top: 1px solid var(--border);
}
.contact-preview-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.contact-preview-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}
.cp-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cp-detail-item svg {
  flex-shrink: 0;
}
.cp-detail-item span {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.contact-preview-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-preview-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}
.contact-preview-map iframe {
  display: block;
}

/* ── PRODUCTS PAGE ───────────────────────────────────── */
.products-sec {
  padding: 5rem 0;
  background: var(--wall);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
  display: flex;
  flex-direction: column;
  transition: all 0.25s var(--ease);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(103,80,160,0.08);
  border-color: var(--primary);
}
.product-icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.product-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}
.p-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 980px;
  background: var(--wall-soft);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mid);
  border: 1px solid rgba(0,0,0,0.03);
}
.product-card p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.btn-product-enquire {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-product-enquire:hover {
  color: var(--accent);
  transform: translateX(4px);
}

/* ── ABOUT PAGE ──────────────────────────────────────── */
.values-row {
  display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; margin-top:1rem;
}
.val { padding:0 0 1.5rem; border-bottom:2px solid var(--border); }
.val-n { display:block; font-family:'Fraunces', serif; font-size:2.5rem; color:var(--border); font-weight:700; margin-bottom:0.75rem; }
.val h3 { font-size:0.95rem; font-weight:700; color:var(--black); margin-bottom:0.5rem; }
.val p { font-size:0.875rem; color:var(--mid); line-height:1.65; }

/* ── GALLERY ─────────────────────────────────────────── */
.gal-grid { display:grid; grid-template-columns:1.4fr 1fr; grid-template-rows:auto auto; gap:14px; }
.gal-item { position:relative; border-radius:18px; overflow:hidden; cursor:pointer; }
.gal-big { grid-row:1/3; }
.gal-item img { width:100%; height:300px; object-fit:cover; display:block; transition:transform 0.4s var(--ease); }
.gal-big img { height:100%; min-height:450px; }
.gal-item:hover img { transform:scale(1.04); }
.gal-label {
  position:absolute; bottom:1rem; left:1rem;
  background:rgba(0,0,0,0.55); backdrop-filter:blur(8px);
  color:white; padding:6px 14px; border-radius:980px;
  font-size:0.8rem; font-weight:600;
}
.gal-cta { margin-top:3rem; text-align:center; padding:3rem; background:var(--light); border-radius:20px; }
.gal-cta p { font-size:1.05rem; color:var(--ink); margin-bottom:1.25rem; }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-wrap { padding:4rem 24px 6rem; }
.contact-cols { display:grid; grid-template-columns:1fr 1.3fr; gap:4rem; align-items:start; }
.contact-info-col h2 { font-family:'Fraunces', serif; font-size:1.8rem; color:var(--black); margin-bottom:2rem; }
.info-block {
  display:flex; gap:1rem; align-items:flex-start;
  padding:1.25rem; border-radius:14px; background:var(--light);
  border:1px solid var(--border); margin-bottom:1rem;
  transition:border-color 0.2s, box-shadow 0.2s;
}
.info-block:hover { border-color:var(--primary); box-shadow:0 4px 16px rgba(103,80,160,0.08); }
.info-icon {
  width:36px; height:36px; border-radius:10px; flex-shrink:0;
  background:var(--primary); display:flex; align-items:center;
  justify-content:center; margin-top:2px; color:white;
}
.info-block h4 { font-size:0.75rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:0.06em; margin-bottom:4px; }
.info-block p, .info-block a { font-size:0.9rem; color:var(--ink); line-height:1.5; text-decoration:none; }
.info-block a:hover { color:var(--primary); }
.contact-btns { display:flex; gap:1rem; margin-top:1.75rem; flex-wrap:wrap; }
.map-col { border-radius:18px; overflow:hidden; box-shadow:0 12px 48px rgba(0,0,0,0.12); }
.map-col iframe { display:block; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background:var(--navy); padding:3rem 0 0; border-top:1px solid rgba(255,255,255,0.08); }
.footer-wrap {
  display:flex; justify-content:space-between; align-items:center;
  gap:2rem; flex-wrap:wrap; padding-bottom:2.5rem;
}
.f-brand { display:flex; align-items:center; gap:9px; color:white; font-size:0.88rem; font-weight:600; }
.f-links { display:flex; gap:1.5rem; }
.f-links a { color:rgba(255,255,255,0.5); font-size:0.84rem; text-decoration:none; transition:color 0.18s; }
.f-links a:hover { color:white; }
.f-contact { display:flex; gap:1.5rem; flex-wrap:wrap; }
.f-contact span { color:rgba(255,255,255,0.5); font-size:0.82rem; }
.f-copy {
  border-top:1px solid rgba(255,255,255,0.08);
  text-align:center; padding:1.25rem;
  color:rgba(255,255,255,0.25); font-size:0.76rem;
}

/* ── WA FLOAT ────────────────────────────────────────── */
.wa-float {
  position:fixed; bottom:24px; right:24px; z-index:800;
  background:#25D366; width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 24px rgba(37,211,102,0.45);
  transition:transform 0.2s var(--ease), box-shadow 0.2s;
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 10px 32px rgba(37,211,102,0.6); }

/* ── HERO TRUST BADGES ───────────────────────────────── */
.hero-trust { display:flex; gap:1.25rem; flex-wrap:wrap; margin-top:1.75rem; }
.trust-badge {
  display:flex; align-items:center; gap:7px;
  background:rgba(0,0,0,0.04); border:1px solid var(--border);
  padding:6px 14px; border-radius:980px;
  font-size:0.8rem; font-weight:500; color:var(--ink);
}
.trust-star { color:var(--gold); letter-spacing:1px; }

/* ── AUTH STAT ───────────────────────────────────────── */
.auth-badge-stat { font-size:1.6rem !important; color:var(--primary) !important; }

/* ── GOOGLE REVIEWS ──────────────────────────────────── */
.reviews-section { padding:5rem 0; background:var(--wall-soft); }
.reviews-head {
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:2.5rem; gap:2rem; flex-wrap:wrap;
}
.google-rating-box {
  display:flex; align-items:center; gap:1rem;
  background:white; padding:1rem 1.5rem; border-radius:14px;
  border:1px solid var(--border); box-shadow:0 2px 12px rgba(0,0,0,0.06);
  flex-shrink:0;
}
.g-stars { font-size:1rem; color:var(--gold); font-weight:700; }
.g-score { color:var(--black); font-size:1.1rem; margin-left:4px; }
.g-count { font-size:0.75rem; color:var(--muted); margin-top:2px; }
.g-logo { width:18px; height:18px; margin-left:auto; opacity:0.7; }
.btn-review {
  display:inline-flex; align-items:center;
  background:var(--light); border:1.5px solid var(--border);
  color:var(--ink); padding:7px 14px; border-radius:980px;
  font-size:0.8rem; font-weight:600; text-decoration:none;
  transition:all 0.18s; white-space:nowrap;
}
.btn-review:hover { border-color:var(--primary); color:var(--primary); }
.testi-top { display:flex; align-items:center; gap:10px; margin-bottom:1rem; }
.testi-avatar {
  width:40px; height:40px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,#E85D26,#ff8c5a);
  display:flex; align-items:center; justify-content:center;
  font-size:0.75rem; font-weight:700; color:white;
}
.testi-name { font-size:0.875rem; font-weight:700; color:var(--black); }
.btn-line-dark-inv {
  display:inline-flex; align-items:center; gap:7px;
  background:transparent; color:var(--ink);
  padding:11px 22px; border-radius:980px;
  font-family:inherit; font-size:0.875rem; font-weight:600;
  border:2px solid var(--border); cursor:pointer; text-decoration:none;
  transition:all 0.2s;
}
.btn-line-dark-inv:hover { border-color:var(--primary); color:var(--primary); }

/* ── LEAD GEN FORM ───────────────────────────────────── */
.estimate-section { padding:5rem 0; background:var(--navy); }
.estimate-inner {
  display:grid; grid-template-columns:1fr 1fr;
  gap:5rem; align-items:center;
}
.estimate-h {
  font-family:'Fraunces', serif; font-size:clamp(2rem,3.5vw,3rem);
  font-weight:700; letter-spacing:-0.02em; color:white; line-height:1.15;
  margin-bottom:1rem;
}
.estimate-sub { color:rgba(255,255,255,0.55); font-size:0.95rem; line-height:1.75; margin-bottom:1.5rem; }
.estimate-perks { list-style:none; display:flex; flex-direction:column; gap:8px; }
.estimate-perks li { color:rgba(255,255,255,0.7); font-size:0.875rem; }
.estimate-perks li::first-letter { color:#34C759; }
.estimate-form-wrap {
  background:white; border-radius:20px; padding:2.5rem;
  box-shadow:0 24px 64px rgba(0,0,0,0.4);
}
.estimate-form h3 { font-size:1.1rem; font-weight:700; color:var(--black); margin-bottom:1.5rem; }
.form-group { margin-bottom:1rem; }
.form-group label { display:block; font-size:0.78rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:0.05em; margin-bottom:6px; }
.form-group input, .form-group select {
  width:100%; padding:11px 14px; border-radius:10px;
  border:1.5px solid var(--border); background:var(--light);
  font-family:inherit; font-size:0.9rem; color:var(--black);
  outline:none; transition:border 0.2s;
}
.form-group input:focus, .form-group select:focus { border-color:var(--primary); background:white; }

/* ── ABOUT CTAs ──────────────────────────────────────── */
.about-ctas { display:flex; gap:1rem; flex-wrap:wrap; margin-top:1.5rem; }
.btn-line-about {
  display:inline-flex; align-items:center; gap:7px;
  background:transparent; color:var(--ink);
  padding:12px 22px; border-radius:980px;
  font-family:inherit; font-size:0.9rem; font-weight:600;
  border:2px solid var(--border); cursor:pointer; text-decoration:none;
  transition:all 0.2s;
}
.btn-line-about:hover { border-color:var(--primary); color:var(--primary); }

/* ── DIRECTIONS BTN ──────────────────────────────────── */
.directions-btn {
  display:block; text-align:center; margin-top:1rem;
  padding:12px; border-radius:12px; background:var(--light);
  color:var(--primary); font-weight:600; font-size:0.9rem;
  text-decoration:none; border:1.5px solid var(--border);
  transition:all 0.2s;
}
.directions-btn:hover { background:var(--primary); color:white; border-color:var(--primary); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width:900px) {
  .hero { grid-template-columns:1fr; }
  .hero-left { padding:6rem 24px 3rem; text-align:center; }
  .hero-body { max-width:100%; }
  .hero-actions { justify-content:center; }
  .hero-right {
    display:flex; width:100%; height:340px;
    padding:1rem 24px 3rem; background:transparent;
  }
  .hero-swiper {
    max-height:300px;
  }
  .hero-pill-1,.hero-pill-2 { display:none; }
  .bento-grid { grid-template-columns:1fr 1fr; }
  .bento-wide { grid-row:auto; grid-column:1/-1; }
  .stats-grid { gap:2rem; }
  .stat-item { padding:0 2rem; }
  .about-split,.contact-cols { grid-template-columns:1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .values-row { grid-template-columns:1fr 1fr; }
  .estimate-inner { grid-template-columns:1fr; gap:2.5rem; }
  .reviews-head { flex-direction:column; align-items:flex-start; }
  .google-rating-box { width:100%; }
  .hero-trust { justify-content:center; }
  .about-ctas { justify-content:center; }
  .team-grid { grid-template-columns:1fr 1fr; }
  .cta-inner { flex-direction:column; text-align:center; }
  .footer-wrap { flex-direction:column; align-items:flex-start; }
  .gal-grid { grid-template-columns: 1fr !important; }
  .gal-item.g-tall, .gal-item.g-wide { grid-row: auto !important; grid-column: auto !important; height: 260px !important; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .contact-preview-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width:600px) {
  #nav {
    top:0; left:0; transform:none;
    width:100%; border-radius:0;
    border:none; border-bottom:1px solid rgba(0,0,0,0.08);
  }
  .nav-wrap {
    height:56px; padding:0 16px;
  }
  .nav-menu {
    display:none; flex-direction:column; gap:8px;
    position:fixed; top:64px; left:16px; right:16px;
    background:rgba(255, 255, 255, 0.98);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border:1px solid rgba(0, 0, 0, 0.08);
    border-radius:20px;
    padding:1.25rem;
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
  }
  .nav-menu.open { display:flex; }
  .burger { display:flex; }
  .bento-grid { grid-template-columns:1fr; }
  .values-row { grid-template-columns:1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .stat-div { display:none; }
  .stats-grid { flex-direction:column; gap:2rem; }
}

/* ── SWIPER HERO SLIDER ──────────────────────────────── */
.hero-swiper {
  width:100%; height:100%; max-height:560px;
  border-radius:20px; overflow:hidden;
  box-shadow:0 24px 48px rgba(0,0,0,0.12);
  position:relative;
}
.hero-swiper .swiper-slide {
  position:relative; width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  background:var(--light);
}
.hero-swiper .hero-img {
  width:100%; height:100%; object-fit:cover;
  border-radius:20px; display:block;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color:var(--white);
  background:rgba(0, 0, 0, 0.4);
  backdrop-filter:blur(8px);
  width:38px; height:38px; border-radius:50%;
  transition:all 0.2s ease;
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size:0.95rem; font-weight:700;
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background:var(--primary); transform:scale(1.08);
}
.hero-swiper .swiper-pagination-bullet {
  background:var(--white); opacity:0.5;
}
.hero-swiper .swiper-pagination-bullet-active {
  background:var(--primary); opacity:1;
}
