:root {
  --black: #0f0f0f;
  --black-soft: #171717;
  --charcoal: #222222;
  --slate: #474747;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.2);
  --white: #f7f7f3;
  --white-soft: #d6d6d0;
  --yellow: #f4bf16;
  --yellow-deep: #d89a00;
  --shadow: 0 22px 64px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at top right, rgba(244, 191, 22, 0.16), transparent 18%),
    radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.03), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, #faf6ee 46%, #f4ecdf 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.14;
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(15, 15, 15, 0.14);
  background: #fffdfa;
  color: var(--black);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(244, 191, 22, 0.8);
  transform: translateY(-1px);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
  background: rgba(247, 243, 232, 0.92);
  backdrop-filter: blur(18px);
}


.site-header__top {
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
  background: linear-gradient(90deg, rgba(255, 227, 122, 0.4) 0%, rgba(244, 191, 22, 0.18) 100%);
}

.site-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-height: 42px;
}

.site-header__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: #39342d;
}

.site-header__meta strong {
  font-weight: 800;
  color: #151515;
}

.site-header__meta a {
  font-weight: 700;
}

.site-header__meta a:hover,
.site-header__meta a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--yellow-deep);
  text-underline-offset: 3px;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(29, 26, 22, 0.08);
  box-shadow: 0 10px 24px rgba(39, 32, 20, 0.06);
}

.brand__logo {
  display: block;
  width: auto;
  height: clamp(54px, 6.6vw, 76px);
  max-width: min(290px, 48vw);
  object-fit: contain;
}

.brand__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffe37a 0%, var(--yellow) 58%, var(--yellow-deep) 100%);
  color: var(--black);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(244, 191, 22, 0.22);
}

.brand__copy strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.brand__copy span {
  display: block;
  color: #5f5a50;
  font-size: 0.83rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #1f1f1f;
}

.site-nav__links a {
  position: relative;
  padding: 8px 0;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after,
.site-nav__links a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
  color: var(--black);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

body.menu-open .menu-toggle span {
  opacity: 0;
}

body.menu-open .menu-toggle::before {
  transform: translateY(2px) rotate(45deg);
}

body.menu-open .menu-toggle::after {
  transform: translateY(0) rotate(-45deg);
}

.button,
.button-outline,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.button {
  background: linear-gradient(135deg, #ffd95a 0%, var(--yellow) 52%, #c98900 100%);
  color: #14120f;
  border-color: rgba(201, 137, 0, 0.38);
  box-shadow: 0 18px 36px rgba(244, 191, 22, 0.24);
}

.button-outline {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 15, 15, 0.18);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(39, 32, 20, 0.06);
}

.filter-button {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(15, 15, 15, 0.16);
  color: var(--black);
}

.button:hover,
.button-outline:hover,
.filter-button:hover,
.filter-button.active {
  transform: translateY(-3px);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 22px 42px rgba(244, 191, 22, 0.32);
  border-color: rgba(168, 113, 0, 0.46);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(255, 249, 234, 0.98);
  border-color: rgba(193, 151, 9, 0.34);
  box-shadow: 0 16px 30px rgba(39, 32, 20, 0.1);
}

.filter-button.active {
  background: rgba(244, 191, 22, 0.14);
  border-color: rgba(244, 191, 22, 0.45);
}

main section {
  padding: 82px 0;
}

.hero {
  padding-top: 48px;
}

.hero-grid,
.stats-grid,
.card-grid,
.image-grid,
.city-grid,
.info-grid,
.faq-grid,
.contact-grid,
.page-grid,
.dual-grid {
  display: grid;
  gap: 22px;
}

.hero-grid,
.dual-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(183, 132, 0, 0.28);
  color: #6f5300;
  background: rgba(244, 191, 22, 0.16);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
}

h1,
.section-heading h2,
.page-hero h1,
.card h3,
.faq-card h3,
.contact-card h3,
.city-card h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
}

h1,
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.94;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 2.45vw, 2.3rem);
  line-height: 1.04;
  margin: 14px 0 16px;
}

.page-hero h1 {
  margin: 18px 0 18px;
  max-width: 10ch;
}

.page-hero p,
.section-heading p,
.hero-copy p,
.card p,
.city-card p,
.contact-card p,
.faq-card p,
.info-block p,
.panel p,
.stat-card p,
.list-panel p {
  color: #5f5a50;
  line-height: 1.8;
}

.hero-copy p {
  max-width: 650px;
  font-size: 1.04rem;
}

.hero-actions,
.hero-badges,
.filter-row,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-badges {
  margin-top: 24px;
}

.hero-badges span,
.metric-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 15, 15, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: #1f1f1f;
  font-size: 0.92rem;
}

.panel,
.card,
.city-card,
.faq-card,
.contact-card,
.stat-card,
.info-block,
.list-panel,
.image-card {
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.94), rgba(31, 31, 31, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.panel,
.card,
.city-card,
.faq-card,
.contact-card,
.stat-card,
.info-block,
.list-panel {
  padding: 24px;
}

.panel--hero {
  padding: 24px;
}

.panel--hero .mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0;
}

.panel--hero .mini-grid--single {
  grid-template-columns: 1fr;
}

.panel--hero .mini-grid .stat-card {
  padding: 18px;
}

.stat-card strong,
.panel strong,
.info-block strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.city-grid,
.image-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid,
.contact-grid,
.page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-grid--sidebar {
  grid-template-columns: 0.74fr 1.26fr;
  align-items: start;
}

