/* P and G Motors — static site
   Brand: electric blue from logo, charcoal workshop base */

:root {
  --pg-blue: #00a6e8;
  --pg-blue-deep: #0077b3;
  --pg-blue-soft: #e8f7fc;
  --pg-ink: #0f1419;
  --pg-charcoal: #1a222c;
  --pg-steel: #2c3642;
  --pg-muted: #6b7785;
  --pg-paper: #f4f6f8;
  --pg-white: #ffffff;
  --pg-warn: #f0a202;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 68rem;
  --radius: 0.35rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--pg-ink);
  background: var(--pg-paper);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pg-blue-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ----- Call bar ----- */
.call-bar {
  background: var(--pg-ink);
  color: var(--pg-white);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.call-bar a {
  color: var(--pg-blue);
  text-decoration: none;
}

.call-bar a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ----- Header ----- */
.site-header {
  background: var(--pg-white);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 12px rgba(15, 20, 25, 0.06);
}

/* Matching thin blue + white finish under the header */
.header-rule {
  height: 4px;
  background: linear-gradient(
    to bottom,
    var(--pg-blue) 0 2px,
    #fff 2px 4px
  );
  box-shadow: inset 0 -1px 0 #e8ecf0;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.45rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-link img {
  height: 3.75rem;
  width: auto;
}

.logo-tag {
  display: none;
  font-size: 0.75rem;
  color: var(--pg-muted);
  line-height: 1.3;
  max-width: 9rem;
}

@media (min-width: 640px) {
  .logo-tag {
    display: block;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.95rem;
  align-items: center;
  font-weight: 600;
  font-size: 0.88rem;
}

.nav a {
  color: var(--pg-charcoal);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--pg-blue-deep);
  border-bottom-color: var(--pg-blue);
  text-decoration: none;
}

.nav-call {
  background: var(--pg-blue);
  color: #fff !important;
  padding: 0.3rem 0.75rem !important;
  border-radius: var(--radius);
  border-bottom: none !important;
  font-size: 0.88rem;
}

.nav-call:hover {
  background: var(--pg-blue-deep);
  color: #fff !important;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 16rem;
  max-height: none;
  aspect-ratio: auto;
  display: flex;
  align-items: flex-end;
  background-color: var(--pg-charcoal);
  color: var(--pg-white);
  padding: 2.75rem 1.25rem 2.25rem;
  overflow: hidden;
}

/* Photo layer — slight zoom-out from cover, still framed on the building */
.hero::before {
  content: "";
  position: absolute;
  inset: -6%;
  z-index: 0;
  background-color: var(--pg-charcoal);
  background-image: url("../img/hero-cover.jpg");
  background-size: cover;
  background-position: center 78%;
  transform: scale(0.9);
  transform-origin: center 78%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(15, 20, 25, 0.72) 0%,
    rgba(15, 20, 25, 0.28) 55%,
    rgba(0, 119, 179, 0.18) 100%
  );
}

@media (max-width: 700px) {
  .hero {
    min-height: 14rem;
    padding: 2rem 1rem 1.75rem;
  }

  .hero::before {
    background-position: center 72%;
    transform-origin: center 72%;
  }
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius);
  margin-bottom: 0.45rem;
}

.hero-brand {
  font-size: clamp(1.55rem, 3.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  line-height: 1.1;
  text-transform: none;
}

.hero-lead {
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  max-width: 34rem;
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-actions .btn {
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
}

.hero-brand span {
  color: var(--pg-blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--pg-blue);
  color: #fff;
  border-color: var(--pg-blue);
}

.btn-primary:hover {
  background: #fff;
  color: var(--pg-blue-deep);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

/* ----- Sections ----- */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.25rem 1.25rem;
}

.section-title {
  font-size: 1.65rem;
  margin: 0 0 0.4rem;
  color: var(--pg-charcoal);
  letter-spacing: -0.01em;
}

.section-lead {
  margin: 0 0 1.75rem;
  color: var(--pg-muted);
  max-width: 36rem;
}

.band-dark {
  background: var(--pg-charcoal);
  color: #fff;
}

.band-dark .section-title {
  color: #fff;
}

.band-dark .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.band-blue {
  background: linear-gradient(180deg, var(--pg-blue-soft), var(--pg-paper));
}

/* ----- Service cards ----- */
.section-services {
  position: relative;
  padding: 3.25rem 0;
  background-color: var(--pg-paper);
  background-image:
    linear-gradient(180deg, rgba(244, 246, 248, 0.92) 0%, rgba(244, 246, 248, 0.88) 100%),
    url("../img/section-services.jpg");
  background-size: cover;
  background-position: center;
  border-top: 4px solid var(--pg-white);
}

.section-services .section {
  padding-top: 0;
  padding-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--pg-white);
  border: 1px solid #dde3ea;
  border-top: 4px solid var(--pg-blue);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 20, 25, 0.06);
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}

/* White stripe under the blue card stripe, before the photo */
.card-stripe-white {
  height: 4px;
  background: var(--pg-white);
  flex-shrink: 0;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 20, 25, 0.12);
}

