/* ============================================================
   BarkVille — Pet Daycare & Grooming, Al Quoz Dubai
   Visual system. Palette/type from research/brand-system.md.
   ============================================================ */

:root {
  --bg:        #F4F8F4;
  --surface:   #FFFFFF;
  --surface-2: #EFF5F0;
  --text:      #15201D;
  --muted:     #5E6E68;
  --primary:   #1F9D7A;
  --primary-d: #15795D;
  --primary-t: #E4F3ED;
  --secondary: #2C5573;
  --secondary-d:#1E3D54;
  --accent:    #F2B84B;
  --accent-d:  #D99B22;
  --border:    #DCE9E2;
  --ink:       #122019;   /* deep footer / console */
  --focus:     #1F9D7A;
  --radius:    18px;
  --radius-s:  12px;
  --shadow-sm: 0 1px 2px rgba(18,32,25,.06), 0 2px 8px rgba(18,32,25,.05);
  --shadow-md: 0 8px 30px rgba(18,32,25,.10);
  --shadow-lg: 0 24px 60px rgba(18,32,25,.18);
  --maxw:      1200px;
  --header-h:  72px;
  --ease:      cubic-bezier(.22,.61,.36,1);
  --font-d: "Manrope", system-ui, sans-serif;
  --font-b: "Nunito Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-d); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; margin: 0; color: var(--text); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.eyebrow {
  font-family: var(--font-d); font-weight: 700; font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--primary-d);
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }
.section { padding: 92px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(30px, 4.6vw, 46px); margin: 14px 0 14px; }
.section-head p { color: var(--muted); font-size: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-d); font-weight: 700; font-size: 15.5px;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, color .18s;
  min-height: 48px; white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 18px rgba(31,157,122,.32); }
.btn-primary:hover { background: var(--primary-d); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(31,157,122,.4); }
.btn-accent { background: var(--accent); color: #3a2d05; box-shadow: 0 6px 18px rgba(242,184,75,.36); }
.btn-accent:hover { background: var(--accent-d); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-d); background: var(--primary-t); }
.btn-light { background: #fff; color: var(--secondary-d); border-color: var(--border); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.header.scrolled { background: rgba(255,255,255,.9); backdrop-filter: saturate(160%) blur(14px); box-shadow: var(--shadow-sm); border-bottom-color: var(--border); }
.brand { display: flex; align-items: center; gap: 12px; z-index: 2; }
.brand-chip {
  width: 46px; height: 46px; border-radius: 13px; background: #fff; padding: 4px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); flex: none; overflow: hidden;
}
.brand-chip img { width: 100%; height: 100%; object-fit: contain; border-radius: 9px; }
.brand-name { font-family: var(--font-d); font-weight: 800; font-size: 20px; letter-spacing: -.02em; line-height: 1; color: var(--text); }
.brand-name span { color: var(--primary); }
.brand-sub { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--font-d); font-weight: 600; font-size: 15px; padding: 9px 14px; border-radius: 999px;
  color: var(--text); transition: color .15s, background .15s;
}
.nav a:hover, .nav a.active { color: var(--primary-d); background: var(--primary-t); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-call { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-d); font-weight: 800; color: var(--secondary-d); font-size: 15.5px; padding: 8px 6px; }
.header-call svg { width: 17px; height: 17px; color: var(--primary); }
.menu-btn { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: calc(var(--header-h) + 30px); padding-bottom: 70px; overflow: hidden; }
.hero-bg-blob { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg-blob::before {
  content: ""; position: absolute; top: -180px; right: -160px; width: 620px; height: 620px;
  background: radial-gradient(circle at 50% 50%, rgba(31,157,122,.12), transparent 62%); border-radius: 50%;
}
.hero-bg-blob::after {
  content: ""; position: absolute; bottom: -160px; left: -120px; width: 460px; height: 460px;
  background: radial-gradient(circle at 50% 50%, rgba(44,85,115,.08), transparent 64%); border-radius: 50%;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 50px; align-items: center; }
.hero-content { max-width: 560px; }
.hero h1 { font-size: clamp(38px, 6vw, 66px); margin: 20px 0 0; }
.hero h1 em { font-style: normal; color: var(--primary); position: relative; }
.hero-lead { color: var(--muted); font-size: 19px; margin-top: 20px; max-width: 480px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--border); }
.htrust { display: flex; align-items: center; gap: 11px; }
.htrust-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--primary-t); color: var(--primary-d); display: grid; place-items: center; flex: none; }
.htrust-ic svg { width: 20px; height: 20px; }
.htrust b { font-family: var(--font-d); font-weight: 800; font-size: 18px; display: block; line-height: 1.1; }
.htrust span { font-size: 13px; color: var(--muted); }
.stars { color: var(--accent-d); letter-spacing: 1px; }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo {
  position: relative; z-index: 2; border-radius: 26px; overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg); border: 6px solid #fff;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; z-index: 3; left: -26px; bottom: 38px;
  background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 13px; border: 1px solid var(--border);
}
.hero-badge .big { font-family: var(--font-d); font-weight: 800; font-size: 30px; color: var(--secondary-d); line-height: 1; }
.hero-badge small { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }
.hero-tag {
  position: absolute; z-index: 3; right: -14px; top: 30px;
  background: var(--secondary-d); color: #fff; border-radius: 13px; padding: 11px 16px;
  font-family: var(--font-d); font-weight: 700; font-size: 14px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
}
.hero-tag svg { width: 16px; height: 16px; color: var(--accent); }
.hero-trail { position: absolute; z-index: 1; left: -70px; top: -30px; width: 200px; height: 200px; color: var(--accent); opacity: .9; }

