/* ==========================================================================
   主样式表 main.css
   布局、组件与响应式。全部颜色取自 theme.css 中的 CSS 变量
   ========================================================================== */

/* ---------- 基础重置 ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  transition: background-color 0.3s ease, color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-strong);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.3;
  margin: 0 0 0.6em;
  font-weight: 600;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---------- 布局工具 ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--bg-alt);
}

/* ---------- 区块标题 ---------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head--left {
  text-align: left;
  margin-left: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease,
    color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--primary:hover {
  background: var(--accent-strong);
  color: var(--on-accent);
}

.btn--outline {
  background: transparent;
  color: var(--hero-text);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--hero-text);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn--dark {
  background: var(--primary);
  color: var(--on-primary);
}

.btn--dark:hover {
  background: var(--primary-strong);
  color: var(--on-primary);
}

/* ==========================================================================
   头部导航（由 components.js 注入）
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  color: var(--header-text);
  transition: box-shadow 0.25s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--header-text);
  letter-spacing: 0.02em;
}

.logo:hover {
  color: var(--header-text);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--header-muted);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
  color: var(--header-text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.is-active {
  color: var(--header-text);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- 主题切换器 ---------- */
.theme-toggle {
  position: relative;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--header-text);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.theme-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.theme-btn svg {
  width: 20px;
  height: 20px;
}

.theme-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.theme-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theme-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  text-align: left;
  transition: background-color 0.15s ease;
}

.theme-option:hover {
  background: var(--bg-alt);
}

.theme-option.is-active {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
}

.theme-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  flex: none;
}

/* ---------- 汉堡菜单（移动端） ---------- */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--header-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--header-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 20px 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  padding: 0.8rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 浅色主题的页头为白底，控件需改用深色描边方可辨识 */
[data-theme="light"] .theme-btn,
[data-theme="light"] .hamburger {
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .theme-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.is-active {
  background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mobile-menu {
  border-top-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .mobile-menu .nav-link {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   首页 Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--hero-bg);
  color: var(--hero-text);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding: 88px 24px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero-title {
  color: var(--hero-text);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-sub {
  color: var(--hero-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hero-tag {
  padding: 0.35rem 0.9rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.85rem;
  color: var(--hero-text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-figure {
  position: relative;
}

.hero-portrait {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.9);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: -10px;
  bottom: 40px;
  background: var(--surface);
  color: var(--heading);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.9rem 1.2rem;
  font-size: 0.86rem;
  line-height: 1.4;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--accent-strong);
}

/* ==========================================================================
   数据亮点 Stats
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.stat-num .suffix {
  color: var(--accent);
}

.stat-label {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.4rem;
}

/* ==========================================================================
   通用卡片网格
   ========================================================================== */
.grid {
  display: grid;
  gap: 24px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.card .link-more {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ==========================================================================
   关于我 / 简介
   ========================================================================== */
.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-list {
  margin-top: 1.4rem;
}

.feature-item {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.feature-item .tick {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--accent-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

.feature-item strong {
  display: block;
  color: var(--heading);
  margin-bottom: 0.15rem;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   时间线（执业经历）
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-year {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-strong);
  letter-spacing: 0.04em;
}

.timeline-item h3 {
  font-size: 1.1rem;
  margin: 0.2rem 0 0.3rem;
}

.timeline-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   CTA 横幅
   ========================================================================== */
.cta-band {
  background: var(--hero-bg);
  color: var(--hero-text);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
}

.cta-band h2 {
  color: var(--hero-text);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.6rem;
}

.cta-band p {
  color: var(--hero-muted);
  max-width: 560px;
  margin: 0 auto 1.8rem;
}

/* ==========================================================================
   联系页
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.info-card {
  display: flex;
  gap: 1rem;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 16px;
}

.info-card .ico {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card .ico svg {
  width: 22px;
  height: 22px;
}

.info-card h4 {
  font-size: 0.95rem;
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-weight: 600;
  font-family: var(--font-body);
}

.info-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--heading);
  font-weight: 500;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-form h3 {
  margin-bottom: 1.4rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.35rem;
}

.form-group label .req {
  color: #d04a4a;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.form-msg {
  display: none;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.form-msg.show {
  display: block;
}

.form-msg.ok {
  background: #e8f6ee;
  color: #1d6b43;
  border: 1px solid #bfe6cf;
}

.form-msg.err {
  background: #fdecec;
  color: #b23b3b;
  border: 1px solid #f3c5c5;
}

.map-placeholder {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- 服务清单 ---------- */
.service-list li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.service-list li::before {
  content: "✓";
  color: var(--accent-strong);
  font-weight: 700;
  flex: none;
}

/* ---------- 专业领域详情 ---------- */
.practice-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  color: var(--muted);
}

.practice-card h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.practice-card .card-icon {
  flex: none;
}

/* ==========================================================================
   页内 Hero（内页顶部横幅）
   ========================================================================== */
.page-hero {
  background: var(--hero-bg);
  color: var(--hero-text);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--hero-text);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--hero-muted);
  max-width: 620px;
  margin: 0;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--hero-muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--hero-text);
}

/* ==========================================================================
   页脚（由 components.js 注入）
   ========================================================================== */
.site-footer {
  background: var(--header-bg);
  color: var(--header-muted);
  padding: 64px 0 0;
}

.site-footer a {
  color: var(--header-muted);
}

.site-footer a:hover {
  color: var(--header-text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-col h4 {
  color: var(--header-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col li a {
  font-size: 0.92rem;
}

.footer-contact li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--header-muted);
}

/* ==========================================================================
   滚动显现动画
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   响应式
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-figure {
    order: -1;
  }
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: none;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
  .about-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-inner {
    padding: 56px 24px;
  }
  .hero-badge {
    left: 0;
    bottom: 20px;
  }
  .cta-band {
    padding: 40px 24px;
  }
}

/* ==========================================================================
   版式风格预览导航条（临时预览用，定稿后移除）
   ========================================================================== */
.style-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #14100e;
  color: #fff;
  font-size: 13px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.style-bar .lbl { opacity: 0.6; margin-right: 4px; flex-shrink: 0; }
.style-bar a {
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 5px 12px;
  border-radius: 99px;
  text-decoration: none;
  transition: 0.2s;
}
.style-bar a:hover { border-color: #fff; }
.style-bar a.is-current { background: #fff; color: #14100e; border-color: #fff; }
.site-header { position: static; }