/* ============================================================
   Sydney Pro Cleaners — shared design system
   Used across all pages. Hero image is swappable per page via
   the --hero-img custom property (set in each page's <style>).
   ============================================================ */
:root {
  --bg: #fcfcfa;
  --panel: #eff4f0;
  --green-tint: #e5f3eb;
  --line: #e2e8e3;
  --ink: #15302a;
  --ink-soft: #2a4a41;
  --text: #1e2b27;
  --muted: #5e6e66;
  --green: #1fa971;
  --green-deep: #178a5c;
  --white: #ffffff;
  --star: #f2a93b;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(21, 48, 42, 0.06),
    0 12px 32px -12px rgba(21, 48, 42, 0.18);
  --maxw: 1160px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
.display {
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(31, 169, 113, 0.7);
}
.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green-deep);
}
.btn-lg {
  padding: 1rem 1.7rem;
  font-size: 1.05rem;
}
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 252, 250, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Bricolage Grotesque";
  font-weight: 800;
  font-size: 1.22rem;
  color: var(--ink);
}
.logo .leaf {
  width: 30px;
  height: 30px;
  flex: none;
}
.logo span {
  color: var(--green-deep);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav-links {
  display: flex;
  gap: 1.6rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--green-deep);
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--ink);
}
.phone-link small {
  display: block;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.nav-dd {
  position: relative;
}
.nav-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.nav-dd-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  margin-top: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, transform 0.15s;
  z-index: 60;
}
.nav-dd-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-menu a {
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav-dd-menu a:hover {
  background: var(--green-tint);
  color: var(--green-deep);
}
/* Hamburger + mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 22px 16px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.mobile-menu a {
  padding: 0.8rem 0.2rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child {
  border-bottom: none;
}
.mobile-menu a:hover {
  color: var(--green-deep);
}

/* Hero */
.hero {
  position: relative;
  padding: 64px 0 40px;
  background: linear-gradient(
      98deg,
      rgba(252, 252, 250, 0.975) 0%,
      rgba(252, 252, 250, 0.94) 40%,
      rgba(252, 252, 250, 0.6) 66%,
      rgba(21, 48, 42, 0.18) 100%
    ),
    var(
        --hero-img,
        url("https://images.pexels.com/photos/1457842/pexels-photo-1457842.jpeg?auto=compress&cs=tinysrgb&w=1600")
      )
      center right / cover no-repeat;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  font-weight: 800;
  margin: 0.5rem 0 0.2rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--green-deep);
}
.hero .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 40ch;
  margin: 0.7rem 0 1.5rem;
}
.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.assure {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin-top: 1.6rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.assure span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.tick {
  color: var(--green);
  flex: none;
}
.hero-photo {
  display: none;
}

/* Quote card */
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 26px;
}
.quote-card h3 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.quote-card .sub {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.field {
  margin-bottom: 0.85rem;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.32rem;
}
.field input,
.field select {
  width: 100%;
  padding: 0.78rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font-family: inherit;
  font-size: 0.98rem;
  background: #fff;
  color: var(--text);
  transition: border 0.15s;
}
.field input:focus,
.field select:focus {
  border-color: var(--green);
  outline: none;
}
.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.quote-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
}
.form-note {
  font-size: 0.74rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.7rem;
}
.success {
  display: none;
  text-align: center;
  padding: 14px 4px;
}
.success.show {
  display: block;
}
.success .big {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.6rem;
  background: var(--green-tint);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.success h3 {
  margin-bottom: 0.3rem;
}

/* Trust strip */
.trust {
  background: var(--ink);
  color: #dceee5;
}
.trust .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  text-align: center;
}
.trust .item {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.trust .ic {
  color: #5fd6a0;
}
.trust .t {
  font-family: "Bricolage Grotesque";
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}
.trust .lbl {
  font-size: 0.8rem;
  color: #9fc4b6;
}

/* Sections */
section {
  padding: 74px 0;
}
.sec-head {
  max-width: 680px;
  margin-bottom: 42px;
}
.sec-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 700;
  margin: 0.5rem 0 0.6rem;
}
.sec-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* Service cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card .img {
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
  background: var(--panel);
}
.card .body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card .tag {
  align-self: flex-start;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--green-tint);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}
.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.card p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 1rem;
  flex: 1;
}
.card a.more {
  font-weight: 600;
  color: var(--green-deep);
  font-size: 0.95rem;
  display: inline-flex;
  gap: 0.3rem;
  align-items: center;
}