.card-media {
  position: relative;
  height: 7.5rem;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.05), rgba(15, 20, 25, 0.35));
}

.card-body {
  padding: 0.85rem 1.15rem 1.2rem;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  color: var(--pg-charcoal);
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--pg-muted);
}

.card-icon {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  border-radius: 0.3rem;
  background: var(--pg-blue-soft);
  color: var(--pg-blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(15, 20, 25, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

/* ----- Why / trust ----- */
.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.trust-item strong {
  display: block;
  font-size: 1.05rem;
  color: var(--pg-blue);
  margin-bottom: 0.25rem;
}

.trust-item p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ----- CTA strip ----- */
.cta-strip {
  background: linear-gradient(90deg, var(--pg-blue-deep), var(--pg-blue));
  color: #fff;
  text-align: center;
  padding: 2.5rem 1.25rem;
}

.cta-strip h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.cta-strip p {
  margin: 0 0 1.25rem;
  opacity: 0.95;
}

.cta-strip .btn-primary {
  background: #fff;
  color: var(--pg-blue-deep);
  border-color: #fff;
}

.cta-strip .btn-primary:hover {
  background: var(--pg-ink);
  color: #fff;
  border-color: var(--pg-ink);
}

/* ----- Contact ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.contact-card {
  background: var(--pg-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid #dde3ea;
}

.contact-card h2 {
  margin-top: 0;
}

.contact-card dl {
  margin: 0;
}

.contact-card dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pg-muted);
  margin-top: 1rem;
}

.contact-card dd {
  margin: 0.2rem 0 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-card dd a {
  color: var(--pg-blue-deep);
}

.map-note {
  background: var(--pg-charcoal);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-note h3 {
  margin: 0 0 0.5rem;
  color: var(--pg-blue);
}

.map-note p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-map-wrap {
  margin-top: 1.5rem;
}

.contact-map-wrap h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--pg-charcoal);
}

.contact-map {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #dde3ea;
  background: #e8eef5;
  aspect-ratio: 16 / 9;
  min-height: 16rem;
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map-link {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--pg-muted);
}

.stub-badge {
  background: #eef2f6;
  color: var(--pg-muted);
  padding: 0.15rem 0.45rem;
  border-radius: 0.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
}

.hub-list-compact .hub-item {
  grid-template-columns: 4.5rem 1fr;
}

.hub-list-compact .hub-item img {
  width: 4.5rem;
  height: 3.4rem;
  object-fit: cover;
}

time.hub-live {
  color: var(--pg-blue-deep);
}

time.hub-stub {
  color: var(--pg-muted);
}

/* ----- Page hero (inner) ----- */
.page-hero {
  background: var(--pg-charcoal);
  color: #fff;
  padding: 2.5rem 1.25rem 2rem;
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 36rem;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--pg-ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.25rem 1.25rem 1.5rem;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.site-footer h4 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer a {
  color: var(--pg-blue);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.35rem;
}

.footer-bottom {
  max-width: var(--max);
  margin: 1.75rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: auto;
  height: auto;
  min-height: 2.35rem;
  padding: 0.35rem 0.75rem 0.35rem 0.4rem;
  border-radius: 0.35rem;
  background: #1877f2;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.footer-fb:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: #fff !important;
}

.footer-fb svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  display: block;
  flex-shrink: 0;
  margin-left: 0.2rem;
}

.footer-fb span {
  white-space: nowrap;
}

.arctick {
  color: var(--pg-warn);
  font-weight: 700;
}

/* ----- Timeline / workshop diary strip ----- */
.timeline {
  position: relative;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
}

.timeline-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.85rem;
  background: var(--pg-white);
  border: 1px solid #dde3ea;
  border-radius: var(--radius);
  overflow: hidden;
  align-items: stretch;
}

.timeline-item img {
  width: 100%;
  height: 100%;
  min-height: 5.5rem;
  object-fit: cover;
  background: var(--pg-steel);
}

.timeline-body {
  padding: 0.85rem 0.9rem 0.95rem 0;
}

.timeline-date {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pg-blue-deep);
  margin-bottom: 0.25rem;
}

.timeline-body h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
  color: var(--pg-charcoal);
  line-height: 1.3;
}

.timeline-body p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--pg-muted);
}

.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 700;
}

.fb-icon {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.2rem;
  background: #1877f2;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Clickable service cards */
a.card {
  color: inherit;
  text-decoration: none;
}

a.card:hover {
  text-decoration: none;
}

a.card:hover h3 {
  color: var(--pg-blue-deep);
}

/* ----- Article / case-study template ----- */
.article-wrap {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--pg-muted);
  margin: 0 0 1rem;
}

.page-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a {
  color: var(--pg-blue-deep);
  font-weight: 600;
}

.page-hero .breadcrumb a {
  color: var(--pg-blue);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pg-blue-deep);
  margin-bottom: 0.75rem;
}

