:root {
  --aa-sf-article-bg: #f5f2ec;
  --aa-sf-article-surface: #fffdf9;
  --aa-sf-article-text: #111314;
  --aa-sf-article-muted: #6f665a;
  --aa-sf-article-border: #d8d0c5;
  --aa-sf-article-orange: #ff7a00;
  --aa-sf-article-teal: #00a896;
}

.aa-sf-article-page {
  margin: 0;
  background: var(--aa-sf-article-bg);
  color: var(--aa-sf-article-text);
  font-family: "Inter Tight", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.aa-sf-article { margin: 0; }

.aa-sf-article__hero {
  position: relative;
  min-height: min(72vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #e9e5de;
  isolation: isolate;
}

.aa-sf-article__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--aa-sf-article-image, none);
  background-size: cover;
  background-position: center;
  filter: saturate(.9) contrast(.96);
}

.aa-sf-article__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(245,242,236,.98) 0%, rgba(245,242,236,.93) 36%, rgba(245,242,236,.52) 62%, rgba(245,242,236,.08) 100%);
}

.aa-sf-article__hero-inner {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(90px, 12vw, 170px) 0 clamp(58px, 8vw, 110px);
}

.aa-sf-article__brand {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--aa-sf-article-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .18em;
}

.aa-sf-article__eyebrow {
  margin: 0 0 18px;
  color: var(--aa-sf-article-teal);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.aa-sf-article__hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--aa-sf-article-text);
  font-size: clamp(48px, 7vw, 112px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 710;
}

.aa-sf-article__lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: color-mix(in srgb, var(--aa-sf-article-text) 72%, transparent);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.5;
}

.aa-sf-article__body {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 120px) 0;
}

.aa-sf-article__content {
  max-width: 820px;
  font-size: clamp(18px, 1.15vw, 21px);
  line-height: 1.76;
}

