:root {
  color-scheme: light;
  --ink: #2f3032;
  --ink-soft: #444442;
  --muted: #73706c;
  --line: #d7d2cb;
  --paper: #f4f2ef;
  --panel: #fbfaf8;
  --charcoal: #2f3032;
  --silver: #aaa8a3;
  --warm-silver: #d8d4cd;
  --soft: #ebe8e3;
  --stone: #8b8780;
  --brass: #9a7a4d;
  --brass-soft: #eee4d4;
  --hero-text: #f2f0ec;
  --hero-muted: rgba(242, 240, 236, 0.76);
  --shadow: 0 24px 70px rgba(47, 48, 50, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(47, 48, 50, 0.12);
  background: rgba(247, 246, 244, 0.92);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-link img {
  display: block;
  width: min(250px, 52vw);
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a,
.primary-action,
.secondary-action,
.quiet-action {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.12;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
}

nav a {
  border: 1px solid transparent;
  color: #575551;
}

nav .staff-nav-link,
nav .customer-nav-link {
  border-color: var(--line);
  color: #6a6761;
  background: rgba(255, 255, 255, 0.56);
}

nav .customer-nav-link {
  border-color: rgba(154, 122, 77, 0.28);
  color: #4d4a45;
  background: rgba(238, 228, 212, 0.58);
}

nav a:hover,
nav a:focus-visible {
  border-color: var(--line);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.74);
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--charcoal);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04) brightness(0.96);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 50% 48%, rgba(35, 34, 32, 0.5), rgba(25, 25, 24, 0.78) 64%, rgba(18, 18, 17, 0.88)),
    linear-gradient(180deg, rgba(32, 31, 29, 0.18), rgba(24, 24, 23, 0.48) 72%, rgba(19, 19, 18, 0.7));
}

.hero-content {
  width: min(820px, calc(100% - 36px));
  padding: clamp(34px, 7vw, 74px) clamp(18px, 4vw, 54px);
  color: var(--hero-text);
  text-align: center;
}

.hero-logo {
  display: block;
  width: min(560px, 88vw);
  height: auto;
  margin: 0 auto clamp(22px, 3.6vw, 38px);
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(216, 212, 205, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  margin-inline: auto;
  max-width: 720px;
  color: #f5f2ed;
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 340;
  line-height: 1.02;
}

.hero-copy {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--hero-muted);
  font-size: clamp(17px, 1.75vw, 21px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.hero-system-strip {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 24px auto 0;
  border: 1px solid rgba(216, 212, 205, 0.28);
  border-radius: 10px;
  background: rgba(216, 212, 205, 0.24);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.hero-system-strip span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px 12px;
  color: rgba(245, 242, 237, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1.22;
  text-transform: uppercase;
}

.primary-action {
  border: 1px solid #f3f0eb;
  color: #343330;
  background: #f3f0eb;
}

.secondary-action,
.quiet-action {
  border: 1px solid rgba(216, 212, 205, 0.58);
  color: #f2f0ec;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.gateway-panel p {
  position: relative;
  z-index: 1;
  color: #706d68;
  line-height: 1.58;
}

.gateway-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  margin: clamp(14px, 3vw, 34px) clamp(14px, 4vw, 54px) clamp(26px, 5vw, 58px);
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 250, 248, 0.78);
  box-shadow: 0 18px 52px rgba(47, 48, 50, 0.08);
}

.gateway-panel .eyebrow {
  color: var(--stone);
}

.gateway-panel h2 {
  max-width: 640px;
  color: var(--charcoal);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 330;
  line-height: 1.02;
}

.gateway-panel p {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: 17px;
}

.route-actions {
  display: grid;
  gap: 10px;
  width: 100%;
  min-width: 0;
  justify-self: end;
  align-self: center;
}

.route-actions a {
  width: 100%;
}

.gateway-panel .primary-action {
  border-color: var(--charcoal);
  color: #f3f0eb;
  background: var(--charcoal);
}

.gateway-panel .quiet-action {
  border-color: var(--line);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.7);
}