.icon-chip {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ffe37a 0%, var(--yellow) 58%, var(--yellow-deep) 100%);
  color: var(--black);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.card h3,
.faq-card h3,
.contact-card h3,
.city-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.bullet-list,
.check-list,
.link-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.bullet-list li,
.check-list li,
.link-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.65;
  color: #efeee7;
}

.page-hero__copy .bullet-list li,
.page-hero__copy .check-list li,
.page-hero__copy .link-list li {
  color: #3f382f;
}

.bullet-list li::before,
.check-list li::before,
.link-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 16px rgba(244, 191, 22, 0.36);
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #1a1a1a;
}

.image-card__body {
  padding: 18px;
}

.image-card__body h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.16rem;
  margin-bottom: 8px;
}

.city-card .region-tag,
.kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe37a 0%, var(--yellow) 58%, var(--yellow-deep) 100%);
  border: 1px solid rgba(183, 132, 0, 0.34);
  color: #111111;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(244, 191, 22, 0.18);
  margin-bottom: 16px;
}

.panel,
.card,
.city-card,
.faq-card,
.contact-card,
.stat-card,
.info-block,
.list-panel,
.image-card {
  color: var(--white);
}

.panel p,
.card p,
.city-card p,
.faq-card p,
.contact-card p,
.stat-card p,
.info-block p,
.list-panel p,
.image-card__body p {
  color: var(--white-soft);
}

.city-card.hidden {
  display: none;
}

.notice-band {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(244, 191, 22, 0.09);
  border: 1px solid rgba(244, 191, 22, 0.2);
  color: #fff2bf;
  line-height: 1.75;
}

.page-hero {
  padding: 56px 0 32px;
}

.page-hero__copy {
  max-width: 760px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-status {
  min-height: 24px;
  color: #ffe37a;
}

.contact-section .contact-grid {
  align-items: stretch;
}

.contact-card--intro,
.contact-card--form {
  display: grid;
  align-content: start;
  gap: 16px;
}

.contact-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-proof-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(244, 191, 22, 0.14);
  border: 1px solid rgba(193, 151, 9, 0.18);
  color: #3d321f;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-direct-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 248, 228, 0.78);
  border: 1px solid rgba(193, 151, 9, 0.14);
}

.contact-direct-item strong {
  display: block;
  margin-bottom: 8px;
  color: #171513;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.contact-direct-item a {
  color: #171513;
  font-weight: 800;
}

.contact-direct-item p {
  margin-top: 8px;
}

.contact-helper {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 244, 202, 0.92), rgba(255, 238, 177, 0.78));
  border: 1px solid rgba(193, 151, 9, 0.18);
}

.contact-helper strong {
  display: block;
  margin-bottom: 8px;
  color: #171513;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.contact-helper p {
  margin: 0;
  color: #4f463a;
}

.contact-helper--soft {
  background: rgba(247, 242, 232, 0.92);
}

.contact-form-caption {
  margin-top: 2px;
  font-size: 0.96rem;
}

.contact-form-caption a {
  color: #171513;
  font-weight: 700;
}

