/* airductdryervent.com - single stylesheet.
   Design ported from the live Elementor build (Hello Elementor theme):
   primary blue #0A7BC0, secondary green #4B9464, black text on white,
   DM Sans 18px/26px body, Montserrat headings, green feature cards,
   photo-background service cards, blue footer. */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/montserrat-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('/fonts/dm-sans-latin.woff2') format('woff2');
}

:root {
  --blue: #0a7bc0;
  --green: #4b9464;
  --ink: #000;
  --line: #c9c9c9;
  --heading: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --body: 'DM Sans', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 18px;
  line-height: 26px;
  color: var(--ink);
  background: #fff;
}

a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green); }

img { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 20px;
}

h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* The live header and footer templates are full-width (edge-to-edge), on every page. */
.topbar .wrap,
.site-header .wrap,
.site-footer .wrap { max-width: none; }

/* The live HOME page is built from full-width Elementor sections, so its content
   runs edge-to-edge; interior pages stay boxed at 1140. The gallery and the
   after-cleaning benefit columns are boxed even on home, matching live. */
body.home .hero .wrap,
body.home .features .wrap,
body.home .services,
body.home .packages,
body.home .badges,
body.home .reviews-block { max-width: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Centered section title with the short green rule under it */
.section-title {
  text-align: center;
  font-size: 36px;
  color: var(--blue);
  margin: 0 0 8px;
}

.rule {
  width: 110px;
  height: 3px;
  margin: 0 auto 36px;
  background: var(--blue);
  border: 0;
}

/* ---------- top bar ---------- */

.topbar {
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: relative;
  z-index: 30;
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
}

.nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  display: block;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
}

.nav a:hover, .nav a[aria-current="page"] { color: var(--blue); }

/* vertical dividers between nav items (live nav's EAEL simple-menu separators) */
.nav li a { border-right: 1px solid var(--line); }
.nav li:first-child a { border-left: 1px solid var(--line); }

.topbar .phone {
  white-space: nowrap;
  font-weight: 700;
  color: var(--ink);
}
.topbar .phone:hover { color: var(--blue); }

.burger {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- header ---------- */

.site-header { background: #fff; }

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
}

.site-header .logo img { display: block; width: 480px; max-width: 100%; }

.site-header .hours {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin: 0;
}

.header-actions { display: flex; gap: 12px; }

.btn {
  display: inline-block;
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 18px;
  border: 1px solid var(--blue);
  border-radius: 3px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.btn-blue {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  font-size: 18px;
  padding: 18px 25px;
}

.btn-blue:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* ---------- hero (home) ---------- */

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 80px 0;
}

.hero-slides { position: absolute; inset: 0; z-index: 0; background: #222; }

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity .5s ease;
}

.hero-slides img.active { opacity: 1; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: .55;
  z-index: 1;
}

.hero .wrap {
  position: relative;
  z-index: 2;
}

.hero-text { max-width: 720px; }

/* "See Reviews" carries a circle-arrow icon on the live hero button */
.hero .btn-blue::after {
  content: "";
  display: inline-block;
  width: .9em;
  height: .9em;
  margin-left: 10px;
  vertical-align: -.12em;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256l-101.6 101.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256l-101.6 101.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.hero h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 14px;
}

.price-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.price-list li {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 40px;
  line-height: 44px;
  color: #fff;
  margin-bottom: 22px;
}

.price-list li:last-child { margin-bottom: 0; }

.area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.area-list li {
  font-family: var(--heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  padding: 4px 17px;
  position: relative;
}

.area-list li:first-child { padding-left: 0; }

.area-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1.1em;
  border-left: 2px solid var(--green);
}

/* ---------- feature cards (We're Timely, ...) ---------- */

.features {
  margin: 40px 0;
}

.features .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature {
  background: var(--green);
  color: #fff;
  padding: 30px;
  border-radius: 4px;
}

.feature h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 12px;
}

.feature p { margin: 0; font-size: 18px; line-height: 30px; }

/* ---------- service cards ---------- */

.services { margin: 40px auto; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: .4;
  transition: opacity .2s ease;
}

.service-card:hover::before { opacity: .6; }