.article-title {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  line-height: 1.25;
  color: var(--pg-charcoal);
}

.article-hero-img {
  width: 100%;
  max-height: 18rem;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 0 1.5rem;
  border: 1px solid #dde3ea;
}

.article-body {
  font-size: 1.02rem;
  color: var(--pg-ink);
  line-height: 1.65;
}

.article-body h2 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.6rem;
  color: var(--pg-charcoal);
}

.article-body p {
  margin: 0 0 1rem;
}

.article-body ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.article-body li {
  margin-bottom: 0.35rem;
}

.article-body ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: 0.85rem;
  margin: 1.25rem 0 1.5rem;
}

.article-fig {
  margin: 0;
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: var(--radius);
  overflow: hidden;
}

.article-fig img {
  display: block;
  width: 100%;
  height: 8.5rem;
  object-fit: cover;
}

.article-fig figcaption {
  padding: 0.45rem 0.55rem 0.55rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--pg-muted);
}

.article-note {
  background: var(--pg-blue-soft);
  border-left: 4px solid var(--pg-blue);
  padding: 0.85rem 1rem;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  color: var(--pg-charcoal);
}

.hub-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.hub-item {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-top: 4px solid var(--pg-blue);
}

.hub-item:hover {
  box-shadow: 0 6px 18px rgba(15, 20, 25, 0.08);
  text-decoration: none;
}

.hub-item img {
  width: 100%;
  height: 100%;
  min-height: 5rem;
  object-fit: cover;
}

.hub-item-body {
  padding: 0.75rem 0.85rem 0.85rem 0;
}

.hub-item-body time {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pg-blue-deep);
  margin-bottom: 0.25rem;
}

.hub-item-body h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: var(--pg-charcoal);
}

.hub-item-body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--pg-muted);
}

/* ----- Service one-pager (keys, future service landings) ----- */
.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 2rem;
}

.jump-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--pg-ink);
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 0.35rem;
  padding: 0.65rem 0.9rem;
  box-shadow: 0 2px 8px rgba(15, 20, 25, 0.06);
}

.jump-nav a:hover {
  border-color: var(--pg-blue);
  color: var(--pg-blue-deep);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 20, 25, 0.1);
}

.svc-block {
  background: #fff;
  border: 1px solid #dde3ea;
  border-top: 4px solid var(--pg-blue);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem 1.4rem;
  margin: 0 0 1.1rem;
  box-shadow: 0 4px 14px rgba(15, 20, 25, 0.05);
}

.svc-block h2 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  color: var(--pg-charcoal);
}

.svc-block p {
  margin: 0 0 0.85rem;
  color: var(--pg-ink);
  font-size: 0.98rem;
}

.svc-block ul {
  margin: 0;
  padding-left: 1.2rem;
}

.svc-block li {
  margin-bottom: 0.35rem;
  color: var(--pg-ink);
}

.svc-block .svc-aside {
  margin: 1rem 0 0;
  padding: 0.75rem 0.9rem;
  background: var(--pg-blue-soft);
  border-left: 4px solid var(--pg-blue);
  font-size: 0.9rem;
  color: var(--pg-charcoal);
}

/* Single prose container for service / content pages (preferred) */
.svc-prose {
  background: #fff;
  border: 1px solid #dde3ea;
  border-top: 4px solid var(--pg-blue);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
  margin: 0 0 1.25rem;
  box-shadow: 0 4px 14px rgba(15, 20, 25, 0.05);
}

.svc-prose h2 {
  margin: 1.5rem 0 0.55rem;
  font-size: 1.25rem;
  color: var(--pg-charcoal);
}

.svc-prose h2:first-child {
  margin-top: 0;
}

.svc-prose p {
  margin: 0 0 1rem;
  color: var(--pg-ink);
  font-size: 0.98rem;
  line-height: 1.65;
}

.svc-prose ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.svc-prose li {
  margin-bottom: 0.4rem;
  color: var(--pg-ink);
  line-height: 1.55;
}

.make-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.make-chip {
  background: var(--pg-paper);
  border: 1px solid #dde3ea;
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
}

.make-chip strong {
  display: block;
  color: var(--pg-blue-deep);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.make-chip span {
  color: var(--pg-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.section-plain {
  padding: 2.5rem 1.25rem 3rem;
}

.section-plain > .section {
  padding-top: 0;
  padding-bottom: 0;
}

.svc-hero-row {
  display: grid;
  gap: 1.25rem;
  margin: 0 0 1.5rem;
  align-items: start;
}

@media (min-width: 720px) {
  .svc-hero-row {
    grid-template-columns: 1.4fr 0.8fr;
  }
}

.svc-hero-img {
  width: 100%;
  max-height: 18rem;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid #dde3ea;
  background: #fff;
}

.svc-hero-aside {
  background: #fff;
  border: 1px solid #dde3ea;
  border-top: 4px solid var(--pg-blue);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}

.svc-hero-quote {
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--pg-blue-deep);
  font-size: 1.05rem;
  line-height: 1.35;
}