.site-footer {
  position: relative;
  margin-top: 34px;
  padding: 72px 0 34px;
  background:
    radial-gradient(circle at 14% 18%, rgba(244, 191, 22, 0.14), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 227, 122, 0.08), transparent 24%),
    linear-gradient(135deg, #111111 0%, #171717 48%, #0c0c0c 100%);
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.site-footer::before {
  width: 560px;
  height: 560px;
  left: -120px;
  bottom: -240px;
  background: radial-gradient(circle, rgba(244, 191, 22, 0.18) 0%, rgba(244, 191, 22, 0) 68%);
}

.site-footer::after {
  width: 420px;
  height: 420px;
  right: -100px;
  top: -140px;
  background: radial-gradient(circle, rgba(255, 227, 122, 0.12) 0%, rgba(255, 227, 122, 0) 72%);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer__shell {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.15fr 1.9fr;
  gap: 54px;
  align-items: start;
}

.site-footer p {
  color: rgba(239, 243, 252, 0.82);
  margin-top: 14px;
  max-width: 460px;
  line-height: 1.8;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #ffe37a;
  font-weight: 700;
}

.site-footer__links {
  display: grid;
  gap: 12px;
  color: #f2f5fb;
}

.site-footer__links a {
  color: rgba(242, 245, 251, 0.9);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(244, 191, 22, 0.9);
  text-underline-offset: 4px;
}

.footer-logo {
  width: 270px;
  max-width: 100%;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
}

.footer-column h4 {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-contact-stack {
  display: grid;
  gap: 14px;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.footer-pill--phone {
  background: linear-gradient(135deg, #ffe37a 0%, #f4bf16 58%, #d89a00 100%);
  color: #111111;
}

.footer-pill--email {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 191, 22, 0.4);
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(242, 245, 251, 0.76);
  font-size: 0.95rem;
}

.footer-note {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  color: rgba(242, 245, 251, 0.82);
  font-size: 0.95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .dual-grid,
  .page-grid--sidebar,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-grid,
  .city-grid,
  .image-grid,
  .info-grid,
  .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-direct-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(247, 243, 232, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .site-nav__links,
  .site-nav .button {
    width: 100%;
  }

  .site-nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .stats-grid,
  .card-grid,
  .city-grid,
  .image-grid,
  .info-grid,
  .faq-grid,
  .contact-grid,
  .page-grid,
  .panel--hero .mini-grid,
  .form-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-pill {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .page-hero h1,
  h1 {
    max-width: 100%;
  }

  .hero-actions,
  .hero-badges,
  .filter-row,
  .footer-bottom,
  .footer-bottom__links {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-outline,
  .filter-button {
    width: 100%;
  }
}











.page-grid {
  align-items: start;
}

.city-grid--featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.city-card--featured {
  padding: 20px;
  min-height: 0;
}

.city-card--featured h3 {
  font-size: 1.15rem;
  line-height: 1.1;
  margin-bottom: 10px;
}

.city-card--featured p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.city-support {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
}

.city-support .panel {
  padding: 18px;
}

.city-support-copy {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.city-support-copy p {
  color: #4f4a41;
  line-height: 1.75;
}

@media (max-width: 1080px) {
  .city-grid--featured,
  .city-support {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .city-grid--featured,
  .city-support {
    grid-template-columns: 1fr;
  }
}



/* Service dropdown and service page navigation */
.nav-item--dropdown {
  position: relative;
}

.nav-item--dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -24px;
  right: -24px;
  height: 18px;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 8px 0;
  font: inherit;
  font-weight: 600;
}

.dropdown-toggle::before {
  content: "";
  order: 2;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.dropdown-toggle.active,
.nav-item--dropdown.is-current .dropdown-toggle {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: -18px;
  min-width: 300px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 252, 245, 0.98);
  border: 1px solid rgba(15, 15, 15, 0.09);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 15, 15, 0.03);
  font-size: 0.95rem;
  line-height: 1.45;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a.active {
  background: linear-gradient(135deg, rgba(255, 227, 122, 0.82) 0%, rgba(244, 191, 22, 0.58) 100%);
}

.nav-item--dropdown:hover .dropdown-menu,
.nav-item--dropdown:focus-within .dropdown-menu,
.nav-item--dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item--dropdown:hover .dropdown-toggle::before,
.nav-item--dropdown:focus-within .dropdown-toggle::before,
.nav-item--dropdown.is-open .dropdown-toggle::before {
  transform: rotate(-135deg) translateY(-1px);
}

.service-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-subnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 15, 15, 0.1);
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-subnav a:hover,
.service-subnav a:focus-visible,
.service-subnav a.active {
  transform: translateY(-1px);
  border-color: rgba(244, 191, 22, 0.78);
  background: linear-gradient(135deg, rgba(255, 227, 122, 0.86) 0%, rgba(244, 191, 22, 0.62) 100%);
}

@media (max-width: 840px) {
  .nav-item--dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(15, 15, 15, 0.08);
  }

  .dropdown-toggle.active,
  .nav-item--dropdown.is-current .dropdown-toggle {
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255, 227, 122, 0.86) 0%, rgba(244, 191, 22, 0.62) 100%);
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 8px 0 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-item--dropdown.is-open .dropdown-menu {
    display: grid;
  }
}



.blog-post-stack,
.sidebar-stack {
  display: grid;
  gap: 22px;
}

.blog-post-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 242, 232, 0.9) 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.blog-post-card .eyebrow {
  margin-bottom: 14px;
}

.blog-post-card h3 {
  font-size: 1.55rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.blog-post-card p {
  color: #4f4a41;
  line-height: 1.78;
}

.blog-post-card .hero-actions {
  margin-top: 18px;
}





.home-blog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1080px) {
  .home-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .home-blog-grid {
    grid-template-columns: 1fr;
  }
}


.blog-layout {
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.58fr);
}

.blog-post-card--featured {
  padding: 30px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.08);
}

.blog-post-card--featured h3 {
  font-size: 1.85rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  color: #7a735f;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-search-box {
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-search-box label {
  display: block;
  margin-bottom: 10px;
  color: #efeee7;
  font-weight: 700;
}

.blog-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.blog-search-row input {
  background: rgba(255, 255, 255, 0.92);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.category-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(244, 191, 22, 0.2);
  color: #efeee7;
  font-size: 0.9rem;
  font-weight: 700;
}

.category-list a:hover,
.category-list a:focus-visible {
  background: linear-gradient(135deg, rgba(255, 227, 122, 0.86) 0%, rgba(244, 191, 22, 0.62) 100%);
  color: #111111;
}

@media (max-width: 840px) {
  .blog-search-row {
    grid-template-columns: 1fr;
  }
}

.blog-archive-list {
  display: grid;
  gap: 26px;
}

.blog-archive-item {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 22px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}

.blog-archive-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-archive-media {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(15, 15, 15, 0.06);
  border: 1px solid rgba(15, 15, 15, 0.08);
  min-height: 132px;
}

.blog-archive-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-archive-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 227, 122, 0.95) 0%, rgba(244, 191, 22, 0.82) 100%);
  color: #111111;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-archive-item h3 {
  font-size: 1.42rem;
  line-height: 1.12;
  margin-bottom: 10px;
}

.blog-archive-item h3 a {
  color: #111111;
  text-decoration: none;
}

.blog-archive-item h3 a:hover {
  color: #111111;
  text-decoration: underline;
  text-decoration-color: rgba(244, 191, 22, 0.9);
}

.blog-archive-item p {
  color: #4f4a41;
  line-height: 1.75;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 15, 15, 0.1);
  background: rgba(255, 255, 255, 0.74);
  color: #111111;
  font-weight: 800;
}