.gateway-panel .quiet-action-dark {
  border-color: rgba(47, 48, 50, 0.22);
  background: rgba(235, 232, 227, 0.88);
}

.home-route-section,
.proof-strip {
  margin-inline: clamp(14px, 4vw, 54px);
}

.home-route-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: start;
  margin-bottom: clamp(24px, 5vw, 56px);
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(215, 210, 203, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(251, 250, 248, 0.94), rgba(235, 232, 227, 0.76)),
    var(--panel);
  box-shadow: 0 20px 58px rgba(47, 48, 50, 0.08);
}

.home-route-heading {
  position: sticky;
  top: 96px;
}

.home-route-heading .eyebrow {
  color: var(--brass);
}

.home-route-heading h2 {
  max-width: 520px;
  color: var(--charcoal);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 330;
  line-height: 1.02;
}

.home-route-heading p:last-child {
  max-width: 470px;
  margin: 18px 0 0;
  color: #706d68;
  font-size: 16px;
  line-height: 1.58;
}

.home-route-grid {
  display: grid;
  gap: 12px;
}

.home-route-card {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 10px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(215, 210, 203, 0.92);
  border-radius: 8px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(47, 48, 50, 0.07);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.home-route-card::after {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(47, 48, 50, 0.42);
  content: ">";
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}

.home-route-card:hover,
.home-route-card:focus-visible {
  border-color: rgba(154, 122, 77, 0.38);
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(47, 48, 50, 0.12);
  transform: translateY(-2px);
}

.route-card-featured:hover,
.route-card-featured:focus-visible {
  color: #f3f0eb;
  border-color: rgba(216, 212, 205, 0.34);
  background:
    linear-gradient(135deg, rgba(47, 48, 50, 1), rgba(62, 60, 56, 0.98)),
    var(--charcoal);
  box-shadow: 0 24px 54px rgba(47, 48, 50, 0.18);
  transform: translateY(-1px);
}

.route-card-featured:hover .route-kicker,
.route-card-featured:focus-visible .route-kicker {
  color: #f6f3ee;
  border-color: rgba(243, 240, 235, 0.28);
  background: rgba(243, 240, 235, 0.14);
}

.route-card-featured:hover span:last-child,
.route-card-featured:focus-visible span:last-child {
  color: rgba(243, 240, 235, 0.82);
}

.primary-action,
.secondary-action,
.quiet-action,
.home-route-card,
.blog-card,
.public-link {
  will-change: transform;
}

.primary-action:hover,
.secondary-action:hover,
.quiet-action:hover,
.primary-action:focus-visible,
.secondary-action:focus-visible,
.quiet-action:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(47, 48, 50, 0.16);
}

.site-header {
  box-shadow: 0 10px 34px rgba(47, 48, 50, 0.06);
}

.staff-nav-link {
  color: #f3f0eb !important;
  border-color: rgba(47, 48, 50, 0.72) !important;
  background: var(--charcoal) !important;
}

