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

:root {
  --green: #1D9E75;
  --green-light: #E1F5EE;
  --green-mid: #5DCAA5;
  --green-border: #9FE1CB;
  --green-dark: #0F6E56;
  --text: #1a1a18;
  --text-secondary: #5a5a56;
  --text-tertiary: #8a8a85;
  --bg: #fafaf8;
  --bg-secondary: #f2f2ee;
  --card-bg: #ffffff;
  --border: rgba(0, 0, 0, 0.10);
  --border-hover: rgba(0, 0, 0, 0.20);
  --radius-md: 8px;
  --radius-lg: 12px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #f0f0ec;
    --text-secondary: #a0a09a;
    --text-tertiary: #606059;
    --bg: #141412;
    --bg-secondary: #1e1e1b;
    --card-bg: #1e1e1b;
    --border: rgba(255, 255, 255, 0.10);
    --border-hover: rgba(255, 255, 255, 0.22);
    --green-light: #04342C;
    --green-border: #085041;
    --green: #1D9E75;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  position: relative;
  z-index: 1;
}

/* NAV */
.site-top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.nav-item {
  font-size: 12px;
  font-family: 'Space Mono', monospace;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 20px;
  border: 0.5px solid var(--border);
  transition: color 0.15s, border-color 0.15s;
}

.nav-item:hover {
  color: var(--green);
  border-color: var(--green-border);
}

.nav-item.active {
  color: var(--green-dark);
  background: var(--green-light);
  border-color: var(--green-border);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 3rem;
}

.badge-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 4px 13px;
  margin-bottom: 1.25rem;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.5px;
}

.dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  animation: pulse 2.5s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.name {
  font-family: 'Space Mono', monospace;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 0.75rem;
}

.name .accent {
  color: var(--green);
}

.tagline {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 0.4rem;
  font-weight: 300;
}

.tagline-sub {
  font-size: 14px;
  color: var(--green-dark);
  font-weight: 400;
  margin-bottom: 1.75rem;
  max-width: 420px;
  line-height: 1.6;
}

@media (prefers-color-scheme: dark) {
  .tagline-sub {
    color: var(--green-mid);
  }
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--text);
  border: 0.5px solid var(--border-hover);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  border: 2.5px solid var(--green-mid);
  position: relative;
}

.avatar::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 0.5px solid var(--green-border);
}

/* SECTION */
.section {
  margin-bottom: 3rem;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 1.25rem;
}

/* FOR WHO */
.forwho-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}

.forwho-item {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.forwho-item.featured {
  border-color: var(--green-border);
  background: var(--green-light);
  color: var(--green-dark);
}

.forwho-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}

.forwho-item.featured .forwho-dot {
  background: var(--green);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.service-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}

.service-card.primary {
  border-color: var(--green-border);
}

.service-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-2px);
}

.service-badge {
  display: inline-block;
  font-size: 10px;
  font-family: 'Space Mono', monospace;
  color: var(--green-dark);
  background: var(--green-light);
  border: 0.5px solid var(--green-border);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.service-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
}

.service-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.service-price {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--green);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-includes {
  list-style: none;
  border-top: 0.5px solid var(--border);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-includes li {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.service-includes li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
  margin-top: 4px;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.process-step {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: relative;
}

.process-num {
  font-family: 'Space Mono', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.process-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.process-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* PORTFOLIO */
.portfolio-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.portfolio-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-2px);
}

.portfolio-preview {
  width: 100%;
  height: 180px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 0.5px solid var(--border);
}

.portfolio-body {
  padding: 1.25rem;
}

.portfolio-tag {
  display: inline-block;
  font-size: 10px;
  font-family: 'Space Mono', monospace;
  color: var(--green-dark);
  background: var(--green-light);
  border: 0.5px solid var(--green-border);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.portfolio-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.portfolio-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--green);
  font-family: 'Space Mono', monospace;
  text-decoration: none;
}

.portfolio-link:hover {
  text-decoration: underline;
}

.portfolio-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* TESTIMONIAL */
.testimonial {
  margin-top: 1rem;
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  position: relative;
}

.testimonial-quote {
  font-size: 2rem;
  line-height: 1;
  color: var(--green-mid);
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0.875rem;
}

.testimonial-author {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  font-family: 'Space Mono', monospace;
}

.testimonial-role {
  font-size: 11px;
  color: var(--text-tertiary);
}