.blog-pagination .is-active {
  background: linear-gradient(135deg, #ffe37a 0%, #f4bf16 58%, #d89a00 100%);
  border-color: rgba(216, 154, 0, 0.65);
}

.recent-posts {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.recent-post {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.recent-post__thumb {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(15, 15, 15, 0.08);
  border: 1px solid rgba(15, 15, 15, 0.08);
}

.recent-post__thumb img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.recent-post__body a {
  display: block;
  font-weight: 800;
  line-height: 1.38;
  color: #111111;
}

.recent-post__body span {
  display: block;
  margin-top: 6px;
  color: #6d6658;
  font-size: 0.86rem;
}

.sidebar-stack--blog {
  gap: 18px;
}

.sidebar-card-compact {
  padding: 22px;
}

@media (max-width: 840px) {
  .blog-archive-item {
    grid-template-columns: 1fr;
  }

  .blog-archive-media {
    min-height: 180px;
  }

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

  .blog-hero-topics__list {
    flex-direction: column;
  }

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

  .article-hero-proof-grid {
    grid-template-columns: 1fr;
  }
}

.article-layout {
  grid-template-columns: minmax(0, 1.46fr) minmax(280px, 0.54fr);
}

.page-article .page-hero .dual-grid {
  align-items: start;
}

.page-article .page-hero {
  padding-bottom: 18px;
}

.page-article .page-hero__copy {
  display: grid;
  align-content: start;
}

.page-blog .page-hero .dual-grid {
  align-items: start;
}

.page-blog .page-hero {
  padding-bottom: 10px;
}

.page-blog .page-hero__copy {
  display: grid;
  align-content: start;
}

.page-blog .page-hero__copy p {
  margin-bottom: 0;
}

.page-blog .hero-actions {
  margin-top: 24px;
}

.page-blog .hero-badges {
  margin-top: 18px;
}

.blog-hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.blog-hero-proof {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 242, 232, 0.9) 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.blog-hero-proof strong {
  display: block;
  margin-bottom: 8px;
  color: #171513;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  line-height: 1.08;
}

.blog-hero-proof p {
  color: #5a5248;
  line-height: 1.7;
  font-size: 0.97rem;
}

.blog-hero-topics {
  margin-top: 16px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 242, 232, 0.9) 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.blog-hero-topics strong {
  display: block;
  margin-bottom: 10px;
  color: #171513;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  line-height: 1.08;
}

.blog-hero-topics__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-hero-topics__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 236, 0.96);
  border: 1px solid rgba(244, 191, 22, 0.68);
  color: #171513;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.blog-hero-topics__list a:hover,
.blog-hero-topics__list a:focus-visible {
  background: linear-gradient(135deg, rgba(255, 227, 122, 0.92) 0%, rgba(244, 191, 22, 0.74) 100%);
  border-color: rgba(216, 154, 0, 0.72);
  color: #111111;
}

.blog-hero-pillars {
  margin-top: 16px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 242, 232, 0.9) 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.blog-hero-pillars strong {
  display: block;
  margin-bottom: 10px;
  color: #171513;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  line-height: 1.08;
}

.blog-hero-pillars .link-list {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.blog-hero-pillars .link-list li {
  color: #4f4a41;
  line-height: 1.55;
}

.page-blog .panel--hero {
  padding: 20px;
}

.page-blog .panel--hero img {
  max-height: 220px;
  object-fit: cover;
}

.page-blog .panel--hero .mini-grid {
  margin: 12px 0;
  gap: 12px;
}

.page-blog .panel--hero .mini-grid .stat-card {
  padding: 14px;
}

.page-blog .panel--hero .notice-band {
  padding: 14px 16px;
}

.page-blog .blog-search-box {
  margin-bottom: 14px;
  padding: 14px;
}

.page-about .page-hero .dual-grid {
  align-items: start;
}

.page-about .page-hero {
  padding-bottom: 18px;
}

.page-about .page-hero__copy {
  display: grid;
  align-content: start;
}

.page-about .page-hero__copy p {
  margin-bottom: 0;
}

.page-about .hero-actions {
  margin-top: 24px;
}

.page-about .hero-badges {
  margin-top: 18px;
}

.about-hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.about-hero-proof {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 242, 232, 0.9) 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.about-hero-proof strong {
  display: block;
  margin-bottom: 8px;
  color: #171513;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  line-height: 1.08;
}

.about-hero-proof p {
  color: #5a5248;
  line-height: 1.7;
  font-size: 0.97rem;
}

.page-about .panel--hero {
  padding: 20px;
}

.page-about .panel--hero img {
  max-height: 248px;
  object-fit: cover;
}

.page-about .panel--hero .mini-grid {
  margin: 14px 0;
  gap: 14px;
}

.page-about .panel--hero .mini-grid .stat-card {
  padding: 16px;
}

.page-about .panel--hero .notice-band {
  padding: 16px 18px;
}

.article-shell {
  display: grid;
  gap: 26px;
}

.article-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 242, 232, 0.92) 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.article-hero-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 15, 15, 0.08);
  background: rgba(15, 15, 15, 0.04);
}

.article-hero-media img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.article-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.article-intro {
  font-size: 1.08rem;
  color: #4f4a41;
  line-height: 1.82;
}

.page-article .article-intro {
  margin-bottom: 0;
}

.page-article .hero-badges {
  margin-top: 20px;
  margin-bottom: 14px;
  row-gap: 10px;
}

.page-article .hero-badges span {
  line-height: 1.2;
}

.page-article .blog-post-author {
  display: block;
  margin: 0 0 8px;
  color: #4f4a41;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
}

.page-article .article-author-note {
  margin: 0;
  color: #5f5a50;
  font-size: 0.98rem;
  line-height: 1.7;
}