.customer-nav-link {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.route-card-featured {
  color: #f3f0eb;
  border-color: rgba(47, 48, 50, 0.72);
  background:
    linear-gradient(135deg, rgba(47, 48, 50, 0.98), rgba(74, 72, 67, 0.94)),
    var(--charcoal);
}

.route-card-featured::after {
  color: rgba(243, 240, 235, 0.62);
}

.route-kicker {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(154, 122, 77, 0.24);
  border-radius: 999px;
  color: var(--brass);
  background: rgba(238, 228, 212, 0.72);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card-featured .route-kicker {
  color: #f3f0eb;
  border-color: rgba(243, 240, 235, 0.22);
  background: rgba(243, 240, 235, 0.12);
}

.home-route-card strong {
  max-width: calc(100% - 30px);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 380;
  line-height: 1.04;
}

.home-route-card span:last-child {
  max-width: 560px;
  color: #706d68;
  font-size: 15px;
  line-height: 1.5;
}

.route-card-featured span:last-child {
  color: rgba(243, 240, 235, 0.76);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(215, 210, 203, 0.92);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 48px rgba(47, 48, 50, 0.07);
}

.proof-strip div {
  min-width: 0;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(251, 250, 248, 0.88);
}

.proof-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-strip strong {
  display: block;
  color: var(--charcoal);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 340;
  line-height: 1.2;
}

.home-blog-section {
  margin-top: 0;
}

.blog-section {
  scroll-margin-top: 106px;
  position: relative;
  overflow: hidden;
  margin: 0 clamp(14px, 4vw, 54px) clamp(34px, 6vw, 72px);
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(215, 210, 203, 0.88);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(244, 242, 239, 0.76)),
    rgba(251, 250, 248, 0.64);
  box-shadow: 0 22px 60px rgba(47, 48, 50, 0.07);
}

.blog-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--charcoal), var(--brass), var(--warm-silver));
}

.blog-section-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: clamp(16px, 4vw, 42px);
  align-items: end;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.blog-section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brass);
}

.blog-section-header .eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.blog-section h2 {
  max-width: 680px;
  color: var(--charcoal);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 330;
  line-height: 1.05;
}

.blog-section-header p:last-child {
  margin: 0;
  color: #706d68;
  font-size: 16px;
  line-height: 1.58;
}

.blog-grid {
  counter-reset: blog-tip;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
  align-items: start;
}

.blog-card {
  counter-increment: blog-tip;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid rgba(215, 210, 203, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 250, 248, 0.88)),
    #ffffff;
  box-shadow: 0 18px 40px rgba(47, 48, 50, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.blog-card::before {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: -1;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(154, 122, 77, 0.26);
  border-radius: 50%;
  color: rgba(154, 122, 77, 0.72);
  background: var(--brass-soft);
  content: counter(blog-tip);
  font-size: 20px;
  font-weight: 520;
  line-height: 1;
}

.blog-card::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: var(--brass);
  opacity: 0.78;
}

.blog-card:hover,
.blog-card:focus-within {
  border-color: rgba(154, 122, 77, 0.38);
  box-shadow: 0 24px 52px rgba(47, 48, 50, 0.12);
  transform: translateY(-2px);
}