/* ---------- Marquee trust band ---------- */
.band { background: var(--secondary-d); color: #fff; padding: 18px 0; }
.band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; text-align: center; }
.band-item { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-d); font-weight: 600; font-size: 15px; }
.band-item svg { width: 19px; height: 19px; color: var(--accent); flex: none; }
.band-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.34); }
@media (max-width: 640px){ .band-dot { display: none; } }

/* ---------- Care journey ---------- */
.journey { background: var(--surface); }
.journey-track {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative;
}
.journey-line { position: absolute; top: 38px; left: 8%; right: 8%; height: 3px; z-index: 0; pointer-events: none; }
.journey-line svg { width: 100%; height: 40px; color: var(--border); }
.jstep { position: relative; z-index: 1; text-align: left; }
.jstep-num {
  width: 76px; height: 76px; border-radius: 20px; background: var(--primary-t); color: var(--primary-d);
  display: grid; place-items: center; font-family: var(--font-d); font-weight: 800; font-size: 26px;
  box-shadow: inset 0 0 0 1px var(--border); margin-bottom: 18px; position: relative;
}
.jstep-num svg { width: 30px; height: 30px; }
.jstep-num b { position: absolute; top: -8px; right: -8px; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: #3a2d05; font-size: 13px; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.jstep h3 { font-size: 19px; margin-bottom: 7px; }
.jstep p { color: var(--muted); font-size: 15px; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s var(--ease), box-shadow .22s var(--ease);
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-photo { aspect-ratio: 16/11; overflow: hidden; position: relative; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc-card:hover .svc-photo img { transform: scale(1.06); }
.svc-ic {
  position: absolute; left: 16px; bottom: -22px; width: 52px; height: 52px; border-radius: 14px;
  background: #fff; color: var(--primary-d); display: grid; place-items: center; box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.svc-ic svg { width: 26px; height: 26px; }
.svc-body { padding: 32px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 { font-size: 21px; margin-bottom: 9px; }
.svc-body p { color: var(--muted); font-size: 15.5px; flex: 1; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0 18px; }
.svc-tags span { font-size: 12.5px; font-weight: 700; font-family: var(--font-d); color: var(--secondary-d); background: var(--surface-2); border: 1px solid var(--border); padding: 5px 11px; border-radius: 999px; }
.svc-link { font-family: var(--font-d); font-weight: 700; font-size: 14.5px; color: var(--primary-d); display: inline-flex; align-items: center; gap: 7px; }
.svc-link svg { width: 16px; height: 16px; transition: transform .2s; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }
.svc-note { margin-top: 26px; font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 10px; justify-content: center; text-align: center; }
.svc-note svg { width: 17px; height: 17px; color: var(--primary); flex: none; }

/* ---------- Gallery ---------- */
.gallery { background: var(--surface); }
.gal-filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.gal-filter {
  font-family: var(--font-d); font-weight: 700; font-size: 14px; padding: 9px 18px; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--surface); color: var(--text); cursor: pointer; transition: all .16s;
}
.gal-filter:hover { border-color: var(--primary); color: var(--primary-d); }
.gal-filter.active { background: var(--secondary-d); border-color: var(--secondary-d); color: #fff; }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; grid-auto-flow: dense; }
.gal-item {
  position: relative; overflow: hidden; border-radius: 14px; cursor: pointer; background: var(--surface-2);
  box-shadow: var(--shadow-sm); transition: opacity .3s, transform .3s var(--ease);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gal-item:hover img { transform: scale(1.07); }
.gal-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(18,32,25,.5));
  opacity: 0; transition: opacity .25s;
}
.gal-item:hover::after { opacity: 1; }
.gal-cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-family: var(--font-d); font-weight: 700; font-size: 13.5px; opacity: 0; transform: translateY(6px); transition: all .25s; }
.gal-item:hover .gal-cap { opacity: 1; transform: translateY(0); }
.gal-wide { grid-column: span 2; }
.gal-tall { grid-row: span 2; }
.gal-item.hide { display: none; }

/* lightbox */
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(10,16,13,.92); display: none; align-items: center; justify-content: center; padding: 28px; }
.lb.open { display: flex; }
.lb img { max-width: 92vw; max-height: 82vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lb-cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--font-d); font-weight: 600; font-size: 15px; }
.lb-btn { position: absolute; background: rgba(255,255,255,.12); border: none; color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: background .15s; }
.lb-btn:hover { background: rgba(255,255,255,.26); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-photo { position: relative; }
.about-photo .main { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; border: 6px solid #fff; }
.about-photo .main img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .inset {
  position: absolute; right: -18px; bottom: -28px; width: 44%; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-md); border: 5px solid #fff; aspect-ratio: 1/1; background: #fff;
}
.about-photo .inset img { width: 100%; height: 100%; object-fit: cover; }
.about-points { display: grid; gap: 16px; margin-top: 26px; }
.apoint { display: flex; gap: 14px; align-items: flex-start; }
.apoint-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-t); color: var(--primary-d); display: grid; place-items: center; flex: none; }
.apoint-ic svg { width: 22px; height: 22px; }
.apoint h4 { font-family: var(--font-d); font-size: 16.5px; margin-bottom: 3px; }
.apoint p { font-size: 14.5px; color: var(--muted); }