.article-hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.article-hero-proof {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 242, 232, 0.9) 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.article-hero-proof strong {
  display: block;
  margin-bottom: 8px;
  color: #171513;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  line-height: 1.08;
}

.article-hero-proof p {
  color: #5a5248;
  line-height: 1.7;
  font-size: 0.97rem;
}

.page-article .panel--hero {
  padding: 20px;
}

.page-article .panel--hero img {
  max-height: 248px;
  object-fit: cover;
}

.page-article .panel--hero .mini-grid {
  margin: 14px 0;
  gap: 14px;
}

.page-article .panel--hero .mini-grid .stat-card {
  padding: 16px;
}

.page-article .panel--hero .notice-band {
  padding: 16px 18px;
}

.article-body {
  display: grid;
  gap: 22px;
}

.article-body h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  line-height: 1.08;
}

.article-body h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.24rem;
  line-height: 1.12;
}

.article-body p {
  color: #4f4a41;
  line-height: 1.84;
}

.article-body .bullet-list li,
.article-body .check-list li {
  color: #27231d;
}

.article-body .bullet-list li::before,
.article-body .check-list li::before {
  background: linear-gradient(135deg, #ffe37a 0%, #f4bf16 100%);
  box-shadow: 0 0 0 4px rgba(244, 191, 22, 0.16);
}

.article-business-list {
  margin-top: 10px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 242, 232, 0.92) 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
}

.article-related-posts {
  display: grid;
  gap: 22px;
}

.article-related-posts .section-heading {
  margin-bottom: 0;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-related-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 242, 232, 0.92) 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
}

.article-related-media {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(15, 15, 15, 0.04);
  border: 1px solid rgba(15, 15, 15, 0.06);
}

.article-related-media img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.article-related-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6d6658;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-related-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  line-height: 1.16;
}

.article-related-card p {
  color: #4f4a41;
  line-height: 1.68;
  font-size: 0.96rem;
}

.article-related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  font-weight: 800;
  text-decoration: none;
}

.article-related-link:hover,
.article-related-link:focus-visible {
  text-decoration: underline;
  text-decoration-color: rgba(244, 191, 22, 0.9);
  text-underline-offset: 4px;
}

.article-callout {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 227, 122, 0.24) 0%, rgba(244, 191, 22, 0.12) 100%);
  border: 1px solid rgba(244, 191, 22, 0.28);
}

.article-outline {
  display: grid;
  gap: 12px;
}

.article-outline a {
  color: #111111;
  font-weight: 700;
}

.article-outline a:hover,
.article-outline a:focus-visible {
  text-decoration: underline;
  text-decoration-color: rgba(244, 191, 22, 0.9);
  text-underline-offset: 4px;
}

@media (min-width: 1081px) {
  .page-article .article-sticky-cluster {
    position: sticky;
    top: 108px;
    align-self: start;
    z-index: 3;
  }
}

.page-article .article-outline-card {
  opacity: 1;
  transform: none;
}

.article-sticky-cluster {
  display: grid;
  gap: 18px;
}

.article-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.article-mini-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 15, 15, 0.07);
}

.article-mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
}

@media (max-width: 840px) {
  .article-layout,
  .article-seo-grid,
  .article-related-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    padding: 22px;
  }

  .article-sticky-cluster {
    display: contents;
  }
}



.case-study-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.case-study-feature__media {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(15, 15, 15, 0.04);
  border: 1px solid rgba(15, 15, 15, 0.08);
}

.case-study-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.case-study-feature__content {
  display: grid;
  gap: 18px;
}

.case-study-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-study-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 227, 122, 0.95) 0%, rgba(244, 191, 22, 0.82) 100%);
  color: #111111;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-study-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-study-stat {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 242, 232, 0.92) 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
}

.case-study-stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.case-study-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 242, 232, 0.92) 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.case-study-card h3 {
  font-size: 1.34rem;
  line-height: 1.08;
}

.case-study-card p {
  color: #4f4a41;
  line-height: 1.74;
}

.case-study-body {
  display: grid;
  gap: 22px;
}

.case-study-body section,
.case-study-sidebar-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 242, 232, 0.92) 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.case-study-body h2,
.case-study-sidebar-card h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 12px;
  line-height: 1.08;
}

.case-study-body p,
.case-study-sidebar-card p,
.case-study-sidebar-card li {
  color: #4f4a41;
  line-height: 1.78;
}

.case-study-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.case-study-list li {
  position: relative;
  padding-left: 22px;
}

.case-study-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe37a 0%, #f4bf16 100%);
}

.case-study-quote {
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 227, 122, 0.22) 0%, rgba(244, 191, 22, 0.1) 100%);
  border: 1px solid rgba(244, 191, 22, 0.28);
}

.case-study-quote strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
}

@media (max-width: 1080px) {
  .case-study-feature,
  .case-study-grid,
  .case-study-stats {
    grid-template-columns: 1fr;
  }
}



.page-grid--sidebar {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.support-layout,
.faq-page-grid,
.case-study-detail-grid,
.case-study-metric-band {
  display: grid;
  gap: 22px;
}

.support-layout,
.faq-page-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: start;
}

.support-stack,
.support-sidebar,
.faq-stack {
  display: grid;
  gap: 22px;
}

.support-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-card,
.support-sidebar-card,
.faq-compact-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 242, 232, 0.92) 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.support-card h2,
.support-sidebar-card h3,
.faq-compact-card h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
  margin-bottom: 12px;
}

.support-card p,
.support-sidebar-card p,
.support-card li,
.support-sidebar-card li,
.faq-compact-card p {
  color: #4f4a41;
  line-height: 1.78;
}