.blog-card:has(details[open]) {
  border-color: rgba(154, 122, 77, 0.44);
  background:
    linear-gradient(180deg, #ffffff, rgba(250, 247, 242, 0.94)),
    #ffffff;
}

.blog-meta {
  max-width: calc(100% - 66px);
  margin: 0;
  color: var(--stone);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.blog-card h3 {
  max-width: calc(100% - 42px);
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 390;
  line-height: 1.08;
}

.blog-card > p:not(.blog-meta),
.blog-body p,
.blog-body li {
  color: #625f5a;
  font-size: 15.5px;
  line-height: 1.58;
}

.blog-card > p:not(.blog-meta),
.blog-body p {
  margin: 0;
}

.blog-card details {
  margin-top: auto;
  padding-top: 4px;
}

.blog-card-action {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0 0;
  border-top: 1px solid rgba(215, 210, 203, 0.76);
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.blog-card-action::after {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 48, 50, 0.18);
  border-radius: 50%;
  color: #ffffff;
  background: var(--charcoal);
  content: ">";
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.blog-card-action:hover,
.blog-card-action:focus-visible {
  color: var(--brass);
}

.blog-card-action:hover::after,
.blog-card-action:focus-visible::after {
  background: var(--brass);
  transform: translateX(2px);
}

.blog-card summary {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0 0;
  border-top: 1px solid rgba(215, 210, 203, 0.76);
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
}

.blog-card summary::after {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 48, 50, 0.18);
  border-radius: 50%;
  color: #ffffff;
  background: var(--charcoal);
  content: "+";
  font-size: 20px;
  font-weight: 360;
  line-height: 1;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.blog-card details[open] summary::after {
  background: var(--brass);
  content: "-";
  transform: rotate(180deg);
}

.blog-card summary:hover,
.blog-card summary:focus-visible {
  color: var(--brass);
}

.blog-body {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding-top: 2px;
}

.blog-body ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 14px 16px 14px 34px;
  border: 1px solid rgba(215, 210, 203, 0.72);
  border-radius: 8px;
  background: rgba(244, 242, 239, 0.7);
}

.blog-section-footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(18px, 3vw, 30px);
}

.blog-section-footer .primary-action {
  border-color: var(--charcoal);
  color: #f3f0eb;
  background: var(--charcoal);
}

.blog-hub,
.blog-post-page {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
}

.blog-hub-hero {
  position: relative;
  overflow: hidden;
  margin: clamp(18px, 4vw, 46px) 0 clamp(14px, 3vw, 28px);
  padding: clamp(28px, 6vw, 70px);
  border: 1px solid rgba(215, 210, 203, 0.88);
  border-radius: 8px;
  color: var(--hero-text);
  background:
    linear-gradient(100deg, rgba(47, 48, 50, 0.88), rgba(47, 48, 50, 0.68)),
    url("assets/home-ad-bathroom.jpeg") center / cover no-repeat;
}

.blog-hub-hero .eyebrow {
  color: rgba(238, 228, 212, 0.88);
}

.blog-hub-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 330;
  line-height: 0.98;
}

.blog-hub-hero p:last-child {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
}

.blog-search-panel {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(14px, 3vw, 28px);
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(215, 210, 203, 0.92);
  border-radius: 8px;
  background: rgba(251, 250, 248, 0.86);
  box-shadow: 0 16px 42px rgba(47, 48, 50, 0.07);
}

.blog-search-panel label {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
}

.blog-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
  gap: 12px;
}

.blog-search-row input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--charcoal);
  background: #ffffff;
  font-size: 16px;
}

.blog-search-row .primary-action {
  border-color: var(--charcoal);
  color: #f3f0eb;
  background: var(--charcoal);
}

.blog-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(215, 210, 203, 0.96);
  border-radius: 999px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.filter-chip.active,
.filter-chip:hover,
.filter-chip:focus-visible {
  border-color: rgba(154, 122, 77, 0.38);
  color: #ffffff;
  background: var(--brass);
}

.blog-list-section {
  margin-bottom: clamp(34px, 6vw, 72px);
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(215, 210, 203, 0.88);
  border-radius: 8px;
  background: rgba(251, 250, 248, 0.72);
}

.blog-list-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.blog-list-header .eyebrow {
  color: var(--brass);
}

.blog-list-header h2 {
  color: var(--charcoal);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 330;
  line-height: 1.05;
}

.blog-list-header p {
  margin: 0;
  color: var(--stone);
  font-weight: 700;
}

.blog-list-status {
  display: grid;
  gap: 7px;
  justify-items: end;
  text-align: right;
}

.blog-activity-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brass);
  font-size: 13px;
}

.blog-activity-note span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4f8f64;
  box-shadow: 0 0 0 5px rgba(79, 143, 100, 0.12);
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
  align-items: stretch;
}

.blog-list-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(98px, auto) 1fr auto;
  gap: 14px;
  height: 100%;
  min-height: 390px;
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid rgba(215, 210, 203, 0.92);
  border-left: 4px solid var(--brass);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(47, 48, 50, 0.08);
}

.blog-list-card-featured {
  position: relative;
  border-color: rgba(154, 122, 77, 0.42);
  border-left-width: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(253, 248, 239, 0.92)),
    #ffffff;
  box-shadow: 0 22px 54px rgba(47, 48, 50, 0.13);
}