.service-card .h {
  position: relative;
  color: #fff;
  font-family: var(--heading);
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
  padding: 0 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.card-air-duct { background-image: url('/img/service-air-duct-400.webp'); }
.card-dryer-vent { background-image: url('/img/service-dryer-vent-400.webp'); }
.card-chimney { background-image: url('/img/service-chimney-400.webp'); }

/* ---------- package cards ---------- */

.packages { margin: 40px auto; }

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.package {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 13px 2px rgba(0, 0, 0, .23);
  padding: 40px 20px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.package .badge {
  position: absolute;
  top: 16px;
  right: -42px;
  width: 160px;
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  padding: 5px 0;
}

.package h3 {
  color: var(--blue);
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
}

.package .price {
  color: var(--green);
  font-family: var(--body);
  font-size: 30px;
  font-weight: 800;
  line-height: 40px;
}

.package .more {
  margin: auto -20px -30px;
  display: block;
  background: #6ec1e4;
  color: #fff;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  padding: 14px 12px;
  transition: background .2s ease;
}

.package .more:hover { background: #5bb3dd; }

.packages .note { text-align: center; font-weight: 700; margin-top: 24px; }

/* ---------- badges (achievements) ---------- */

.badges { margin: 40px auto; }

.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  align-items: center;
  gap: 34px 40px;
}

.badge-grid img { height: 120px; width: auto; max-width: 100%; }

/* ---------- committed band (After cleaning you will receive) ---------- */

.committed {
  background: url('/img/block-bg-2-1920.webp') center / cover no-repeat;
  padding: 40px 0;
  margin: 40px 0;
}

.committed .cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}

.committed ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.committed li {
  font-family: var(--body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  padding: 8px 0 8px 36px;
  position: relative;
}

.committed li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 202.4L232.6 349.9c-4.7 4.7-12.3 4.7-17 0l-79.4-79.4c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.9 53.9 114.6-114.6c4.7-4.7 12.3-4.7 17 0l17 17c4.8 4.7 4.8 12.3.1 17z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 202.4L232.6 349.9c-4.7 4.7-12.3 4.7-17 0l-79.4-79.4c-4.7-4.7-4.7-12.3 0-17l17-17c4.7-4.7 12.3-4.7 17 0l53.9 53.9 114.6-114.6c4.7-4.7 12.3-4.7 17 0l17 17c4.8 4.7 4.8 12.3.1 17z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ---------- work photo gallery ---------- */

.work { margin: 40px auto; }

.gallery {
  columns: 4;
  column-gap: 8px;
}

.gallery a { display: block; break-inside: avoid; margin-bottom: 8px; }

.gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}

/* ---------- reviews ---------- */

.reviews-block { margin: 40px auto; }

.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  font-family: var(--heading);
}