.support-card .link-list li,
.support-sidebar-card .link-list li {
  color: #4f4a41;
}

.support-card .link-list li::before,
.support-sidebar-card .link-list li::before {
  background: linear-gradient(135deg, #ffe37a 0%, #f4bf16 100%);
  box-shadow: 0 0 0 4px rgba(244, 191, 22, 0.16);
}

.faq-compact-card h3 {
  font-size: 1.18rem;
}

.case-study-metric-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-study-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-study-note {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(244, 191, 22, 0.1);
  border: 1px solid rgba(244, 191, 22, 0.22);
  color: #4f4a41;
  line-height: 1.72;
}

.case-study-body .info-grid {
  margin-top: 8px;
}

.panel--hero .stat-card p,
.panel--hero .notice-band,
.contact-card p,
.list-panel p {
  color: #ebe7da;
}

@media (max-width: 1080px) {
  .support-layout,
  .faq-page-grid,
  .case-study-detail-grid,
  .support-summary-grid,
  .case-study-metric-band {
    grid-template-columns: 1fr;
  }
}

.error-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 24px;
  align-items: center;
}

.error-shell {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 242, 232, 0.93) 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.error-shell__code {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4.4rem, 12vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: #111111;
  margin-bottom: 16px;
}

.error-shell p {
  color: #4f4a41;
  line-height: 1.8;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sitemap-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 242, 232, 0.92) 100%);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.sitemap-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  line-height: 1.06;
  margin-bottom: 14px;
}

.sitemap-card p {
  color: #4f4a41;
  line-height: 1.72;
  margin-bottom: 16px;
}

.sitemap-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.sitemap-list li a {
  color: #111111;
  font-weight: 700;
  text-decoration: none;
}

.sitemap-list li a:hover,
.sitemap-list li a:focus-visible {
  text-decoration: underline;
  text-decoration-color: rgba(244, 191, 22, 0.9);
  text-underline-offset: 4px;
}

.sitemap-list small {
  display: block;
  margin-top: 4px;
  color: #6d6658;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .error-layout,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}

.page-support .page-hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 0.98;
  max-width: 10ch;
}

.page-support .page-hero__copy p {
  max-width: 62ch;
}

.page-support .dual-grid {
  align-items: start;
}





/* Shared light-surface and heading refinements rolled out from the homepage */
.page-hero h1 {
  font-size: clamp(2.15rem, 3.1vw, 3.45rem) !important;
  line-height: 1.02 !important;
  max-width: 15ch !important;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.2rem) !important;
  line-height: 1.04 !important;
}

.page-support .page-hero h1 {
  font-size: clamp(2rem, 2.8vw, 3rem) !important;
  line-height: 1.02 !important;
  max-width: 14ch !important;
}

main .panel,
main .card,
main .city-card,
main .faq-card,
main .contact-card,
main .stat-card,
main .info-block,
main .list-panel,
main .image-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 242, 232, 0.94)) !important;
  border: 1px solid rgba(29, 26, 22, 0.1) !important;
  box-shadow: 0 18px 36px rgba(39, 32, 20, 0.06) !important;
  color: #171513 !important;
}

main .panel strong,
main .stat-card strong,
main .info-block strong,
main .card h3,
main .faq-card h3,
main .contact-card h3,
main .city-card h3,
main .list-panel h3,
main .image-card__body h3 {
  color: #171513 !important;
}

main .panel p,
main .panel--hero .stat-card p,
main .card p,
main .card li,
main .city-card p,
main .faq-card p,
main .contact-card p,
main .contact-card li,
main .stat-card p,
main .info-block p,
main .list-panel p,
main .list-panel li,
main .image-card__body p,
main .contact-card a {
  color: #5a5248 !important;
}

main .contact-proof-pill,
main .contact-direct-item a,
main .contact-form-caption a {
  color: #171513 !important;
}

main .contact-helper p,
main .contact-direct-item p {
  color: #5a5248 !important;
}

main .form-status {
  color: #8a6200 !important;
  font-weight: 700;
}

main .image-card img,
main .panel--hero img {
  background: #f3eedf !important;
}

main .notice-band {
  background: #fff4ca !important;
  color: #443a2f !important;
  border: 1px solid rgba(193, 151, 9, 0.18) !important;
}

.page-cat6 .page-hero h1 {
  max-width: 24ch !important;
  font-size: clamp(2.15rem, 2.85vw, 3.35rem) !important;
  line-height: 1.03 !important;
}


.page-service .page-hero h1 {
  max-width: 24ch !important;
  font-size: clamp(2.15rem, 2.85vw, 3.35rem) !important;
  line-height: 1.03 !important;
}

@media (min-width: 1081px) {
  .page-service .dual-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
    align-items: start;
    gap: 30px;
  }
}

/* Wider hero treatment for non-support pages using the shared page-hero layout */
body:not(.page-support) .page-hero h1 {
  max-width: 24ch !important;
  font-size: clamp(2.15rem, 2.85vw, 3.35rem) !important;
  line-height: 1.03 !important;
}

@media (min-width: 1081px) {
  body:not(.page-support) .dual-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
    align-items: start;
    gap: 30px;
  }
}

.faq-list-simple {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(29, 26, 22, 0.1);
}

.faq-row {
  padding: 22px 0;
  border-bottom: 1px solid rgba(29, 26, 22, 0.1);
}

.faq-row h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: #171513;
}