.blog-list-card-featured::before {
  position: absolute;
  top: 17px;
  right: 17px;
  content: "Latest post";
  padding: 7px 10px;
  border: 1px solid rgba(154, 122, 77, 0.28);
  border-radius: 999px;
  color: var(--brass);
  background: rgba(238, 228, 212, 0.82);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.blog-list-card-featured .blog-meta {
  padding-right: 102px;
}

.blog-list-card[hidden] {
  display: none;
}

.blog-list-card h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(23px, 2.2vw, 30px);
  font-weight: 380;
  line-height: 1.08;
  align-self: start;
}

.blog-list-card h3 a {
  text-decoration: none;
}

.blog-list-card h3 a:hover,
.blog-list-card h3 a:focus-visible {
  color: var(--brass);
}

.blog-list-card p:not(.blog-meta) {
  margin: 0;
  align-self: start;
  color: #625f5a;
  font-size: 15.5px;
  line-height: 1.58;
}

.blog-empty-state {
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid rgba(215, 210, 203, 0.86);
  border-radius: 8px;
  color: var(--stone);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.blog-post-page {
  padding-bottom: clamp(34px, 6vw, 72px);
}

.blog-post {
  max-width: 850px;
  margin: clamp(18px, 4vw, 54px) auto 0;
  padding: clamp(24px, 5vw, 64px);
  border: 1px solid rgba(215, 210, 203, 0.88);
  border-top: 4px solid var(--brass);
  border-radius: 8px;
  background: rgba(251, 250, 248, 0.9);
  box-shadow: 0 24px 62px rgba(47, 48, 50, 0.09);
}

.back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--stone);
  font-weight: 700;
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--brass);
}

.blog-post h1 {
  max-width: 780px;
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 330;
  line-height: 0.98;
}

.post-intro {
  margin: 22px 0 0;
  color: #625f5a;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.46;
}

.blog-post section {
  margin-top: clamp(24px, 4vw, 40px);
}

.blog-post h2 {
  color: var(--charcoal);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 360;
  line-height: 1.08;
}

.blog-post p,
.blog-post li {
  color: #625f5a;
  font-size: 17px;
  line-height: 1.66;
}

.blog-post p {
  margin: 14px 0 0;
}

.post-tip-box,
.post-cta {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(215, 210, 203, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.post-tip-box ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.post-cta {
  margin-top: clamp(26px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(47, 48, 50, 0.95), rgba(67, 64, 58, 0.9)),
    var(--charcoal);
}

.post-cta .eyebrow {
  color: rgba(238, 228, 212, 0.82);
}

.post-cta h2 {
  color: #ffffff;
}

.post-cta .primary-action {
  width: fit-content;
  margin-top: 18px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  nav a {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.62);
  }

  .gateway-panel {
    grid-template-columns: 1fr;
  }

  .gateway-panel,
  .home-route-section,
  .proof-strip,
  .blog-section {
    margin-inline: 12px;
  }

  .home-route-section,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .home-route-heading {
    position: static;
  }

  .blog-section {
    scroll-margin-top: 236px;
  }

  .route-actions {
    justify-self: stretch;
  }

  .blog-section-header,
  .blog-grid,
  .blog-search-row,
  .blog-list-grid {
    grid-template-columns: 1fr;
  }

  .blog-list-header {
    display: grid;
  }

  .blog-list-status {
    justify-items: start;
    text-align: left;
  }

}

@media (min-width: 861px) and (max-width: 1180px) {
  .home-route-section {
    grid-template-columns: 0.72fr 1fr;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-actions,
  .route-actions {
    display: grid;
  }

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

  .primary-action,
  .secondary-action,
  .quiet-action {
    width: 100%;
  }

  .home-route-section,
  .gateway-panel,
  .blog-section {
    padding: 20px;
  }

  .home-route-card::after {
    top: 20px;
    right: 18px;
  }

  .proof-strip div {
    padding: 20px;
  }

}
