/* Ofir Construction Inc. — modernized design system
   Brand core kept: Poppins + Open Sans · Teal #049f82/#008f72 · Yellow #fcb900 · Charcoal ink
   Polish layer: glass surfaces, gradient CTAs, lift/hover motion, connected timeline,
   scroll reveals, refined type scale. */

:root {
  --teal: #049f82;
  --teal-dark: #008f72;
  --teal-deep: #00735d;
  --yellow: #fcb900;
  --yellow-deep: #e5a900;
  --ink: #17191c;
  --ink-soft: #222529;
  --gray-7: #3d4249;
  --gray-6: #4b5563;
  --gray-5: #6b7280;
  --line: #e8eaed;
  --surface: #f6f8f9;
  --white: #ffffff;
  --radius-s: 10px;
  --radius: 14px;
  --radius-l: 20px;
  --shadow-s: 0 1px 2px rgba(16, 24, 40, .05), 0 1px 3px rgba(16, 24, 40, .06);
  --shadow-m: 0 6px 18px rgba(16, 24, 40, .08), 0 2px 6px rgba(16, 24, 40, .05);
  --shadow-l: 0 20px 45px rgba(16, 24, 40, .14);
  --glow-teal: 0 10px 26px rgba(4, 159, 130, .32);
  --glow-yellow: 0 10px 26px rgba(252, 185, 0, .30);
  --grad-teal: linear-gradient(135deg, #06b392 0%, #008f72 100%);
  --grad-yellow: linear-gradient(135deg, #ffcb1f 0%, #f5ad00 100%);
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-6);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--teal); color: var(--white); }

h1, h2, h3, .trust-big {
  font-family: var(--heading-font);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); font-weight: 700; letter-spacing: -.015em; }
h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -.01em; }

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

a { color: var(--teal-dark); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 860px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out),
              background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-teal { background: var(--grad-teal); color: var(--white); box-shadow: var(--glow-teal); }