.faq-row p {
  margin: 0;
  color: #5a5248;
  line-height: 1.72;
  max-width: 76ch;
}
.page-network .faq-list-simple--network {
  max-width: 920px;
  margin-inline: 0;
  border-top: 1px solid rgba(29, 26, 22, 0.12);
}

.page-network .faq-list-simple--network .faq-row {
  padding: 20px 0 18px;
  border-bottom: 1px solid rgba(29, 26, 22, 0.12);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.page-network .faq-list-simple--network .faq-row h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.page-network .faq-list-simple--network .faq-row p {
  max-width: 82ch;
  color: #564f45;
}
/* Enterprise header refresh */
.site-header {
  box-shadow: 0 8px 24px rgba(32, 26, 18, 0.06);
}

.site-header__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(19, 18, 16, 0.98) 0%, rgba(39, 35, 29, 0.98) 100%);
}

.site-header__top-inner {
  justify-content: space-between;
  gap: 20px;
  min-height: 46px;
}

.site-header__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.site-header__signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #f6f1e5;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header__signal::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(244, 191, 22, 0.12);
}

.site-header__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 227, 122, 0.96) 0%, rgba(244, 191, 22, 0.88) 100%);
  color: #171513;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 24px rgba(244, 191, 22, 0.18);
}

.site-header__call:hover,
.site-header__call:focus-visible {
  transform: translateY(-1px);
}

.site-header__inner {
  gap: 24px;
  min-height: 90px;
}

.brand {
  padding: 10px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 26, 22, 0.08);
  box-shadow: 0 12px 32px rgba(39, 32, 20, 0.08);
}

.brand:hover,
.brand:focus-visible {
  box-shadow: 0 16px 38px rgba(39, 32, 20, 0.12);
}

.brand__logo {
  height: clamp(58px, 6.8vw, 82px);
  max-width: min(320px, 50vw);
}

.site-nav {
  gap: 22px;
}

.site-nav__links {
  gap: 26px;
  color: #161513;
}

.site-nav__links > a,
.dropdown-toggle {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-nav__links a,
.dropdown-toggle,
.dropdown-menu a,
.button,
.button-outline {
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.site-nav__links > a:hover,
.site-nav__links > a:focus-visible,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
  color: #111111;
}

.dropdown-toggle.active,
.nav-item--dropdown.is-current .dropdown-toggle,
.site-nav__links > a.active {
  color: #111111;
}

.dropdown-menu {
  top: calc(100% + 10px);
  left: -22px;
  min-width: 320px;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 252, 245, 0.985);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.14);
}

.dropdown-menu--services {
  min-width: 620px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.dropdown-group {
  display: grid;
  gap: 8px;
}

.dropdown-group__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  color: #746a5d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dropdown-group__title::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--yellow);
}