.aa-sf-article__content > *:first-child { margin-top: 0; }
.aa-sf-article__content p { margin: 0 0 1.35em; }
.aa-sf-article__content h2,
.aa-sf-article__content h3 {
  margin: 1.9em 0 .65em;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.aa-sf-article__related {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(70px, 9vw, 140px);
}

.aa-sf-article__related-head p {
  margin: 0 0 8px;
  color: var(--aa-sf-article-teal);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.aa-sf-article__related-head h2 {
  margin: 0 0 30px;
  font-size: clamp(34px, 4vw, 62px);
  letter-spacing: -.055em;
  line-height: .98;
}

.aa-sf-article__related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.aa-sf-article__related-card {
  min-height: 180px;
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
  border: 1px solid var(--aa-sf-article-border);
  border-radius: 26px;
  background: var(--aa-sf-article-surface);
  color: var(--aa-sf-article-text);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(17,19,20,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.aa-sf-article__related-card:hover,
.aa-sf-article__related-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(17,19,20,.09);
  outline: none;
}

.aa-sf-article__related-media {
  min-height: 180px;
  background-size: cover;
  background-position: center;
}

.aa-sf-article__related-card > span:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
}

.aa-sf-article__related-card strong {
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.aa-sf-article__related-card em {
  font-size: 13px;
  font-style: normal;
  font-weight: 760;
}

.aa-sf-article__related-card i { font-style: normal; }

@media (prefers-color-scheme: dark) {
  :root {
    --aa-sf-article-bg: #111314;
    --aa-sf-article-surface: #171a1c;
    --aa-sf-article-text: #f5f1ea;
    --aa-sf-article-muted: #b7aca0;
    --aa-sf-article-border: #363a3d;
  }
  .aa-sf-article__hero { background: #15191b; }
  .aa-sf-article__hero::after {
    background: linear-gradient(90deg, rgba(17,19,20,.97) 0%, rgba(17,19,20,.9) 36%, rgba(17,19,20,.46) 62%, rgba(17,19,20,.08) 100%);
  }
}

@media (max-width: 980px) {
  .aa-sf-article__related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .aa-sf-article__hero { min-height: 620px; }
  .aa-sf-article__hero::after {
    background: linear-gradient(180deg, rgba(245,242,236,.92) 0%, rgba(245,242,236,.82) 45%, rgba(245,242,236,.96) 100%);
  }
  .aa-sf-article__hero-inner,
  .aa-sf-article__body,
  .aa-sf-article__related { width: min(100% - 28px, 1480px); }
  .aa-sf-article__related-grid { grid-template-columns: 1fr; }
  .aa-sf-article__related-card { grid-template-columns: 118px 1fr; min-height: 150px; border-radius: 22px; }
  .aa-sf-article__related-media { min-height: 150px; }
  .aa-sf-article__related-card > span:last-child { padding: 19px; }
}

@media (max-width: 680px) and (prefers-color-scheme: dark) {
  .aa-sf-article__hero::after {
    background: linear-gradient(180deg, rgba(17,19,20,.84) 0%, rgba(17,19,20,.7) 45%, rgba(17,19,20,.96) 100%);
  }
}

/* MyListing/manual dark-mode classes override the OS preference when present. */
body.dark-mode .aa-sf-article-page,
html.dark-mode .aa-sf-article-page,
[data-theme="dark"] .aa-sf-article-page {
  --aa-sf-article-bg: #111314;
  --aa-sf-article-surface: #171a1c;
  --aa-sf-article-text: #f5f1ea;
  --aa-sf-article-muted: #b7aca0;
  --aa-sf-article-border: #363a3d;
}

body.dark-mode .aa-sf-article__hero,
html.dark-mode .aa-sf-article__hero,
[data-theme="dark"] .aa-sf-article__hero { background: #15191b; }

body.dark-mode .aa-sf-article__hero::after,
html.dark-mode .aa-sf-article__hero::after,
[data-theme="dark"] .aa-sf-article__hero::after {
  background: linear-gradient(90deg, rgba(17,19,20,.97) 0%, rgba(17,19,20,.9) 36%, rgba(17,19,20,.46) 62%, rgba(17,19,20,.08) 100%);
}

@media (max-width: 680px) {
  body.dark-mode .aa-sf-article__hero::after,
  html.dark-mode .aa-sf-article__hero::after,
  [data-theme="dark"] .aa-sf-article__hero::after {
    background: linear-gradient(180deg, rgba(17,19,20,.84) 0%, rgba(17,19,20,.7) 45%, rgba(17,19,20,.96) 100%);
  }
}

.aa-sf-service-page .aa-sf-article__related-card--static {
  cursor: default;
}

.aa-sf-service-page .aa-sf-article__related-card--static:hover,
.aa-sf-service-page .aa-sf-article__related-card--static:focus-visible {
  transform: none;
}

.aa-sf-service-page .aa-sf-article__related-card small {
  display: block;
  color: var(--aa-sf-article-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* =========================================================
   AA TEAM Service Finder 9.7.1
   Standalone sub-service article readability fallback
   ========================================================= */
/* The rich kitchen guide now opens detail topics in the in-page lightbox, but
   direct article URLs can still be reached from search, bookmarks or with JS
   disabled. Keep them fully readable in both themes regardless of inherited
   MyListing typography rules. */
.aa-sf-article-page .aa-sf-article__content,
.aa-sf-article-page .aa-sf-article__content p,
.aa-sf-article-page .aa-sf-article__content li,
.aa-sf-article-page .aa-sf-article__content h2,
.aa-sf-article-page .aa-sf-article__content h3,
.aa-sf-article-page .aa-sf-article__content h4,
.aa-sf-article-page .aa-sf-article__content h5,
.aa-sf-article-page .aa-sf-article__content strong,
.aa-sf-article-page .aa-sf-article__content b {
  color: var(--aa-sf-article-text) !important;
  -webkit-text-fill-color: var(--aa-sf-article-text) !important;
}

.aa-sf-article-page .aa-sf-article__content a {
  color: var(--aa-sf-article-teal) !important;
  -webkit-text-fill-color: var(--aa-sf-article-teal) !important;
}

body.dark-mode .aa-sf-article-page .aa-sf-article__content,
body.dark-mode .aa-sf-article-page .aa-sf-article__content p,
body.dark-mode .aa-sf-article-page .aa-sf-article__content li,
body.dark-mode .aa-sf-article-page .aa-sf-article__content h2,
body.dark-mode .aa-sf-article-page .aa-sf-article__content h3,
body.dark-mode .aa-sf-article-page .aa-sf-article__content h4,
html.dark-mode .aa-sf-article-page .aa-sf-article__content,
html.dark-mode .aa-sf-article-page .aa-sf-article__content p,
html.dark-mode .aa-sf-article-page .aa-sf-article__content li,
html.dark-mode .aa-sf-article-page .aa-sf-article__content h2,
html.dark-mode .aa-sf-article-page .aa-sf-article__content h3,
html.dark-mode .aa-sf-article-page .aa-sf-article__content h4,
[data-theme="dark"] .aa-sf-article-page .aa-sf-article__content,
[data-theme="dark"] .aa-sf-article-page .aa-sf-article__content p,
[data-theme="dark"] .aa-sf-article-page .aa-sf-article__content li,
[data-theme="dark"] .aa-sf-article-page .aa-sf-article__content h2,
[data-theme="dark"] .aa-sf-article-page .aa-sf-article__content h3,
[data-theme="dark"] .aa-sf-article-page .aa-sf-article__content h4 {
  color: #f5f1ea !important;
  -webkit-text-fill-color: #f5f1ea !important;
}
