/* ============================================================
   Zanshin — styles.css
   Design tokens, layout, components, responsive rules, motion.
   ============================================================ */

:root {
  --ink: #1b1a17;
  --ink-soft: #3a3833;
  --sub: #6f6b63;
  --line: #ddd8cf;
  --surface: #faf8f4;
  --surface-alt: #f1eee6;
  --accent: oklch(55% 0.09 45);
  --accent-dark: #8a3f1f;
  --accent-ink: #fffaf4;

  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-head: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --sidebar-w: 96px;
  --topbar-h: 64px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--accent-dark); }

h1, h2, h3 { font-family: var(--font-head); margin: 0; letter-spacing: -0.01em; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--ink); color: var(--accent-ink);
  padding: 10px 16px; border-radius: 4px; z-index: 200; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; background: var(--accent); color: var(--accent-ink);
  border-radius: 3px; font-size: 15px; font-weight: 600; white-space: nowrap;
  border: none; cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  box-shadow: 0 1px 2px rgba(27,26,23,0.08);
}
.btn:hover { background: var(--accent-dark); color: var(--accent-ink); transform: translateY(-2px); box-shadow: 0 8px 20px -8px rgba(27,26,23,0.35); }
.btn:active { transform: translateY(0); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border: 1px solid var(--ink); color: var(--ink);
  border-radius: 3px; font-size: 14px; font-weight: 600; transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.btn-outline:hover { background: var(--ink); color: var(--accent-ink); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; background: none; color: var(--ink); border: 1px solid var(--ink);
  border-radius: 3px; font-size: 15px; font-weight: 600; white-space: nowrap; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-secondary:hover { background: var(--ink); color: var(--accent-ink); transform: translateY(-2px); }
.btn-secondary:active { transform: translateY(0); }
.btn-secondary svg { width: 18px; height: 18px; fill: currentColor; stroke: none; flex-shrink: 0; }

.btn-secondary-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; background: none; color: var(--accent-ink); border: 1px solid var(--accent-ink);
  border-radius: 3px; font-size: 15px; font-weight: 600; white-space: nowrap; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-secondary-dark:hover { background: var(--accent-ink); color: var(--ink); transform: translateY(-2px); }
.btn-secondary-dark:active { transform: translateY(0); }
.btn-secondary-dark svg { width: 18px; height: 18px; fill: currentColor; stroke: none; flex-shrink: 0; }

.sidenav-actions .whatsapp-link { display: flex; color: #cbc6bc; transition: color 0.2s var(--ease); }
.sidenav-actions .whatsapp-link:hover { color: var(--accent); }
.sidenav-actions .whatsapp-link svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Layout shell ---------- */
.app { display: flex; min-height: 100vh; }
.main { flex: 1; min-width: 0; margin-left: var(--sidebar-w); }

/* ---------- Sidebar (desktop) ---------- */
.sidenav {
  position: fixed; left: 0; top: 0; bottom: 0; width: var(--sidebar-w);
  background: var(--ink); display: flex; flex-direction: column; align-items: center;
  padding: 24px 0 20px; gap: 36px; z-index: 100;
}
.brand { display: flex; align-items: center; justify-content: center; }
.brand img { width: 38px; height: 38px; border-radius: 50%; background: #f1ede4; object-fit: contain; }

.nav-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 26px; align-items: center; }
.nav-links a {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: #cbc6bc; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px; border-radius: 6px; transition: color 0.2s var(--ease);
}
.nav-links a svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; transition: transform 0.2s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--accent-ink); }
.nav-links a:hover svg { transform: translateY(-2px); }
.nav-links a.active svg { stroke: var(--accent); }

.sidenav-actions { margin-top: auto; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.sidenav .call {
  writing-mode: vertical-rl; text-orientation: mixed;
  padding: 10px; font-size: 11px;
}

/* ---------- Topbar (tablet/mobile) ---------- */
.topbar {
  display: none; position: fixed; top: 0; left: 0; right: 0; height: var(--topbar-h);
  background: var(--ink); align-items: center; justify-content: space-between;
  padding: 0 20px; z-index: 110;
}
.topbar .brand img { width: 32px; height: 32px; }
.menu-toggle {
  background: none; border: none; padding: 8px; cursor: pointer; display: flex;
  flex-direction: column; gap: 4px; width: 36px; height: 36px; align-items: center; justify-content: center;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--accent-ink); transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-panel {
  position: fixed; inset: var(--topbar-h) 0 0 0; background: var(--ink);
  transform: translateX(-100%); transition: transform 0.35s var(--ease);
  z-index: 105; padding: 32px 28px; display: flex; flex-direction: column; gap: 28px;
}
.mobile-panel.open { transform: translateX(0); }
.mobile-panel .nav-links { flex-direction: column; align-items: flex-start; gap: 22px; }
.mobile-panel .nav-links a { flex-direction: row; font-size: 16px; letter-spacing: 0; text-transform: none; gap: 14px; color: var(--accent-ink); }
.mobile-panel .nav-links a svg { width: 22px; height: 22px; }
.mobile-panel .btn, .mobile-panel .btn-secondary-dark { align-self: flex-start; }

/* ---------- Hero ---------- */
.hero { display: flex; min-height: 640px; }
.hero-copy { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 20px; padding: 64px; }
.eyebrow { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.hero-copy h1 { font-size: 44px; font-weight: 700; line-height: 1.16; max-width: 640px; }
.hero-copy p.lead { font-size: 17px; color: var(--sub); line-height: 1.6; max-width: 460px; }
.hero-cta { display: flex; align-items: center; gap: 16px; margin-top: 4px; flex-wrap: wrap; }
.rating-line { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--sub); }
.rating-line .stars { display: inline-flex; gap: 2px; }
.rating-line strong { font-weight: 700; color: var(--ink); }
.hero-media { flex: 1; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s var(--ease); }
.hero:hover .hero-media img { transform: scale(1.04); }

/* ---------- Stats / About ---------- */
.about { padding: 44px 64px; background: var(--ink); scroll-margin-top: 24px; }
.about-intro { max-width: 640px; margin: 0 auto 32px; text-align: center; color: #cbc6bc; }
.about-intro h2 { color: var(--surface); font-size: 22px; margin-bottom: 10px; }
.about-intro p { font-size: 15px; line-height: 1.6; margin: 0; }
.stats { display: flex; }
.stat { flex: 1; display: flex; flex-direction: column; gap: 4px; align-items: center; border-right: 1px solid #3a3833; }
.stat:last-child { border-right: none; }
.stat .num { font-size: 32px; font-weight: 800; color: var(--surface); }
.stat .label { font-size: 13px; color: #cbc6bc; }

/* ---------- Section shells ---------- */
.section { padding: 64px 64px 40px; scroll-margin-top: 24px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.section-head h2 { font-size: 30px; font-weight: 700; }
.section-head .hint { font-size: 13px; color: var(--sub); }
.section-sub { font-size: 14px; color: var(--sub); margin-top: 6px; }

/* ---------- Portfolio masonry ---------- */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 140px; gap: 20px;
}
.tile { position: relative; overflow: hidden; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.tile:hover img { transform: scale(1.05); }
.tile .cap {
  position: absolute; left: 10px; bottom: 10px; background: rgba(27,26,23,0.72); color: var(--accent-ink);
  font-size: 12px; padding: 5px 10px; border-radius: 2px;
}
.tile.span-2 { grid-row: span 2; }

/* ---------- Work in progress ---------- */
.wip { padding: 0 64px 56px; }
.wip-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.wip-item { display: flex; flex-direction: column; gap: 8px; }
.wip-thumb { height: 120px; overflow: hidden; }
.wip-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.wip-item:hover .wip-thumb img { transform: scale(1.06); }
.wip-item .cap { font-size: 12px; color: var(--sub); }

/* ---------- Services teaser (3-column) ---------- */
.services-teaser { background: var(--surface-alt); padding-bottom: 48px; }
.services-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.services-col {
  display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line);
  padding: 28px 24px 24px; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.services-col:hover { border-color: var(--accent); transform: translateY(-2px); }
.services-col h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.services-col-list { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.services-col-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; line-height: 1.35; }
.services-col-list svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.services-col-more { align-self: flex-start; }

/* ---------- Areas we serve ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  display: inline-flex; align-items: center; padding: 9px 18px; border: 1px solid var(--line);
  border-radius: 999px; font-size: 14px; color: var(--ink); background: var(--surface);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.pill:hover { border-color: var(--accent); transform: translateY(-1px); }
.pill.more { color: var(--sub); border-style: dashed; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--surface-alt); }
.testi-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.testi-card {
  display: flex; flex-direction: column; gap: 10px; background: var(--surface);
  border: 1px solid var(--line); padding: 24px; transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.testi-card:hover { box-shadow: 0 12px 28px -16px rgba(27,26,23,0.25); transform: translateY(-3px); }
.testi-card .quote { font-size: 15px; line-height: 1.6; }
.testi-card .who { font-size: 13px; color: var(--sub); font-weight: 600; }

/* ---------- CTA / Contact ---------- */
.cta {
  display: flex; align-items: center; justify-content: space-between; padding: 48px 64px;
  background: var(--ink); flex-wrap: wrap; gap: 20px; scroll-margin-top: 24px;
}
.cta h2 { font-size: 26px; font-weight: 700; color: var(--surface); }
.cta p { font-size: 14px; color: #cbc6bc; margin: 6px 0 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer.site-footer { padding: 28px 64px 0; }
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap;
  gap: 16px; padding-bottom: 20px;
}
.footer-top .brandline { font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.footer-top .muted { color: var(--sub); font-size: 14px; }
.footer-contact { text-align: right; font-size: 13px; flex-shrink: 0; }
.footer-contact > div { margin-bottom: 4px; }
.footer-contact > div:last-child { margin-bottom: 0; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; padding: 20px 0;
  border-top: 1px solid var(--line); font-size: 12px; color: var(--sub); flex-wrap: wrap; gap: 8px;
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .tile img, .wip-thumb img, .hero-media img, .testi-card, .pill, .menu-toggle span, .mobile-panel {
    transition: none !important;
  }
  .hero:hover .hero-media img, .tile:hover img, .wip-item:hover .wip-thumb img { transform: none; }
}

/* ============================================================
   Services page
   ============================================================ */
.page-hero { padding: 64px 64px 40px; max-width: 760px; }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: 38px; font-weight: 700; line-height: 1.16; margin-bottom: 12px; }
.page-hero p.lead { font-size: 16px; color: var(--sub); line-height: 1.6; }

.tabs {
  display: flex; gap: 8px; padding: 0 64px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--surface); z-index: 20;
}
.tab-btn {
  appearance: none; background: none; border: none; cursor: pointer; font: inherit;
  padding: 16px 6px; margin-right: 28px; font-size: 15px; font-weight: 600; color: var(--sub);
  border-bottom: 2px solid transparent; transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.tab-btn:hover { color: var(--ink); }
.tab-btn[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--accent); }

.tab-panel { display: none; padding: 40px 64px 72px; }
.tab-panel.active { display: block; }

.category-split { display: flex; gap: 32px; align-items: stretch; margin-bottom: 8px; }
.category-photo { flex: 0 0 38%; min-height: 460px; overflow: hidden; position: relative; }
.category-photo img { width: 100%; height: 100%; object-fit: cover; }
.category-photo .cap {
  position: absolute; left: 20px; bottom: 20px; background: rgba(27,26,23,0.72); color: var(--accent-ink);
  font-size: 13px; padding: 8px 14px; border-radius: 2px;
}

.svc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-content: start; }
.category-split .svc-grid { flex: 1; }
.svc-card {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px; border: 1px solid var(--line);
  background: var(--surface-alt); transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.svc-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.svc-card svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.svc-card span { font-size: 14px; font-weight: 600; line-height: 1.35; }
.svc-note { font-size: 13px; color: var(--sub); margin-top: 20px; }

/* ============================================================
   Enquiry form
   ============================================================ */
.enquiry-form { padding: 8px 64px 80px; max-width: 820px; }
.form-section { border: none; margin: 0 0 40px; padding: 0; }
.form-section legend {
  font-size: 18px; font-weight: 700; padding: 0 0 20px; margin: 0; width: 100%;
  border-bottom: 1px solid var(--line);
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin: 20px 0 0; }
.form-group label { font-size: 14px; font-weight: 600; }
.form-group .req { color: var(--accent-dark); }
.form-group .opt { color: var(--sub); font-weight: 400; }

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 3px; font: inherit;
  font-size: 14px; color: var(--ink); background: var(--surface); transition: border-color 0.2s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { resize: vertical; }

.radio-row { display: flex; gap: 24px; flex-wrap: wrap; }
.radio-row label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; cursor: pointer; }
.radio-row input { accent-color: var(--accent); width: 16px; height: 16px; }

.category-choice-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.category-choice {
  display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px;
  border: 1px solid var(--line); border-radius: 3px; cursor: pointer; font-weight: 700; font-size: 14px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.category-choice:has(input:checked) { border-color: var(--accent); background: var(--surface-alt); }
.category-choice input { margin: 0; accent-color: var(--accent); }

.service-checklist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.service-checklist[hidden] { display: none; }
.svc-check {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px; border: 1px solid var(--line);
  background: var(--surface-alt); cursor: pointer; transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.svc-check:has(input:checked) { border-color: var(--accent); background: var(--surface); }
.svc-check input { margin: 0; width: 16px; height: 16px; accent-color: var(--accent); flex-shrink: 0; }
.svc-check svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.svc-check span { font-size: 14px; font-weight: 600; line-height: 1.35; }

.enquiry-form > .btn { margin-top: 8px; }
.form-privacy-note { font-size: 13px; color: var(--sub); margin: 12px 0 0; }
.form-msg {
  padding: 16px 20px; border-left: 3px solid var(--accent); background: var(--surface-alt);
  font-size: 14px; margin-top: 20px;
}
.form-msg.error { border-left-color: var(--accent-dark); }

/* ============================================================
   Responsive — tablet
   ============================================================ */
@media (max-width: 1024px) {
  .sidenav { display: none; }
  .topbar { display: flex; }
  .main { margin-left: 0; margin-top: var(--topbar-h); }

  .hero { flex-direction: column; min-height: 0; }
  .hero-copy { padding: 48px 40px 32px; }
  .hero-copy h1 { font-size: 36px; }
  .hero-media { height: 360px; }

  .about { padding: 40px; }
  .section { padding: 48px 40px 32px; }
  .wip { padding: 0 40px 48px; }

  .portfolio-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 130px; }
  .wip-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .testi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-columns { grid-template-columns: 1fr; }

  .cta { padding: 40px; }
  footer.site-footer { padding: 24px 40px 0; }
  .footer-contact { text-align: left; }

  .page-hero { padding: 40px 40px 28px; }
  .page-hero h1 { font-size: 30px; }
  .tabs { padding: 0 40px; }
  .tab-panel { padding: 32px 40px 56px; }
  .category-split { flex-direction: column; gap: 24px; }
  .category-photo { flex: none; min-height: 260px; }
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .enquiry-form { padding: 8px 40px 56px; }
}

/* ============================================================
   Responsive — mobile
   ============================================================ */
@media (max-width: 640px) {
  .hero-copy { padding: 36px 24px 28px; gap: 16px; }
  .hero-copy h1 { font-size: 28px; }
  .hero-copy p.lead { max-width: none; }
  .hero-media { height: 260px; }

  .about { padding: 32px 24px; }
  .about-intro h2 { font-size: 19px; }
  .stats { flex-direction: column; gap: 20px; }
  .stat { border-right: none; border-bottom: 1px solid #3a3833; padding-bottom: 16px; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }

  .section { padding: 40px 24px 24px; }
  .section-head h2 { font-size: 24px; }
  .wip { padding: 0 24px 40px; }

  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 120px; gap: 12px; }
  .tile.span-2 { grid-row: span 2; }
  .wip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .wip-thumb { height: 100px; }

  .pill { font-size: 13px; padding: 8px 14px; }

  .testi-grid { grid-template-columns: 1fr; }

  .cta { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta .btn, .cta .btn-secondary-dark { width: 100%; }

  footer.site-footer { padding: 20px 24px 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  .page-hero { padding: 32px 24px 24px; }
  .page-hero h1 { font-size: 25px; }
  .tabs { padding: 0 24px; gap: 0; }
  .tab-btn { margin-right: 18px; padding: 12px 4px; font-size: 14px; }
  .tab-panel { padding: 24px 24px 48px; }
  .category-split { gap: 20px; margin-bottom: 24px; }
  .category-photo { min-height: 180px; }
  .svc-grid { grid-template-columns: 1fr; gap: 10px; }
  .svc-card { padding: 14px 16px; }

  .enquiry-form { padding: 8px 24px 40px; }
  .category-choice-row { grid-template-columns: 1fr; }
  .service-checklist { grid-template-columns: 1fr; }
  .radio-row { gap: 16px; }
}