/* ---------- Contact console ---------- */
.contact { background: var(--ink); color: #fff; }
.contact .eyebrow { color: #6fd3b4; }
.contact .eyebrow::before { background: var(--accent); }
.contact .section-head h2 { color: #fff; }
.contact .section-head p { color: rgba(255,255,255,.66); }
.console { display: grid; grid-template-columns: 1fr 1.05fr; gap: 28px; }
.console-info { display: grid; gap: 14px; align-content: start; }
.info-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-s); padding: 18px 20px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(31,157,122,.2); color: #6fd3b4; display: grid; place-items: center; flex: none; }
.info-ic svg { width: 21px; height: 21px; }
.info-row h4 { font-family: var(--font-d); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 4px; font-weight: 700; }
.info-row .val { font-family: var(--font-d); font-weight: 700; font-size: 17px; color: #fff; }
.info-row .val a:hover { color: #6fd3b4; }
.info-row .sub { font-size: 13.5px; color: rgba(255,255,255,.6); margin-top: 2px; }
.info-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 2px; }
.map-ph {
  border-radius: var(--radius-s); overflow: hidden; position: relative; min-height: 150px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 12px, rgba(255,255,255,.06) 12px 24px),
    var(--secondary-d);
  border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; text-align: center; padding: 22px;
}
.map-ph .pin { width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: #3a2d05; display: grid; place-items: center; margin: 0 auto 12px; box-shadow: 0 8px 22px rgba(0,0,0,.3); }
.map-ph .pin svg { width: 24px; height: 24px; }
.map-ph b { font-family: var(--font-d); font-size: 15px; color: #fff; }
.map-ph small { display: block; color: rgba(255,255,255,.6); font-size: 13px; margin-top: 4px; }

/* form */
.form-card { background: var(--surface); color: var(--text); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 23px; margin-bottom: 5px; }
.form-card .form-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.fgroup { margin-bottom: 16px; }
.fgroup label { display: block; font-family: var(--font-d); font-weight: 700; font-size: 13.5px; margin-bottom: 7px; color: var(--text); }
.fgroup label .req { color: var(--primary-d); }
.field {
  width: 100%; font-family: var(--font-b); font-size: 15.5px; padding: 13px 15px; border-radius: 11px;
  border: 1.5px solid var(--border); background: var(--bg); color: var(--text); transition: border .15s, box-shadow .15s;
}
.field:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-t); }
.field::placeholder { color: #9aa8a2; }
textarea.field { resize: vertical; min-height: 96px; }
.field.invalid { border-color: #d9534f; box-shadow: 0 0 0 4px rgba(217,83,79,.12); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.err-msg { color: #d9534f; font-size: 12.5px; margin-top: 5px; font-weight: 600; display: none; }
.err-msg.show { display: block; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-radio { position: relative; }
.chip-radio input { position: absolute; opacity: 0; pointer-events: none; }
.chip-radio span { display: inline-block; font-family: var(--font-d); font-weight: 700; font-size: 13.5px; padding: 9px 15px; border-radius: 999px; border: 1.5px solid var(--border); cursor: pointer; transition: all .15s; }
.chip-radio input:checked + span { background: var(--primary); border-color: var(--primary); color: #fff; }
.chip-radio input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 2px; }
.form-submit { width: 100%; margin-top: 6px; }
.form-fine { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { text-align: center; padding: 30px 10px; display: none; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--primary-t); color: var(--primary-d); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 22px; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 15px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 56px 0 120px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 38px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand-name { color: #fff; }
.footer-about { font-size: 14.5px; margin: 16px 0 18px; max-width: 320px; }
.footer h5 { font-family: var(--font-d); font-weight: 800; color: #fff; font-size: 14px; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 14.5px; transition: color .15s; }
.footer-links a:hover { color: #6fd3b4; }
.social-row { display: flex; gap: 10px; margin-top: 4px; }
.social-row a { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .15s, transform .15s; }
.social-row a:hover { background: var(--primary); transform: translateY(-2px); }
.social-row svg { width: 20px; height: 20px; color: #fff; }
.footer-bottom { padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; }
.footer-bottom .note { max-width: 560px; color: rgba(255,255,255,.45); }

/* ---------- Mobile action bar ---------- */
.actionbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; display: none;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--border);
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); grid-template-columns: repeat(3,1fr); gap: 8px;
  box-shadow: 0 -4px 20px rgba(18,32,25,.08);
}
.ab-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 8px 4px; border-radius: 12px; font-family: var(--font-d); font-weight: 700; font-size: 12px; min-height: 52px; }
.ab-btn svg { width: 20px; height: 20px; }
.ab-call { background: var(--primary); color: #fff; }
.ab-enq { background: var(--surface-2); color: var(--secondary-d); border: 1px solid var(--border); }
.ab-dir { background: var(--surface-2); color: var(--secondary-d); border: 1px solid var(--border); }

/* ---------- Mobile menu ---------- */
.mmenu { position: fixed; inset: 0; z-index: 90; background: var(--ink); color: #fff; display: flex; flex-direction: column; padding: 22px; transform: translateX(100%); transition: transform .32s var(--ease); }
.mmenu.open { transform: translateX(0); }
.mmenu-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mmenu-close { background: rgba(255,255,255,.1); border: none; color: #fff; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; cursor: pointer; }
.mmenu-close svg { width: 24px; height: 24px; }
.mmenu nav { display: grid; gap: 4px; }
.mmenu nav a { font-family: var(--font-d); font-weight: 700; font-size: 24px; padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
.mmenu nav a:hover { color: #6fd3b4; }
.mmenu-foot { margin-top: auto; display: grid; gap: 10px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-content { max-width: 620px; }
  .hero-visual { max-width: 460px; }
  .journey-track { grid-template-columns: repeat(3,1fr); }
  .journey-line { display: none; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-template-columns: repeat(3,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .console { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .nav, .header-cta { display: none; }
  .menu-btn { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); cursor: pointer; }
  .menu-btn svg { width: 24px; height: 24px; }
  .header.scrolled .menu-btn { background: #fff; }
  .actionbar { display: grid; }
  .footer { padding-bottom: 110px; }

  .hero { padding-bottom: 44px; }
  .hero-trust { gap: 16px 22px; }
  .hero-badge { left: 0; }

  /* journey -> horizontal scroller */
  .journey-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; margin: 0 -22px; padding: 4px 22px 18px; -webkit-overflow-scrolling: touch; }
  .journey-track::-webkit-scrollbar { height: 0; }
  .jstep { flex: 0 0 78%; max-width: 300px; scroll-snap-align: start; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }

  .svc-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 150px; }
  .gal-wide { grid-column: span 2; }
  .gal-tall { grid-row: span 1; }
  .frow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-photo .inset { width: 40%; right: 0; }
  .hero-trail { display: none; }
}

@media (max-width: 420px) {
  .wrap { padding: 0 16px; }
  .brand-sub { display: none; }
  .hero h1 { font-size: 34px; }
  .gal-grid { grid-auto-rows: 130px; }
}

/* BytesGlue QA map patch */
.bg-map-embed{display:block!important;position:relative!important;width:100%!important;min-height:240px!important;border-radius:12px!important;overflow:hidden!important;background:#e9edf1!important;box-shadow:0 0 0 1px rgba(0,0,0,.08) inset!important}
.bg-map-embed iframe{display:block!important;width:100%!important;min-height:260px!important;border:0!important}
.bg-map-embed + .bg-map-embed,
.bg-map-embed + .pin,
.bg-map-embed + .lbl,
.bg-map-embed + .corner-note,
.bg-map-embed + .placeholder,
.bg-map-embed + .center,
.bg-map-embed + [class*="map-note"],
.bg-map-embed + [class*="map-tag"]{display:none!important}
.map .placeholder .pin,.map-ph .pin,.map-pin,.map-marker,.map-ph__pin,.map-ph__pin .dot,.map-ph__pin .pin,.map-ph .mi{max-width:18px!important;max-height:18px!important;width:18px!important;height:18px!important;box-shadow:none!important}
.map .placeholder .pin svg,.map-ph .pin svg,.map-pin svg,.map-marker svg,.map-ph__pin svg,.map-ph .mi{width:12px!important;height:12px!important}
.map-note,.map-tag,[class*="map-note"],[class*="map-tag"]{display:none!important}