.btn-teal:hover { background: var(--grad-teal); color: var(--white); box-shadow: 0 14px 32px rgba(4, 159, 130, .42); }
.btn-yellow { background: var(--grad-yellow); color: var(--ink); box-shadow: var(--glow-yellow); }
.btn-yellow:hover { background: var(--grad-yellow); color: var(--ink); box-shadow: 0 14px 32px rgba(252, 185, 0, .42); }
.btn-outline { border: 2px solid rgba(255, 255, 255, .75); color: var(--white); background: rgba(255, 255, 255, .04); backdrop-filter: blur(4px); }
.btn-outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-outline-light { border: 2px solid rgba(255, 255, 255, .75); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-lg { font-size: 1.06rem; padding: 16px 30px; border-radius: 14px; }
.btn-block { display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 12px; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; border-radius: 4px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(10, 12, 14, .5), rgba(10, 12, 14, 0));
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(16, 18, 22, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .28);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { border-radius: 8px; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a:not(.btn) {
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: .96rem;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.site-nav a:not(.btn):hover::after { transform: scaleX(1); }
.site-nav .btn-phone { padding: 11px 20px; border-radius: 999px; box-shadow: none; }
.site-nav a.active { color: var(--yellow); }
.site-nav a.active::after { transform: scaleX(1); }
.btn-outline-teal { border: 2px solid var(--teal); color: var(--teal-deep); background: var(--white); }
.btn-outline-teal:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white);
  font-size: 1.25rem;
  border-radius: 10px;
  padding: 6px 12px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(100deg, rgba(13, 16, 19, .84) 0%, rgba(13, 16, 19, .58) 46%, rgba(13, 16, 19, .30) 100%),
    url('../images/hero.webp') center / cover no-repeat;
  padding: 150px 0 120px;
  color: var(--white);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(330px, .78fr);
  gap: 52px;
  align-items: center;
  width: 100%;
}
.hero-bar {
  display: block;
  width: 64px;
  height: 5px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--teal), var(--yellow));
  margin-bottom: 26px;
}
.hero-copy h1 { color: var(--white); margin-bottom: 22px; text-wrap: balance; }
.hero-copy p { font-size: 1.1rem; max-width: 56ch; color: rgba(255, 255, 255, .92); }
.hero-copy strong { color: var(--white); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-note {
  margin-top: 18px;
  font-size: .92rem;
  color: rgba(255, 255, 255, .82);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
}
.hero-note span::before { content: "·"; margin-right: 14px; color: rgba(255,255,255,.4); }
.hero-note span:first-child::before { content: none; }

.hero-card {
  background: rgba(17, 20, 24, .68);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
  padding: 34px 30px;
}
.hero-card h2 { color: var(--yellow); font-size: 1.55rem; margin-bottom: 10px; letter-spacing: -.01em; }
.hero-card > p { color: rgba(255, 255, 255, .85); font-size: .98rem; margin-bottom: 10px; }
.hero-card-list { list-style: none; margin-top: 20px; }
.hero-card-list li {
  color: rgba(255, 255, 255, .92);
  font-size: .95rem;
  padding: 10px 0 10px 28px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.hero-card-list li:first-child { border-top: 0; }
.hero-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ---------- Trust strip (overlapping glass) ---------- */
.trust-row {
  position: relative;
  z-index: 5;
  margin-top: -54px;
  padding: 0 24px;
}
.trust-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(20, 23, 27, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
  padding: 26px 12px;
}
.trust-item {
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, .12);
  padding: 2px 10px;
}
.trust-item:first-child { border-left: 0; }
.trust-big { color: var(--white); font-size: 1.5rem; font-weight: 800; display: block; }
.trust-item small { font-family: var(--body-font); font-weight: 400; color: rgba(255, 255, 255, .72); }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  background: rgba(4, 159, 130, .09);
  border: 1px solid rgba(4, 159, 130, .18);
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .8rem;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.section h2 { margin-bottom: 16px; text-wrap: balance; }
.section-intro { max-width: 68ch; margin-bottom: 40px; font-size: 1.03rem; }

/* ---------- Service cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); }
.card-media { overflow: hidden; }
.card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .65s var(--ease-out);
}
.card:hover img { transform: scale(1.055); }
.card h3 { padding: 22px 22px 0; }
.card p { padding: 10px 22px 0; font-size: .97rem; flex: 1; color: var(--gray-6); }
a.card h3 { color: var(--ink); }
.card-link {
  display: inline-block;
  padding: 16px 22px 20px;
  color: var(--teal-deep);
  font-family: var(--heading-font);
  font-weight: 700;
  text-decoration: none;
  font-size: .96rem;
  transition: transform .25s var(--ease-out);
}
.card:hover .card-link { transform: translateX(4px); color: var(--teal-dark); }
.more-services {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.more-services a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 15px 18px;
  text-decoration: none;
  color: var(--ink-soft);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: .93rem;
  text-align: center;
  transition: all .22s var(--ease-out);
}
.more-services a:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: rgba(4, 159, 130, .06);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 159, 130, .14);
}

/* ---------- Problems / split ---------- */
.split { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.check-list { list-style: none; margin: 10px 0 30px; }
.check-list li { padding: 12px 0 12px 40px; position: relative; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 13px;
  width: 26px; height: 26px;
  background: var(--grad-teal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700;
  box-shadow: 0 5px 12px rgba(4, 159, 130, .3);
}
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-l); box-shadow: var(--shadow-l); }
.split-media figcaption {
  font-size: .9rem;
  color: var(--gray-5);
  margin-top: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--teal);
}

/* ---------- Process ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 44px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(4, 159, 130, .12) 100%);
}
.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 28px 22px;
  position: relative;
  box-shadow: var(--shadow-s);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.steps li:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.steps span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-teal);
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 800;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(4, 159, 130, .32);
}
.steps h3 { font-size: 1.06rem; margin-bottom: 6px; }
.steps p { font-size: .94rem; }

/* ---------- Service areas ---------- */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(176px, 1fr)); gap: 12px; }
.city-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 14px;
  text-decoration: none;
  color: var(--ink-soft);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: .94rem;
  text-align: center;
  transition: all .22s var(--ease-out);
}
.city-grid a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(4, 159, 130, .28);
  transform: translateY(-2px);
}
.areas-more { margin-top: 26px; font-size: .98rem; }
.areas-more a { color: var(--teal-deep); font-weight: 700; text-decoration: none; }
.areas-more a:hover { text-decoration: underline; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
.review-grid blockquote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
  padding: 28px 24px;
  position: relative;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.review-grid blockquote:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.review-grid blockquote::before {
  content: "“";
  position: absolute;
  top: 6px; right: 18px;
  font-family: var(--heading-font);
  font-size: 5rem;
  line-height: 1;
  color: var(--teal);
  opacity: .14;
}
.review-grid .stars { color: var(--yellow); letter-spacing: 3px; font-size: .95rem; margin-bottom: 12px; }
.review-grid p { font-size: .98rem; color: var(--gray-7); }
.review-grid cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: .92rem;
  color: var(--teal-deep);
}
.review-note { margin-top: 24px; font-size: .88rem; color: var(--gray-5); }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 12px;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq details[open] { border-color: rgba(4, 159, 130, .45); box-shadow: var(--shadow-m); }
.faq summary {
  cursor: pointer;
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  transition: transform .25s var(--ease-out);
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; font-size: .97rem; }