.dropdown-menu a {
  padding: 12px 14px;
  border-radius: 15px;
  background: rgba(15, 15, 15, 0.03);
  border: 1px solid rgba(15, 15, 15, 0.03);
  font-size: 0.94rem;
  line-height: 1.42;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a.active {
  border-color: rgba(244, 191, 22, 0.36);
  background: linear-gradient(135deg, rgba(255, 227, 122, 0.78) 0%, rgba(244, 191, 22, 0.52) 100%);
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .site-header__top-inner {
    align-items: flex-start;
  }

  .site-header__trust {
    max-width: 70%;
  }
}

@media (max-width: 840px) {
  .site-header__top-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-header__trust {
    max-width: none;
  }

  .site-header__signal {
    font-size: 0.72rem;
  }

  .site-header__call {
    width: 100%;
  }

  .site-header__inner {
    min-height: 82px;
  }

  .site-nav {
    top: calc(100% + 10px);
    background: rgba(250, 246, 237, 0.985);
    border: 1px solid rgba(15, 15, 15, 0.08);
  }

  .dropdown-menu--services {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dropdown-group {
    padding-top: 8px;
  }
}



.page-industries .hero-badges a {
  color: inherit;
  font-weight: 700;
}

.page-industries main .card a,
.page-industries main .faq-card a,
.page-industries main .contact-card a {
  color: #171513 !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(193, 151, 9, 0.45);
  text-underline-offset: 4px;
}

.page-industries main .card a:hover,
.page-industries main .faq-card a:hover,
.page-industries main .contact-card a:hover,
.page-industries .hero-badges a:hover {
  text-decoration-color: rgba(193, 151, 9, 0.88);
}

.page-network main .card a,
.page-network main .info-block a,
.page-network main .contact-card a,
.page-network main .faq-row a {
  color: #171513 !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(193, 151, 9, 0.45);
  text-underline-offset: 4px;
}

.page-network main .card a:hover,
.page-network main .info-block a:hover,
.page-network main .contact-card a:hover,
.page-network main .faq-row a:hover {
  text-decoration-color: rgba(193, 151, 9, 0.88);
}

.page-data main .card a,
.page-data main .info-block a,
.page-data main .contact-card a,
.page-data main .faq-card a {
  color: #171513 !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(193, 151, 9, 0.45);
  text-underline-offset: 4px;
}

.page-data main .card a:hover,
.page-data main .info-block a:hover,
.page-data main .contact-card a:hover,
.page-data main .faq-card a:hover {
  text-decoration-color: rgba(193, 151, 9, 0.88);
}

.page-cities main .list-panel a,
.page-cities main .faq-card a,
.page-cities main .contact-card a {
  color: #171513 !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(193, 151, 9, 0.45);
  text-underline-offset: 4px;
}

.page-cities main .list-panel a:hover,
.page-cities main .faq-card a:hover,
.page-cities main .contact-card a:hover {
  text-decoration-color: rgba(193, 151, 9, 0.88);
}

.page-city main .card a,
.page-city main .faq-card a,
.page-city main .contact-card a,
.page-city main .info-block a {
  color: #171513 !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(193, 151, 9, 0.45);
  text-underline-offset: 4px;
}

.page-city main .card a:hover,
.page-city main .faq-card a:hover,
.page-city main .contact-card a:hover,
.page-city main .info-block a:hover {
  text-decoration-color: rgba(193, 151, 9, 0.88);
}

.page-city .city-hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.page-city .city-hero-proof {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(29, 26, 22, 0.08);
  box-shadow: 0 14px 28px rgba(39, 32, 20, 0.05);
}

.page-city .city-hero-proof strong {
  display: block;
  margin-bottom: 8px;
  color: #171513;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  line-height: 1.15;
}

.page-city .city-hero-proof p {
  color: #5a5248;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 680px) {
  .page-city .city-hero-proof-grid {
    grid-template-columns: 1fr;
  }
}

.page-about main .section-heading a,
.page-about main .info-block a,
.page-about main .contact-card a,
.page-about main .card a,
.page-about main .list-panel a {
  color: #171513 !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(193, 151, 9, 0.45);
  text-underline-offset: 4px;
}

.page-about main .section-heading a:hover,
.page-about main .info-block a:hover,
.page-about main .contact-card a:hover,
.page-about main .card a:hover,
.page-about main .list-panel a:hover {
  text-decoration-color: rgba(193, 151, 9, 0.88);
}
.page-cat6a main .card a,
.page-cat6a main .info-block a,
.page-cat6a main .contact-card a,
.page-cat6a main .faq-card a,
.page-cat6a main .list-panel a {
  color: #171513 !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(193, 151, 9, 0.45);
  text-underline-offset: 4px;
}

.page-cat6a main .card a:hover,
.page-cat6a main .info-block a:hover,
.page-cat6a main .contact-card a:hover,
.page-cat6a main .faq-card a:hover,
.page-cat6a main .list-panel a:hover {
  text-decoration-color: rgba(193, 151, 9, 0.88);
}

.dropdown-menu--locations {
  min-width: 300px;
}

.dropdown-menu--contact {
  min-width: 220px;
}

.page-blog .blog-post-author {
  margin: 8px 0 10px;
  color: #6b6458;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.page-blog .blog-search-row {
  grid-template-columns: 1fr;
}

.page-blog .blog-search-row .button {
  display: none;
}

.page-blog .category-list a {
  background: rgba(255, 250, 236, 0.96);
  border: 1px solid rgba(244, 191, 22, 0.68);
  color: #171513;
}

.page-blog .category-list a:hover,
.page-blog .category-list a:focus-visible {
  background: linear-gradient(135deg, rgba(255, 227, 122, 0.92) 0%, rgba(244, 191, 22, 0.74) 100%);
  border-color: rgba(216, 154, 0, 0.72);
  color: #111111;
}

.page-article .category-list a {
  background: rgba(255, 250, 236, 0.96);
  border: 1px solid rgba(244, 191, 22, 0.68);
  color: #171513;
}

.page-article .category-list a:hover,
.page-article .category-list a:focus-visible {
  background: linear-gradient(135deg, rgba(255, 227, 122, 0.92) 0%, rgba(244, 191, 22, 0.74) 100%);
  border-color: rgba(216, 154, 0, 0.72);
  color: #111111;
}

.page-blog main .blog-archive-item a,
.page-blog main .list-panel a,
.page-blog main .contact-card a,
.page-blog main .recent-post__body a,
.page-blog main .category-list a {
  text-decoration-color: rgba(193, 151, 9, 0.45);
  text-underline-offset: 4px;
}
.page-access-control main .card a,
.page-access-control main .info-block a,
.page-access-control main .contact-card a,
.page-access-control main .faq-card a,
.page-access-control main .list-panel a {
  color: #171513 !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(193, 151, 9, 0.45);
  text-underline-offset: 4px;
}
.page-access-control main .card a:hover,
.page-access-control main .info-block a:hover,
.page-access-control main .contact-card a:hover,
.page-access-control main .faq-card a:hover,
.page-access-control main .list-panel a:hover {
  text-decoration-color: rgba(193, 151, 9, 0.88);
}

.page-fiber main .card a,
.page-fiber main .info-block a,
.page-fiber main .contact-card a,
.page-fiber main .faq-card a,
.page-fiber main .list-panel a {
  color: #171513 !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(193, 151, 9, 0.45);
  text-underline-offset: 4px;
}

.page-fiber main .card a:hover,
.page-fiber main .info-block a:hover,
.page-fiber main .contact-card a:hover,
.page-fiber main .faq-card a:hover,
.page-fiber main .list-panel a:hover {
  text-decoration-color: rgba(193, 151, 9, 0.88);
}


.page-data-center main .card a,
.page-data-center main .info-block a,
.page-data-center main .contact-card a,
.page-data-center main .faq-card a,
.page-data-center main .list-panel a {
  color: #171513 !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(193, 151, 9, 0.45);
  text-underline-offset: 4px;
}

.page-data-center main .card a:hover,
.page-data-center main .info-block a:hover,
.page-data-center main .contact-card a:hover,
.page-data-center main .faq-card a:hover,
.page-data-center main .list-panel a:hover {
  text-decoration-color: rgba(193, 151, 9, 0.88);
}