/* Why us */
.why {
  background: var(--panel);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
  max-width: 880px;
}
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-item .ic {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--green-deep);
  border: 1px solid var(--line);
}
.why-item h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.why-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.shot:hover img {
  transform: scale(1.04);
}
.shot .cap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(21, 48, 42, 0.82);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step .n {
  font-family: "Bricolage Grotesque";
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: var(--green);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.step p {
  color: var(--muted);
  font-size: 0.97rem;
}

/* Suburbs */
.suburbs {
  background: var(--ink);
  color: #dceee5;
}
.suburbs h2 {
  color: #fff;
}
.suburbs .sec-head p {
  color: #9fc4b6;
}
.sub-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sub-grid a {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: 0.15s;
}
.sub-grid a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.review .stars {
  color: var(--star);
  font-size: 1rem;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
}
.review p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.review .who {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.review .who small {
  display: block;
  font-weight: 500;
  color: var(--muted);
}

/* Final CTA */
.final {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 52px clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  background: linear-gradient(
      120deg,
      rgba(21, 48, 42, 0.96),
      rgba(29, 77, 63, 0.9)
    ),
    url("https://images.pexels.com/photos/3634739/pexels-photo-3634739.jpeg?auto=compress&cs=tinysrgb&w=1200")
      center/cover;
  color: #fff;
}
.final h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.final p {
  color: #cfe8dd;
  font-size: 1.1rem;
  max-width: 42ch;
}
.final .btn-primary {
  background: #fff;
  color: var(--ink-soft);
}
.final .btn-primary:hover {
  background: #eafff5;
}
.final-call {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.final-call .phone-big {
  font-family: "Bricolage Grotesque";
  font-weight: 800;
  font-size: 1.7rem;
  color: #fff;
}

/* Footer */
footer {
  background: var(--ink);
  color: #9fc4b6;
  padding: 54px 0 110px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
footer .logo {
  color: #fff;
}
footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  font-family: "Inter";
  font-weight: 700;
}
footer a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}
footer a:hover {
  color: #fff;
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  font-size: 0.84rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-link {
  color: #fff;
  display: inline;
}
.legal-link:hover {
  color: var(--green-tint);
}

/* Sticky mobile bar */
.mbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 14px;
  gap: 10px;
  box-shadow: 0 -6px 20px -8px rgba(21, 48, 42, 0.2);
}
.mbar a {
  flex: 1;
  justify-content: center;
}

/* FAQ */
.faq {
  max-width: 800px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--green-deep);
  font-weight: 400;
  transition: transform 0.2s;
  flex: none;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* ---- Service-page components ---- */
/* Breadcrumb */
.crumbs {
  font-size: 0.85rem;
  color: var(--muted);
  padding-top: 16px;
}
.crumbs a:hover {
  color: var(--green-deep);
}
.crumbs .sep {
  margin: 0 0.45rem;
  opacity: 0.5;
}
.crumbs .here {
  color: var(--ink-soft);
  font-weight: 600;
}

/* Split (image + text) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split .media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.split .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.split h2 {
  margin-bottom: 1rem;
}
.split p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 1rem;
}
.split p:last-child {
  margin-bottom: 0;
}

/* Checklist */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.check-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.check-group h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.check-group h3 svg {
  color: var(--green-deep);
  flex: none;
}
.check-group ul {
  list-style: none;
}
.check-group li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0.28rem 0;
}
.check-group li svg {
  color: var(--green);
  flex: none;
  margin-top: 3px;
}
.check-group.extras {
  grid-column: 1/-1;
  background: var(--green-tint);
  border-color: #c9e8d6;
}
.check-group.extras ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
}

/* Pricing table */
.ptable-wrap {
  max-width: 680px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.ptable {
  width: 100%;
  border-collapse: collapse;
}
.ptable th,
.ptable td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.ptable thead th {
  background: var(--ink);
  color: #fff;
  font-family: "Bricolage Grotesque";
  font-weight: 700;
  font-size: 0.95rem;
}
.ptable thead th.r,
.ptable td.price {
  text-align: right;
}
.ptable tbody tr:last-child td {
  border-bottom: none;
}
.ptable td.price {
  font-family: "Bricolage Grotesque";
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
}
.ptable td.size {
  font-weight: 600;
  color: var(--ink-soft);
}
.price-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 14px;
  max-width: 680px;
  line-height: 1.6;
}

/* Guarantee callout */
.guarantee {
  background: var(--green-tint);
  border: 1px solid #c9e8d6;
  border-radius: var(--radius);
  padding: 30px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 900px;
}
.guarantee .ic {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--green-deep);
  border: 1px solid #c9e8d6;
}
.guarantee h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.guarantee p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.62;
}
.guarantee p.fine {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

@media (max-width: 920px) {
  .hero {
    background: var(--bg);
    padding-top: 46px;
  }
  .hero-photo {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    margin-top: 2px;
  }
  .hero-photo img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero .lede {
    max-width: none;
  }
  .cards,
  .steps,
  .reviews,
  .gallery {
    grid-template-columns: 1fr;
  }
  .why-grid,
  .checklist {
    grid-template-columns: 1fr;
  }
  .check-group.extras ul {
    grid-template-columns: 1fr 1fr;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .guarantee {
    flex-direction: column;
    gap: 14px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu.open {
    display: flex;
  }
  .final {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .final p {
    margin: 0 auto;
  }
  .final-call {
    align-items: center;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .mbar {
    display: flex;
  }
  .phone-link .pn {
    display: none;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 56px 0;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .check-group.extras ul {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto;
  }
}