/* ---------- Phone block ---------- */
.phone-block {
  position: relative;
  background: linear-gradient(120deg, #101317 0%, #0e2c26 62%, var(--teal-deep) 130%);
  color: var(--white);
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
}
.phone-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(620px 320px at 82% 18%, rgba(4, 159, 130, .32), transparent 70%);
  pointer-events: none;
}
.phone-block h2 { color: var(--white); margin-bottom: 12px; }
.phone-block p { color: rgba(255, 255, 255, .9); }
.phone-inner { position: relative; }
.phone-inner .hero-ctas { justify-content: center; margin: 28px 0 18px; }
.phone-hours { font-size: .92rem; color: rgba(255, 255, 255, .75); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #c6cbd1;
  padding: 68px 0 0;
  font-size: .95rem;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--teal), var(--yellow)) 1;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.site-footer h3 {
  color: var(--white);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
}
.site-footer a { color: #c6cbd1; text-decoration: none; display: block; padding: 4px 0; transition: color .2s ease, transform .2s ease; }
.site-footer a:hover { color: var(--teal); transform: translateX(3px); }
.footer-blurb { margin: 16px 0; max-width: 36ch; }
.footer-social a { display: inline; padding: 0; }
.footer-social a:hover { transform: none; }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, .09); padding: 20px 24px; font-size: .88rem; }
.footer-legal p { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 540px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .more-services { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .trust-item { border-left: 0; }
  .section { padding: 80px 0; }
}
@media (max-width: 720px) {
  h1 { font-size: clamp(1.9rem, 8.5vw, 2.5rem); }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(16, 18, 22, .97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 24px;
    gap: 16px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, .3);
  }
  .site-nav.open { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 130px 0 90px; }
  .trust-row { margin-top: -34px; }
}

/* ---------- Inner pages (About, Services, Cities, Guides, Contact) ---------- */
body.inner .site-header {
  background: rgba(16, 18, 22, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .22);
}
.page-hero { padding: 140px 0 26px; background: var(--surface); }
.page-hero h1 { margin: 4px 0 12px; text-wrap: balance; }
.breadcrumb { font-size: .9rem; margin-bottom: 16px; color: var(--gray-5); }
.breadcrumb a { color: var(--teal-dark); text-decoration: none; font-weight: 600; }
.breadcrumb span { color: var(--gray-7); }
.breadcrumb a:hover { text-decoration: underline; }
.quick-answer {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  padding: 16px 20px;
  max-width: 760px;
  box-shadow: var(--shadow-s);
}
/* Inside the dark photo hero the inherited text color is white — keep the
   white quick-answer card readable with dark ink. */
.hero .quick-answer { color: var(--ink-soft); margin-top: 24px; }
.hero .quick-answer strong { color: var(--teal-deep); }
.hero-copy > p:not(.hero-note) { max-width: 760px; }
.page-hero .hero-bar { display: none; }
.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
  padding-top: 46px;
  padding-bottom: 90px;
}
.page-main { min-width: 0; }
.page-main h2 { margin: 36px 0 14px; font-size: 1.45rem; }
.page-main > h2:first-child { margin-top: 6px; }
.page-main p { margin: 0 0 14px; }
.page-main .steps { margin-top: 18px; }
.page-main .steps li p { font-size: .93rem; }
.guide-meta { color: var(--gray-5); font-size: .92rem; margin-bottom: 14px; }
.guide-section { margin-bottom: 26px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-s);
}
.sidebar-card h3 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  margin-bottom: 12px;
}
.sidebar-card p { font-size: .92rem; margin: 6px 0; }
.city-strip { margin-top: 44px; }
.guide-callout {
  margin-top: 40px;
  background: var(--surface);
  border-radius: var(--radius-l);
  padding: 26px;
}
.guide-callout h2 { margin-bottom: 8px !important; }
.guide-callout .card-link {
  display: inline-block;
  margin: 6px 22px 0 0;
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--teal-deep);
  text-decoration: none;
  font-size: .98rem;
}
.guide-callout .card-link:hover { text-decoration: underline; }
/* Contextual call-to-action band (page-specific, set by build.py) */
.page-cta {
  margin: 40px 0;
  background: linear-gradient(135deg, #eefaf6 0%, #ffffff 60%);
  border: 1px solid rgba(4, 159, 130, .28);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius-l);
  padding: 26px 28px;
  box-shadow: var(--shadow-s);
}
.page-cta h2 {
  font-size: 1.32rem;
  margin: 0 0 8px;
  color: var(--ink);
  text-wrap: balance;
}
.page-cta p {
  margin: 0;
  color: var(--gray-6);
  max-width: 62ch;
  font-size: .98rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.page-cta .cta-note {
  margin-top: 14px;
  font-size: .84rem;
  color: var(--gray-5);
}
@media (max-width: 560px) {
  .page-cta { padding: 22px 18px; }
  .cta-actions .btn { width: 100%; text-align: center; }
}

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 12px; }
.svc-grid a {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 18px;
  text-decoration: none;
  color: var(--ink-soft);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s var(--ease-out);
}
.svc-grid a:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 159, 130, .14);
}
.hours-table { width: 100%; max-width: 540px; border-collapse: collapse; margin: 12px 0 22px; }
.hours-table th, .hours-table td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.hours-table th { font-family: var(--heading-font); color: var(--ink); font-weight: 700; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 8px 0 28px; }
@media (max-width: 980px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-hero { padding-top: 120px; }
}

