:root {
  --ink: #26312a;
  --ink-soft: #3d4a3f;
  --text: #566056;
  --muted: #7c8579;
  --line: #e3e6dc;
  --paper: #f6f5ee;
  --paper-deep: #eef1e6;
  --sage: #eaf1e4;
  --sage-deep: #dce9d6;
  --white: #ffffff;
  --green: #4f7a52;
  --green-dark: #3a5e3e;
  --green-deep: #2e4a32;
  --green-soft: #e6f0e3;
  --gold: #d9a94a;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 26px 60px rgba(46, 66, 48, 0.12);
  --shadow-soft: 0 14px 34px rgba(46, 66, 48, 0.08);
  --shadow-card: 0 8px 22px rgba(46, 66, 48, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: geometricPrecision;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2.6rem, 4.6vw, 4.1rem);
}

h2 {
  max-width: 800px;
  margin-bottom: 18px;
  font-size: clamp(1.95rem, 3.5vw, 2.95rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1.15;
}

.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 245, 238, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.nav a {
  padding: 9px 13px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}

.nav a:hover {
  color: var(--green-dark);
  background: var(--sage);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-call {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

@media (min-width: 720px) {
  .header-call {
    display: inline-flex;
  }
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px clamp(24px, 4vw, 64px) 20px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-nav a {
  padding: 12px 6px;
  color: var(--ink-soft);
  font-weight: 700;
  border-radius: 10px;
}

.mobile-nav a.btn-cta {
  color: var(--white);
}

.mobile-nav a:hover {
  background: var(--sage);
}

.mobile-nav .btn {
  margin-top: 8px;
}

.mobile-nav.is-open {
  display: flex;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 32px rgba(58, 94, 62, 0.26);
}

.btn-cta:hover {
  box-shadow: 0 20px 38px rgba(58, 94, 62, 0.32);
}

.btn-sm {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 48px 0 0;
  overflow: hidden;
  background: var(--sage);
  isolation: isolate;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-blobs::before,
.hero-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
}

.hero-blobs::before {
  top: -220px;
  right: -220px;
  width: 560px;
  height: 560px;
  background: var(--paper);
}

.hero-blobs::after {
  bottom: -260px;
  left: -220px;
  width: 600px;
  height: 600px;
  background: var(--sage-deep);
}

.hero-top {
  padding-top: 44px;
  padding-bottom: 8px;
}

.hero-top h1,
.hero-copy {
  max-width: 820px;
}

.hero .eyebrow .stars {
  color: var(--gold);
  font-size: 0.9em;
}

.hero-copy {
  margin-bottom: 28px;
  color: var(--text);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  font-weight: 500;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-points li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
}

.hero-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
  padding-top: 32px;
  padding-bottom: 60px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-owner {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(6px);
}

.hero-owner img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-owner span {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

/* ---------- Quote card (hero) ---------- */

.quote-card {
  position: relative;
  padding: 6px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--green), var(--green-dark));
  box-shadow: var(--shadow);
}

.quote-card-head,
.quote-form {
  background: var(--white);
}

.quote-card-head {
  padding: 26px 26px 6px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.quote-card-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--sage);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quote-card-head h2 {
  margin-bottom: 6px;
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.quote-card-sub {
  margin: 0;
  font-size: 0.94rem;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 18px 26px 26px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.field em {
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(79, 122, 82, 0.14);
}

.field.has-error input,
.field.has-error select {
  border-color: #c0552f;
  box-shadow: 0 0 0 4px rgba(192, 85, 47, 0.1);
}

.quote-form .btn-cta {
  margin-top: 4px;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.form-note.is-error {
  color: #a9482a;
}

.quote-card-foot {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.quote-card-foot a {
  color: var(--green-dark);
  font-weight: 700;
}

/* ---------- Trust strip ---------- */

.strip {
  background: var(--sage);
  border-bottom: 1px solid var(--line);
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 20px 5vw;
}

.strip-inner span {
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}

.strip-inner strong {
  color: var(--green-dark);
  font-weight: 800;
}

/* ---------- Sections ---------- */

.section-pad {
  padding: clamp(56px, 7vw, 96px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading p {
  max-width: 640px;
  font-size: 1.04rem;
}

/* ---------- Services ---------- */

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.service-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.05);
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.service-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--sage);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-body p {
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.service-body ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.service-body li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.service-body li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}

.service-link {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 700;
}

.service-link:hover {
  text-decoration: underline;
}

/* ---------- Difference ---------- */

.difference {
  background: var(--sage);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.difference-card {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.difference-card span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 14px;
  background: var(--sage);
  font-size: 1.3rem;
}

.difference-card p {
  color: var(--text);
}

.detail-list {
  display: grid;
  gap: 20px;
}

.detail-row {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(24px, 5vw, 52px);
  align-items: center;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.detail-row.reverse img {
  order: 2;
}

.detail-row img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.detail-row p {
  color: var(--text);
}

.mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.mini-grid span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--sage);
  font-size: 0.84rem;
  font-weight: 700;
}

/* ---------- Gallery ---------- */

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

figure {
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage-deep);
}

figure.wide {
  grid-column: span 2;
}

figure img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

figure:hover img {
  transform: scale(1.04);
}

figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(46, 74, 50, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

/* ---------- Reviews ---------- */

.reviews {
  background: var(--white);
}

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

.review-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.review-card .stars {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1.02rem;
}

.review-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 600;
}

.review-card strong {
  display: block;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

/* ---------- Process ---------- */

.process {
  background: var(--sage);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.step span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.step p {
  font-size: 0.94rem;
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ---------- Hours ---------- */

.hours {
  background: var(--paper);
}

.hours-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
}

.hours-grid {
  display: grid;
  gap: 16px;
  align-content: start;
}

.hours-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.hours-grid strong,
.hours-grid span {
  display: block;
}

.hours-grid strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.hours-grid span {
  color: var(--green-dark);
  font-size: 1.5rem;
  font-weight: 800;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* ---------- FAQ ---------- */

.faq {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color 160ms ease, background 160ms ease;
}

details[open] {
  border-color: var(--green);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  display: grid;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--sage);
  content: "+";
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

details[open] summary::after {
  content: "\2212";
}

details p {
  margin: -4px 20px 20px;
}

/* ---------- Footer ---------- */

.footer {
  padding: 40px 0;
  color: var(--white);
  background: var(--green-deep);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.14);
}

.footer-brand strong {
  display: block;
  color: var(--white);
}

.footer-brand p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--white);
}

.footer .btn-cta {
  background: var(--white);
  color: var(--green-deep);
  box-shadow: none;
}

/* ---------- Mobile sticky CTA bar ---------- */

.mobile-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.mobile-bar-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 90px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--sage);
  font-weight: 700;
  font-size: 0.9rem;
}

.mobile-bar-quote {
  flex: 1;
}

@media (max-width: 720px) {
  .mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }
}

/* ---------- Reveal animation ---------- */

.reveal {
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .review-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hours-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

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

  .hero-visual {
    min-height: 280px;
  }

  .quote-card {
    max-width: 520px;
  }

  .difference-grid,
  .detail-row,
  .detail-row.reverse {
    grid-template-columns: 1fr;
  }

  .detail-row.reverse img {
    order: 0;
  }

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

@media (max-width: 680px) {
  .header-inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-top {
    padding-top: 20px;
  }

  .hero-columns {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 48px 0;
  }

  .steps,
  .gallery-grid,
  .review-cards {
    grid-template-columns: 1fr;
  }

  figure.wide {
    grid-column: auto;
  }

  .map-frame iframe {
    height: 280px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