.review-summary .excellent { font-size: 24px; font-weight: 700; }
.review-summary .count { font-size: 15px; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card .who {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex: none;
}

.review-card .name { font-weight: 700; line-height: 1.2; }
.review-card .date { font-size: 14px; color: #555; }
.review-card .source { font-size: 13px; color: #555; margin-top: auto; }

.stars {
  color: #f6bb06;
  letter-spacing: 2px;
  font-size: 18px;
  line-height: 1;
}

.review-card p { margin: 0; font-size: 16px; line-height: 24px; }

.reviews-block .more-link { text-align: center; margin-top: 26px; font-weight: 700; }

/* ---------- tables (service pricing) ---------- */

.table-wrap { overflow-x: auto; margin: 0 0 30px; }

table.prices {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 24px;
}

table.prices th {
  background: var(--blue);
  color: #fff;
  font-family: var(--heading);
  font-weight: 600;
  text-align: left;
  padding: 12px 14px;
}

table.prices td {
  border: 1px solid #e2e2e2;
  padding: 10px 14px;
  vertical-align: top;
}

table.prices tr:nth-child(even) td { background: #f7f9fb; }

table.prices td.num { white-space: nowrap; font-weight: 700; }

/* ---------- page body / articles ---------- */

.page-title {
  position: relative;
  background: #2b2b2b center / cover no-repeat;
  padding: 100px 0;
  margin-bottom: 40px;
  text-align: center;
}

/* One unique band photo per section, as on the live site.
   air-duct / chimney-sweep / reviews reuse the live site's own band images.
   The live dryer-vent, contact-us and write-review bands are BROKEN (their
   Elementor per-page CSS - post-513/268/896.css - is a 0-byte file, so those
   pages render with no banner at all), so they get thematically matched
   images from the site's own media instead of reproducing the breakage. */
.page-title.band-air-duct     { background-image: url('/img/istock-182664368-1-jpg-1920.webp'); }
.page-title.band-chimney      { background-image: url('/img/istock-612001346-1-jpg-1920.webp'); }
.page-title.band-reviews      { background-image: url('/img/istock-628856792-1-jpg-1920.webp'); }
.page-title.band-dryer-vent   { background-image: url('/img/istock-187512989-1-jpg-1920.webp'); }
.page-title.band-contact      { background-image: url('/img/istock-160933254-1-jpg-1920.webp'); }
.page-title.band-write-review { background-image: url('/img/istock-1390655327-1-jpg-1920.webp'); }

/* the live reviews band darkens a touch more than the others */
.page-title.band-reviews::before { opacity: .6; }

.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: .5;
}

.page-title .wrap { position: relative; }

.page-title h1 {
  margin: 0;
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
}

/* blog archive + single posts: plain heading, no banner (Hello Elementor default) */
.page-title.plain {
  background: none;
  padding: 0;
  margin: 24px 0 18px;
  text-align: left;
}

.page-title.plain::before { display: none; }

.page-title.plain h1 {
  color: var(--ink);
  font-family: var(--body);
  font-size: 40px;
  font-weight: 500;
}

.content { margin: 40px auto; }

/* interior content column is a narrow centered measure, like live (~820px);
   headings inherit the centered .section-title + short centered .rule (as home). */
.content-narrow { max-width: 820px; }

article.post { max-width: 820px; margin: 0 auto; }

article.post .post-date { color: #555; font-size: 15px; margin-bottom: 24px; }

article.post h2 { font-size: 26px; margin-top: 36px; }
article.post h3 { font-size: 21px; margin-top: 28px; }

article.post img.featured {
  border-radius: 4px;
  margin-bottom: 24px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

ul.checks { list-style: none; margin: 0 0 26px; padding: 0; }

ul.checks li {
  padding: 4px 0 4px 30px;
  position: relative;
}

ul.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M173.9 439.4L7.5 273c-10-10-10-26.2 0-36.2l36.2-36.2c10-10 26.2-10 36.2 0L192 312.7 432.1 72.6c10-10 26.2-10 36.2 0l36.2 36.2c10 10 10 26.2 0 36.2L210.1 439.4c-10 10-26.2 10-36.2 0z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M173.9 439.4L7.5 273c-10-10-10-26.2 0-36.2l36.2-36.2c10-10 26.2-10 36.2 0L192 312.7 432.1 72.6c10-10 26.2-10 36.2 0l36.2 36.2c10 10 10 26.2 0 36.2L210.1 439.4c-10 10-26.2 10-36.2 0z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.align-right-img { float: right; margin: 0 0 16px 24px; border-radius: 4px; }

@media (max-width: 700px) {
  .align-right-img { float: none; margin: 0 0 16px; }
}

/* ---------- blog listing ---------- */

.post-list {
  display: block;
  margin: 40px 0;
}

.post-tile {
  display: block;
  margin-bottom: 44px;
}

.post-tile img { display: block; width: 100%; height: auto; max-height: 500px; object-fit: cover; }

.post-tile .body { padding: 14px 0 0; display: flex; flex-direction: column; gap: 8px; }

.post-tile h2 { font-size: 32px; line-height: 1.2; font-weight: 500; margin: 0; }

.post-tile h2 a { color: var(--blue); }
.post-tile h2 a:hover { color: var(--green); }

.post-tile p { margin: 0; font-size: 18px; line-height: 26px; color: var(--ink); }

/* ---------- contact form ---------- */

.contact-form { max-width: 640px; }

.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 18px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  font: inherit;
  color: inherit;
  border: 1px solid #b9b9b9;
  border-radius: 3px;
  background: #fff;
}

.contact-form textarea { min-height: 180px; resize: vertical; }

.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 0;
  border-color: var(--blue);
}

.contact-form .hp { position: absolute; left: -9999px; }

.form-status { margin: 14px 0 0; font-weight: 700; }
.form-status.ok { color: var(--green); }
.form-status.error { color: #c0392b; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--blue);
  color: #fff;
  margin-top: 60px;
}

.site-footer a { color: #fff; }
.site-footer a:hover { color: #cfe8f7; }

.site-footer .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 40px 0;
}

.site-footer h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.site-footer .logo-box {
  background: #fff;
  border-radius: 4px;
  padding: 10px 14px;
  display: inline-block;
  margin-bottom: 14px;
}

.site-footer .logo-box img { display: block; width: 260px; }

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 4px 0; }

.social-links { display: flex; gap: 12px; }

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
}

.social-links svg { width: 18px; height: 18px; fill: currentColor; }

.copyright {
  border-top: 1px solid #bababa;
  padding: 10px 0;
  text-align: center;
  font-size: 15px;
}

/* ---------- 404 ---------- */

.plain-404 { text-align: center; padding: 80px 20px; }
.plain-404 h1 { font-size: 80px; color: var(--blue); margin-bottom: 10px; }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .hero { padding: 40px 0; }
  .section-title { font-size: 30px; }
  .features .wrap { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 3; }
  .post-list { grid-template-columns: repeat(2, 1fr); }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .price-list li { font-size: 30px; line-height: 36px; }
}

@media (max-width: 700px) {
  h1 { font-size: 28px; }
  .section-title { font-size: 26px; }
  h2 { font-size: 24px; }

  .burger { display: block; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .08);
  }

  body.menu-open .nav { display: block; }

  .nav ul { flex-direction: column; }
  .nav a { padding: 12px 20px; border-top: 1px solid #eee; }

  .site-header .wrap { justify-content: center; text-align: center; }

  .service-cards { grid-template-columns: 1fr; }
  .features .wrap { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .post-list { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .committed .cols { grid-template-columns: 1fr; text-align: left; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .price-list li { font-size: 20px; line-height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slides img { transition: none; }
}
