/* Shri Ganesh Photocopy & Stationery
   Colours: the CMYK arcs from the shop logo, plus the vermilion red and marigold
   yellow of the shop signboard, on a paper-white ground. */

:root {
  --paper: #F6F3EC;
  --paper-2: #EDE8DC;
  --card: #FFFDF8;
  --ink: #17150F;
  --ink-2: #45413A;
  --muted: #777062;
  --line: #DCD4C4;
  --red: #C8261C;
  --red-dark: #9E1B13;
  --yellow: #F3B61F;
  --yellow-soft: #FCEBB8;
  --c: #00A9D6;
  --m: #EC008C;
  --y: #FFF200;
  --wa: #177A43;

  --display: "Archivo", "Mukta", system-ui, sans-serif;
  --body: "Mukta", "Nirmala UI", system-ui, sans-serif;

  --wrap: 1180px;
  --r: 6px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--c); outline-offset: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r); font-weight: 700; }
.skip:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

h1, h2, h3 { font-family: var(--display); line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
.hi { font-family: var(--body); font-weight: 800; letter-spacing: 0; }
p { margin: 0 0 1em; }

/* ---------- top strip ---------- */
.strip {
  background: var(--ink);
  color: #E9E4D8;
  font-size: 14px;
}
.strip .wrap { display: flex; align-items: center; gap: 18px; min-height: 36px; }
.strip a { color: #fff; text-decoration: none; }
.strip .tel { font-weight: 600; margin-left: auto; white-space: nowrap; }
.strip .addr { color: #E9E4D8; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.strip .addr:hover { text-decoration: underline; }
.cmyk { display: inline-flex; gap: 3px; flex: none; }
.cmyk i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.cmyk i:nth-child(1) { background: var(--c); }
.cmyk i:nth-child(2) { background: var(--m); }
.cmyk i:nth-child(3) { background: var(--y); }
.cmyk i:nth-child(4) { background: #fff; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--paper); border-bottom: 1px solid var(--line); }
.bar { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand-logo { width: auto; height: 50px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-family: var(--display); font-weight: 900; font-size: 21px; letter-spacing: .01em; }
.brand-text small { font-family: var(--display); font-size: 10.5px; font-weight: 700; letter-spacing: .16em; color: var(--ink-2); margin-top: 3px; }

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  text-decoration: none; font-weight: 600; font-size: 16px; padding: 8px 12px; border-radius: var(--r);
  color: var(--ink-2);
}
.nav a:hover { background: var(--paper-2); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); box-shadow: inset 0 -3px 0 var(--red); border-radius: 0; }

.status {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600;
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 99px; background: var(--card); white-space: nowrap;
}
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--muted); }
.status.is-open::before { background: #1FA35A; box-shadow: 0 0 0 3px rgba(31,163,90,.18); }
.status.is-closed::before { background: var(--red); }

.menu-btn {
  display: none; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: var(--r);
  width: 44px; height: 44px; cursor: pointer; place-items: center;
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: transform .2s;
}
.menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; }
.menu-btn span::before { top: -6px; }
.menu-btn span::after { top: 6px; }
.menu-open .menu-btn span { background: transparent; }
.menu-open .menu-btn span::before { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-btn span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border-radius: var(--r); border: 2px solid var(--ink);
  font-weight: 700; font-size: 17px; text-decoration: none; cursor: pointer; background: var(--ink); color: var(--paper);
  transition: transform .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-red { background: var(--red); border-color: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--card); }
.btn-wa { background: var(--wa); border-color: var(--wa); color: #fff; }
.btn-sm { min-height: 40px; padding: 0 14px; font-size: 15px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- sections ---------- */
section { padding: 88px 0; }
.section-alt { background: var(--paper-2); }
.section-ink { background: var(--ink); color: var(--paper); }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.section-ink .kicker { color: var(--yellow); }
.head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 20px 40px; margin-bottom: 44px; }
.head h2 { font-size: clamp(30px, 4.4vw, 48px); font-weight: 800; font-stretch: 88%; max-width: 18ch; }
.head p { max-width: 46ch; color: var(--ink-2); margin: 0; }
.section-ink .head p { color: #CFC8B8; }

/* colour bar divider, like the test strip at the edge of a printed sheet */
.colorbar { display: grid; grid-template-columns: repeat(12, 1fr); height: 10px; }
.colorbar.thin { height: 4px; }
.colorbar i:nth-child(1) { background: var(--c); }
.colorbar i:nth-child(2) { background: var(--m); }
.colorbar i:nth-child(3) { background: var(--y); }
.colorbar i:nth-child(4) { background: var(--ink); }
.colorbar i:nth-child(5) { background: #7FD1EC; }
.colorbar i:nth-child(6) { background: #F07FBC; }
.colorbar i:nth-child(7) { background: #FFEE80; }
.colorbar i:nth-child(8) { background: #8B8A87; }
.colorbar i:nth-child(9) { background: var(--red); }
.colorbar i:nth-child(10) { background: var(--yellow); }
.colorbar i:nth-child(11) { background: #1FA35A; }
.colorbar i:nth-child(12) { background: #C9C2B3; }

/* crop marks on a box */
.crop { position: relative; }
.crop::before, .crop::after {
  content: ""; position: absolute; width: 18px; height: 18px; pointer-events: none;
  border-color: var(--ink); border-style: solid; opacity: .55;
}
.crop::before { top: -10px; left: -10px; border-width: 0 1px 1px 0; }
.crop::after { bottom: -10px; right: -10px; border-width: 1px 0 0 1px; }

/* ---------- hero ---------- */
.hero { padding: 64px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(44px, 7vw, 84px); line-height: 1.02; margin-bottom: 22px; }
.hero h1 .hl { color: var(--red); }
.nw { white-space: nowrap; }
.hero .lede { font-size: 20px; color: var(--ink-2); max-width: 36ch; margin-bottom: 30px; }
.hero .en { font-family: var(--display); font-stretch: 85%; font-weight: 700; font-size: 18px; color: var(--muted); margin-bottom: 14px; letter-spacing: .02em; }

.ticket {
  background: var(--card); border: 1px solid var(--line); border-radius: 4px; padding: 28px 28px 22px;
  box-shadow: 0 1px 0 var(--line), 0 18px 40px -24px rgba(23,21,15,.35);
}
.ticket-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 18px; }
.rating { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.rating b { font-family: var(--display); font-size: 64px; line-height: 1; font-weight: 800; font-stretch: 85%; }
.stars { color: var(--yellow); letter-spacing: 2px; font-size: 20px; }
.ticket .sub { color: var(--ink-2); font-size: 15px; margin-bottom: 20px; }
.ticket dl { margin: 0; border-top: 1px dashed var(--line); }
.ticket dl div { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.ticket dt { color: var(--muted); font-weight: 600; }
.ticket dd { margin: 0; font-weight: 500; }
.ticket-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 16px; font-size: 14px; }
.ticket-foot a { font-weight: 700; color: var(--red); text-decoration: none; }
.ticket-foot a:hover { text-decoration: underline; }

/* ---------- service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px;
  display: flex; flex-direction: column; text-decoration: none; transition: border-color .15s, transform .15s;
}
a.svc:hover { border-color: var(--ink); transform: translateY(-2px); }
.svc .tag { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.svc h3 { font-size: 24px; font-weight: 800; font-stretch: 90%; margin-bottom: 4px; }
.svc .hi-name { font-weight: 700; color: var(--red); font-size: 16px; margin-bottom: 12px; }
.svc p { color: var(--ink-2); font-size: 16px; margin-bottom: 18px; }
.svc .more { margin-top: auto; font-weight: 700; font-size: 15px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.chips span { font-size: 13px; font-weight: 600; padding: 3px 10px; border-radius: 99px; background: var(--paper-2); color: var(--ink-2); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; counter-reset: step; border-top: 1px solid #3A362D; }
.step { padding: 30px 28px 10px 0; counter-increment: step; }
.step + .step { padding-left: 28px; border-left: 1px solid #3A362D; }
.step::before {
  content: "0" counter(step); display: block; font-family: var(--display); font-weight: 800; font-stretch: 80%;
  font-size: 56px; line-height: 1; color: var(--yellow); margin-bottom: 18px;
}
.step h3 { font-size: 22px; margin-bottom: 8px; }
.step p { color: #CFC8B8; font-size: 16px; }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.review { margin: 0; background: var(--card); border-left: 4px solid var(--yellow); padding: 24px 24px 20px; border-radius: 0 var(--r) var(--r) 0; }
.review blockquote { margin: 0 0 14px; font-size: 20px; line-height: 1.4; font-weight: 500; }
.review figcaption { font-size: 14px; color: var(--muted); display: flex; justify-content: space-between; }
.review .stars { font-size: 15px; }

/* ---------- split / visit ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.map-frame { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--paper-2); aspect-ratio: 4 / 3; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.facts { list-style: none; margin: 0 0 28px; padding: 0; }
.facts li { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.facts li:first-child { border-top: 1px solid var(--line); }
.facts b { font-family: var(--display); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.facts a { font-weight: 700; }

.hours { width: 100%; border-collapse: collapse; font-size: 16px; }
.hours td { padding: 9px 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-weight: 600; }
.hours tr.today td { color: var(--red); font-weight: 700; }

.note {
  background: var(--yellow-soft); border: 1px solid #EFD27C; border-radius: var(--r);
  padding: 14px 16px; font-size: 15px; color: #4A3B0B;
}

/* ---------- page header (inner pages) ---------- */
.page-head { padding: 64px 0 56px; border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; font-stretch: 85%; margin-bottom: 14px; }
.page-head p { font-size: 19px; color: var(--ink-2); max-width: 56ch; margin: 0; }
.crumbs { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); }

/* ---------- services page detail rows ---------- */
.svc-row { display: grid; grid-template-columns: 90px 1fr 1fr; gap: 32px; padding: 44px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 110px; }
.svc-row .num { font-family: var(--display); font-weight: 800; font-stretch: 80%; font-size: 44px; line-height: 1; color: var(--red); }
.svc-row h2 { font-size: 34px; font-weight: 800; font-stretch: 88%; margin-bottom: 4px; }
.svc-row .hi-name { color: var(--red); font-weight: 700; margin-bottom: 14px; display: block; font-size: 18px; }
.svc-row p { color: var(--ink-2); }
.spec { list-style: none; margin: 0; padding: 0; font-size: 16px; }
.spec li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.spec li:first-child { border-top: 1px dashed var(--line); }
.spec li span:last-child { color: var(--muted); text-align: right; }

.jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.jump a { text-decoration: none; font-weight: 600; font-size: 15px; padding: 7px 14px; border: 1px solid var(--line); border-radius: 99px; background: var(--card); }
.jump a:hover { border-color: var(--ink); }

/* ---------- forms ---------- */
.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 30px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label, .field .lbl { font-weight: 700; font-size: 15px; }
.field .hint { font-size: 14px; color: var(--muted); font-weight: 400; }
input[type=text], input[type=tel], input[type=number], input[type=search], select, textarea {
  width: 100%; min-height: 48px; padding: 10px 14px; border: 1.5px solid var(--line); border-radius: var(--r);
  background: #fff; font-size: 17px;
}
input:focus, select:focus, textarea:focus { border-color: var(--ink); outline: none; box-shadow: 0 0 0 3px rgba(0,163,217,.2); }
textarea { min-height: 96px; resize: vertical; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg label { position: relative; cursor: pointer; }
.seg input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.seg span {
  display: inline-block; padding: 9px 16px; border: 1.5px solid var(--line); border-radius: var(--r);
  font-weight: 600; font-size: 15px; background: #fff; user-select: none;
}
.seg input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.seg input:focus-visible + span { outline: 3px solid var(--c); outline-offset: 2px; }

/* estimator */
.estimator { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--card); }
.estimator .inputs { padding: 30px; }
.estimator .out { background: var(--ink); color: var(--paper); padding: 30px; display: flex; flex-direction: column; }
.estimator .out .lbl { font-family: var(--display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #A9A294; }
.estimator .total { font-family: var(--display); font-weight: 800; font-stretch: 80%; font-size: 72px; line-height: 1; margin: 8px 0 6px; }
.estimator .calc { color: #CFC8B8; font-size: 15px; margin-bottom: 24px; min-height: 24px; }
.estimator .out .btn { margin-top: auto; }
.estimator small { display: block; margin-top: 14px; color: #A9A294; font-size: 13px; }

/* stationery */
.toolbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 28px; }
.toolbar input[type=search] { max-width: 340px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filters button {
  border: 1.5px solid var(--line); background: var(--card); border-radius: 99px; padding: 7px 15px; font-weight: 600; font-size: 15px; cursor: pointer;
}
.filters button[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.shop-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.shop-layout > *, .split > *, .hero-grid > * { min-width: 0; }
.cat { margin-bottom: 36px; }
.cat h2 { font-size: 22px; font-weight: 800; font-stretch: 90%; display: flex; align-items: baseline; gap: 10px; padding-bottom: 10px; border-bottom: 2px solid var(--ink); margin-bottom: 4px; }
.cat h2 .hi { color: var(--red); font-size: 17px; font-weight: 700; }
.items { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 28px; }
.items li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.items li .nm { font-weight: 600; }
.items li .nm small { display: block; font-weight: 400; color: var(--muted); font-size: 14px; line-height: 1.3; }
.add {
  flex: none; border: 1.5px solid var(--ink); background: transparent; border-radius: var(--r); font-weight: 700; font-size: 14px;
  padding: 5px 12px; cursor: pointer; min-width: 74px;
}
.add[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.list-box { position: sticky; top: 100px; }
.list-box h3 { font-size: 20px; margin-bottom: 4px; }
.list-box ol { margin: 14px 0 18px; padding-left: 20px; font-size: 15px; max-height: 300px; overflow: auto; }
.list-box ol li { padding: 3px 0; }
.list-box .empty { color: var(--muted); font-size: 15px; margin: 14px 0 18px; }
.list-box .btn { width: 100%; }
.link-btn { background: none; border: 0; padding: 0; color: var(--muted); text-decoration: underline; cursor: pointer; font-size: 14px; margin-top: 12px; }
.no-results { display: none; color: var(--muted); padding: 20px 0; }

/* ---------- Google marks ---------- */
.g-chip {
  display: inline-grid; place-items: center; flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 1px rgba(23,21,15,.12); vertical-align: middle;
}
.g-chip img { width: 14px; height: 14px; }
.with-g { display: inline-flex; align-items: center; gap: 8px; }
.ticket-top .g-chip { width: 20px; height: 20px; }
.g-card {
  display: inline-flex; align-items: center; gap: 14px; text-decoration: none; background: var(--card);
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 18px 12px 14px; transition: border-color .15s, transform .15s;
}
.g-card:hover { border-color: var(--ink); transform: translateY(-1px); }
.g-card img { width: 36px; height: 36px; flex: none; }
.g-card-text { display: grid; grid-template-columns: auto 1fr; align-items: baseline; column-gap: 8px; line-height: 1.2; }
.g-card-text b { font-family: var(--display); font-size: 26px; font-weight: 800; }
.g-card-text .stars { font-size: 16px; }
.g-card-text small { grid-column: 1 / -1; color: var(--muted); font-size: 14px; margin-top: 2px; }
.btn-google { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-google:hover { border-color: var(--ink); }
.btn-google img { width: 18px; height: 18px; }

/* ---------- trust strip ---------- */
.trust { background: var(--card); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  display: flex; align-items: center; gap: 14px; padding: 22px 20px; text-decoration: none; min-width: 0;
  border-left: 1px solid var(--line);
}
.trust-item:first-child { border-left: 0; padding-left: 0; }
a.trust-item:hover b { text-decoration: underline; text-underline-offset: 3px; }
.trust-item b { display: block; font-family: var(--display); font-weight: 800; font-size: 17px; line-height: 1.2; }
.trust-item small { display: block; color: var(--muted); font-size: 13.5px; line-height: 1.35; margin-top: 2px; }
.trust-ic { flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; }
.trust-ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ic-white { background: #fff; box-shadow: 0 0 0 1px var(--line); }
.ic-green { background: #E3F4EA; color: #177A43; }
.ic-red { background: #FBE3E1; color: var(--red); }

.foot-badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 12px !important; }
.site-footer .foot-badges li {
  padding: 3px 10px; border-radius: 99px; background: #26231D; color: #E4DED0; font-size: 12.5px; font-weight: 600;
}

/* ---------- about + FAQ ---------- */
.h2 { font-size: clamp(30px, 4.4vw, 48px); font-weight: 800; font-stretch: 88%; margin-bottom: 22px; }
.lead-p { font-size: 20px; line-height: 1.5; color: var(--ink); }
.muted { color: var(--ink-2); }
.keyfacts { margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 8px 24px; }
.keyfacts div { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.keyfacts div:last-child { border-bottom: 0; }
.keyfacts dt { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding-top: 4px; }
.keyfacts dd { margin: 0; font-weight: 600; }

.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.faq-grid > * { min-width: 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { font-family: var(--body); font-size: 18px; font-weight: 700; line-height: 1.35; letter-spacing: 0; }
.faq summary::after {
  content: "+"; flex: none; width: 32px; height: 32px; border: 1.5px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; font-size: 20px; font-weight: 600; line-height: 1; transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); border-color: var(--ink); }
.faq details p { color: var(--ink-2); margin: 0 0 20px; max-width: 62ch; }

/* ---------- CTA band ---------- */
.cta { background: var(--red); color: #fff; padding: 56px 0; }
.cta .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; font-stretch: 88%; max-width: 20ch; }
.cta .btn { background: #fff; border-color: #fff; color: var(--ink); }
.cta .btn-ghost { background: transparent; color: #fff; border-color: #fff; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #CFC8B8; font-size: 15px; line-height: 1.55; }
.site-footer .foot-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1.3fr; gap: 32px; padding-top: 44px; padding-bottom: 28px; }
.site-footer h2 { font-family: var(--display); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 12px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 3px 0; }
.site-footer li a { color: #E4DED0; }
.foot-logo { display: inline-block; background: #fff; border-radius: 8px; padding: 8px 12px; margin-bottom: 14px; }
.foot-logo img { height: 74px; width: auto; }
.foot-brand p { margin: 0 0 12px; max-width: 34ch; }
.foot-rating { display: inline-flex; align-items: center; gap: 8px; border: 1px solid #3A362D; border-radius: 99px; padding: 5px 14px; font-size: 14px; }
.foot-rating b { font-family: var(--display); font-size: 17px; }
.foot-rating .stars { font-size: 13px; letter-spacing: 1px; }
.foot-rating .g-chip { box-shadow: none; }
.foot-rating span:last-child { color: #CFC8B8; }
.site-footer address { font-style: normal; display: grid; gap: 10px; }
.foot-line { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.foot-line svg { width: 18px; height: 18px; margin-top: 3px; fill: none; stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.foot-hours { margin: 14px 0 0; }
.site-footer .status { background: transparent; border-color: #3A362D; color: #fff; }
.site-footer .foot-areas { border-top: 1px solid #3A362D; padding-top: 18px; padding-bottom: 18px; }
.foot-areas p { margin: 0; font-size: 13.5px; color: #A9A294; }
.foot-areas b { color: #CFC8B8; font-weight: 600; }
.site-footer .foot-bottom { border-top: 1px solid #3A362D; padding-top: 16px; padding-bottom: 16px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: 13.5px; color: #8F887A; }

/* floating back-to-top button */
.to-top-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 55; width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center; text-decoration: none;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.5), 0 0 0 2px rgba(255,255,255,.9);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .2s, transform .2s, visibility .2s, background .15s;
}
.to-top-fab.show { opacity: 1; visibility: visible; transform: none; }
.to-top-fab:hover { background: var(--red); }
.to-top-fab svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* bottom action bar on phones: the three things people actually do */
.action-bar { display: none; }
.action-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; text-decoration: none; font-size: 12.5px; font-weight: 700; color: var(--ink); min-height: 58px; }
.action-bar a.wa { background: var(--wa); color: #fff; }
.action-bar svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .bar .status { display: none; }
}
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .review blockquote { font-size: 18px; }
  .site-footer .foot-grid { grid-template-columns: 1fr 1fr 1.3fr; gap: 28px 32px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; padding-left: 0; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .foot-brand { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 4px 24px; align-items: center; }
  .foot-brand .foot-logo { grid-row: span 2; margin: 0; }
  .foot-brand p { margin: 0; max-width: 52ch; }
  .foot-brand .foot-rating { justify-self: start; }
  .shop-layout { grid-template-columns: 1fr; gap: 0; }
  /* the enquiry list turns into a bar pinned to the bottom of the screen */
  .list-box {
    position: sticky; bottom: 12px; z-index: 20; display: flex; align-items: center; gap: 12px 16px; flex-wrap: wrap;
    padding: 12px 16px; margin-top: 8px; box-shadow: 0 12px 32px -12px rgba(23,21,15,.45);
  }
  .list-box:not(.has-items) { position: static; box-shadow: none; }
  .list-box h3 { font-size: 17px; margin: 0; }
  .list-box ol, .list-box .empty { display: none; }
  .list-box .btn { width: auto; flex: 1 1 220px; min-height: 44px; font-size: 15px; }
  .list-box h3 { white-space: nowrap; }
  .list-box .link-btn { margin: 0; }
  body.has-list .to-top-fab { bottom: 100px; }
  .faq-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 960px) {
  .menu-btn { display: grid; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 4px 20px 16px;
    box-shadow: 0 16px 30px -18px rgba(23,21,15,.4);
  }
  .menu-open .nav { display: flex; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 18px; }
  .nav a[aria-current="page"] { box-shadow: inset 4px 0 0 var(--red); padding-left: 14px; }
  .hero-grid, .split, .estimator { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .ticket { max-width: 560px; }
  .steps { grid-template-columns: 1fr; }
  .step + .step { padding-left: 0; border-left: 0; border-top: 1px solid #3A362D; }
  .svc-row { grid-template-columns: 70px 1fr; gap: 14px 24px; }
  .svc-row .spec { grid-column: 2; }
  .map-frame { aspect-ratio: 16 / 10; }
}
@media (max-width: 767px) {
  body { padding-bottom: 58px; }
  .action-bar {
    display: grid; grid-template-columns: 1fr 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--card); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px -16px rgba(23,21,15,.35);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .site-footer .foot-grid { grid-template-columns: 1fr 1fr; gap: 0; padding-top: 8px; padding-bottom: 0; }
  .site-footer .foot-grid > nav + nav { padding-left: 16px; }
  .site-footer .foot-grid > * { padding: 26px 0; border-bottom: 1px solid #3A362D; }
  .foot-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
  .foot-brand .foot-logo { margin: 0; }
  .foot-brand p { margin: 0; }
  .foot-brand, .foot-visit { grid-column: 1 / -1; }
  .foot-visit { border-bottom: 0 !important; }
  .site-footer address { gap: 14px; }
  .foot-hours { margin-top: 18px; }
  .site-footer .foot-areas { padding-top: 20px; padding-bottom: 20px; }
  .foot-areas p { line-height: 1.7; }
  .site-footer .foot-bottom { flex-direction: column; gap: 4px; padding-top: 18px; padding-bottom: 22px; }
  .to-top-fab { right: 14px; bottom: calc(58px + 14px + env(safe-area-inset-bottom)); width: 44px; height: 44px; }
  body.has-list .to-top-fab { bottom: calc(58px + 92px + env(safe-area-inset-bottom)); }
  .panel.list-box { flex-wrap: nowrap; padding: 10px 12px; gap: 10px; }
  .list-box h3 { font-size: 15px; }
  .list-box .btn { flex: 1 1 auto; min-width: 0; padding: 0 12px; font-size: 14px; }
  .list-box .link-btn { display: none; }
  .list-box { bottom: 66px; }
  .reviews { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  section { padding: 56px 0; }
  .head { margin-bottom: 32px; }
  .grid-3, .items, .row-2, .row-3 { grid-template-columns: 1fr; }
  .grid-3 { gap: 12px; }
  .svc { padding: 20px; }
  .svc .tag { margin-bottom: 10px; }
  .svc p { margin-bottom: 12px; }
  .strip .addr { display: none; }
  .bar { min-height: 64px; gap: 12px; }
  .brand { gap: 10px; }
  .brand-logo { height: 42px; }
  .brand-text b { font-size: 18px; }
  .brand-text small { font-size: 9px; letter-spacing: .12em; }
  .hero { padding: 36px 0 52px; }
  .hero .lede { font-size: 18px; }
  .btn-row .btn { flex: 1 1 100%; }
  .ticket { padding: 22px 20px 18px; }
  .ticket dl div { grid-template-columns: 80px 1fr; }
  .facts li { grid-template-columns: 1fr; gap: 2px; }
  .keyfacts { padding: 4px 18px; }
  .keyfacts div { grid-template-columns: 1fr; gap: 2px; }
  .lead-p { font-size: 18px; }
  .svc-row { grid-template-columns: 1fr; padding: 36px 0; }
  .svc-row .spec { grid-column: auto; }
  .svc-row .num { font-size: 34px; }
  .svc-row h2 { font-size: 28px; }
  .panel, .estimator .inputs, .estimator .out { padding: 22px; }
  .estimator .total { font-size: 56px; }
  .toolbar input[type=search] { max-width: none; }
  .map-frame { aspect-ratio: 1 / 1; }
  .faq summary h3 { font-size: 17px; }
  .cta { padding: 44px 0; }
  .crop::before, .crop::after { display: none; }
  .foot-logo img { height: 72px; }
  .trust-item { flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px 14px; }
  .trust-item:nth-child(odd) { padding-left: 0; }
  .trust-item b { font-size: 15.5px; }
  .trust-item small { font-size: 12.5px; }
  .trust-ic { width: 40px; height: 40px; }
  .g-card { width: 100%; }
}
@media (max-width: 360px) {
  .brand-text small { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