.portfolio-more {
  margin-top: 1rem;
  padding: 0.875rem 1.25rem;
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
}

/* WHY */
.why-card {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.why-arrow {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.why-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.why-text strong {
  color: var(--text);
  font-weight: 500;
}

/* PILLS */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 12px;
  font-family: 'Space Mono', monospace;
  padding: 5px 13px;
  border-radius: 20px;
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  color: var(--text-secondary);
  transition: border-color 0.15s;
}

.pill:hover {
  border-color: var(--green-border);
}

.pill.accent {
  background: var(--green-light);
  border-color: var(--green-border);
  color: var(--green-dark);
}

/* CONTACT */
.contact-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 0.5px solid var(--border);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  border: 0.5px solid var(--border);
  background: var(--bg);
  transition: color 0.15s, border-color 0.15s;
  cursor: pointer;
}

.contact-item:hover {
  color: var(--green);
  border-color: var(--green-border);
}

.contact-item svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* CONTACT FORM */
.contact-form {
  margin-top: 1.5rem;
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: 11px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.15s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-mid);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  margin-top: 0.5rem;
}

/* FOOTER */
.footer {
  margin-top: 2rem;
  border-top: 0.5px solid var(--border);
  padding-top: 1.5rem;
}

.footer-legal {
  font-size: 11px;
  color: var(--text-tertiary);
  font-family: 'Space Mono', monospace;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.footer-legal a {
  color: var(--green);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-note {
  font-size: 11px;
  color: var(--text-tertiary);
  font-family: 'Space Mono', monospace;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* INITIAL FADE-IN for hero */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.blog-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-2px);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 0.5px solid var(--border);
}

.blog-card-body {
  padding: 1.25rem;
}

.blog-card-date {
  font-size: 11px;
  font-family: 'Space Mono', monospace;
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* BLOG SINGLE */
.blog-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid var(--border);
}

.blog-header-date {
  font-size: 11px;
  font-family: 'Space Mono', monospace;
  color: var(--text-tertiary);
  margin-bottom: 0.75rem;
}

.blog-header-title {
  font-family: 'Space Mono', monospace;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.blog-cover {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 0;
  border: 0.5px solid var(--border);
}

.blog-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.blog-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}

.blog-content h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}

.blog-content p {
  margin-bottom: 1rem;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.4rem;
}

.blog-content strong {
  color: var(--text);
}

.blog-content a {
  color: var(--green);
}

.blog-content img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 1rem 0;
  border: 0.5px solid var(--border);
}

.blog-content blockquote {
  border-left: 3px solid var(--green-mid);
  padding: 0.75rem 1.25rem;
  margin: 1.25rem 0;
  background: var(--bg-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: 'Space Mono', monospace;
  color: var(--green);
  text-decoration: none;
  margin-bottom: 2rem;
}

.blog-back:hover {
  text-decoration: underline;
}

.blog-back svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* RESPONSIVE */
@media (max-width: 520px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .avatar {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .forwho-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .whyme-grid {
    grid-template-columns: 1fr;
  }
}

/* PRICING */
.pricing-card {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.pricing-intro {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 1rem;
}

.pricing-item {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-item:hover {
  border-color: var(--green-mid);
  transform: translateY(-2px);
}

.pricing-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.pricing-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-icon svg path,
.pricing-icon svg rect,
.pricing-icon svg circle,
.pricing-icon svg line,
.pricing-icon svg polyline {
  fill: none;
}

.pricing-name {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pricing-value {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.pricing-value strong {
  font-size: 18px;
}

.pricing-note {
  font-size: 11px;
  color: var(--text-tertiary);
}

.pricing-cta {
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
}

/* WHY ME */
.whyme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.whyme-item {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.whyme-item:hover {
  border-color: var(--green-border);
}

.whyme-icon {
  width: 24px;
  height: 24px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.whyme-icon path,
.whyme-icon circle,
.whyme-icon rect {
  fill: none;
}

.whyme-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.whyme-text strong {
  color: var(--text);
  font-weight: 500;
}

/* CONTACT INTRO */
.contact-intro {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

/* STICKY NAV */
@media (max-width: 768px) {
  .site-top-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    padding: 10px 0;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(250, 250, 248, 0.85);
    border-bottom: 0.5px solid var(--border);
  }

  @media (prefers-color-scheme: dark) {
    .site-top-nav {
      background: rgba(20, 20, 18, 0.85);
    }
  }
}