/* Sidebar link list + city page extras */
.sidebar-card a.side-link {
  display: block;
  padding: 7px 0;
  color: var(--teal-deep);
  font-weight: 600;
  font-size: .93rem;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.sidebar-card a.side-link:last-child { border-bottom: 0; }
.sidebar-card a.side-link:hover { color: var(--teal); padding-left: 4px; }
.svc-list { list-style: none; margin: 0 0 16px; }
.svc-list li { padding: 10px 0 10px 30px; position: relative; border-bottom: 1px solid var(--line); }
.svc-list li::before {
  content: "▸";
  position: absolute; left: 4px;
  color: var(--teal); font-weight: 700;
}
.svc-list a { color: var(--teal-deep); font-weight: 700; text-decoration: none; font-family: var(--heading-font); font-size: .98rem; }
.svc-list a:hover { text-decoration: underline; }
.reviews-strip { margin-top: 40px; }
.reviews-strip .review-grid { margin-top: 18px; }
.steps-inline li p { margin: 0; }

/* In-content figures */
.page-figure {
  margin: 30px 0;
  max-width: 640px;
}
.page-figure img {
  display: block;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
  width: 100%;
  height: 380px;          /* uniform editorial band */
  object-fit: cover;      /* smart center crop, portraits included */
  object-position: center 30%;
}
.page-figure figcaption {
  font-size: .86rem;
  color: var(--gray-5);
  margin-top: 10px;
  padding-left: 12px;
  border-left: 3px solid var(--teal);
}
@media (max-width: 720px) {
  .page-figure img { height: 240px; }
}

/* Single Google review widget */
.review-widget {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
  padding: 24px 26px;
  margin: 30px 0;
  max-width: 640px;
}
.rw-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.rw-g {
  width: 28px; height: 28px; border-radius: 50%;
  background: #4285F4; color: var(--white);
  font-family: var(--heading-font); font-weight: 800; font-size: .95rem;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.rw-src {
  font-family: var(--heading-font); font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .09em; color: var(--gray-5);
}
.rw-stars { margin-left: auto; color: var(--yellow); letter-spacing: 2px; font-size: .95rem; }
.review-widget blockquote {
  margin: 0 0 16px;
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--ink-soft);
  font-style: italic;
}
.review-widget figcaption { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rw-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--grad-teal); color: var(--white);
  font-family: var(--heading-font); font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.rw-who { display: flex; flex-direction: column; line-height: 1.35; }
.rw-who strong { font-family: var(--heading-font); color: var(--ink); font-size: .95rem; }
.rw-who small { color: var(--gray-5); font-size: .82rem; }
.rw-score {
  margin-left: auto;
  font-family: var(--heading-font); font-weight: 700; font-size: .82rem;
  color: var(--teal-deep);
  background: rgba(4, 159, 130, .08);
  border: 1px solid rgba(4, 159, 130, .22);
  padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
@media (max-width: 720px) {
  .rw-score { margin-left: 0; }
}

/* Fully clickable cards */
a.card { text-decoration: none; }
a.card:hover { text-decoration: none; }

/* ---------- Self-hosted fonts (latin subset) ----------
   font-display: optional — fonts render only if ready before first paint,
   otherwise the fallback is used for the pageview. No post-paint swap, no CLS. */
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; font-display: optional; src: url('../fonts/opensans.woff2') format('woff2'); }
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 600; font-display: optional; src: url('../fonts/opensans.woff2') format('woff2'); }
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 700; font-display: optional; src: url('../fonts/opensans.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: optional; src: url('../fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: optional; src: url('../fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 800; font-display: optional; src: url('../fonts/poppins-800.woff2') format('woff2'); }
