/* ============================================================
   律师个人网站 - 主样式表
   设计风格：高端律所 · 深色简约 · 专业权威
   ============================================================ */

/* ── CSS 变量 ── */
:root {
  --primary:     #1a3c5e;   /* 深海蓝 */
  --primary-lt:  #2a527e;
  --gold:        #c9a84c;   /* 金色点缀 */
  --gold-lt:     #e5c97e;
  --dark:        #111827;
  --dark-2:      #1f2937;
  --dark-3:      #374151;
  --mid:         #6b7280;
  --light:       #f9fafb;
  --white:       #ffffff;
  --text:        #1f2937;
  --text-light:  #6b7280;
  --border:      #e5e7eb;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.15);
  --transition:  .3s ease;
  --container:   1200px;
  --header-h:    72px;
  --font-serif:  'Noto Serif SC', 'SimSun', serif;
  --font-sans:   'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── 容器 ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── 通用按钮 ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: .95rem; font-weight: 500; letter-spacing: .02em;
  transition: var(--transition); cursor: pointer;
}
.btn-primary {
  background: var(--gold); color: var(--dark);
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.7); color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-outline-dark {
  border: 2px solid var(--primary); color: var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────────
   Header
───────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(17,24,39,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo { display: flex; flex-direction: column; line-height: 1.15; }
.logo-cn { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; color: var(--white); letter-spacing: .1em; }
.logo-en { font-size: .6rem; font-weight: 300; color: var(--gold); letter-spacing: .2em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 6px 14px; font-size: .88rem; font-weight: 400;
  color: rgba(255,255,255,.85); border-radius: var(--radius);
  transition: var(--transition); letter-spacing: .04em;
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.main-nav .nav-cta {
  background: var(--gold); color: var(--dark); font-weight: 600; margin-left: 8px;
}
.main-nav .nav-cta:hover { background: var(--gold-lt); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ─────────────────────────────────────────────────
   Hero
───────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/uploads/cover.jpg') center/cover no-repeat,
              linear-gradient(135deg, #0d1b2e 0%, #1a3c5e 50%, #0a1628 100%);
  background-size: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.88) 0%, rgba(26,60,94,.7) 50%, rgba(10,22,40,.92) 100%);
}
.hero-content {
  position: relative; text-align: center; color: var(--white);
  max-width: 780px;
}
.hero-badge {
  display: inline-block; margin-bottom: 20px;
  padding: 6px 18px; border: 1px solid var(--gold);
  font-size: .78rem; letter-spacing: .18em; color: var(--gold); text-transform: uppercase;
  border-radius: 30px;
}
.hero-name {
  font-family: var(--font-serif); font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700; letter-spacing: .12em; line-height: 1.2; margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(1rem, 2.5vw, 1.25rem); font-weight: 300;
  letter-spacing: .08em; color: rgba(255,255,255,.85); margin-bottom: 6px;
}
.hero-firm {
  font-size: .9rem; color: var(--gold); letter-spacing: .1em; margin-bottom: 20px;
}
.hero-bio {
  font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,.75);
  max-width: 580px; margin: 0 auto 32px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; gap: 0; justify-content: center;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 32px;
}
.stat { padding: 0 32px; text-align: center; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.15); }
.stat strong { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat span { font-size: .8rem; color: rgba(255,255,255,.65); letter-spacing: .06em; }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .8rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ─────────────────────────────────────────────────
   通用 section
───────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .22em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600; color: var(--dark); margin-bottom: 14px;
}
.section-subtitle { font-size: .95rem; color: var(--text-light); max-width: 520px; margin: 0 auto; }
.section-footer { text-align: center; margin-top: 48px; }

/* ─────────────────────────────────────────────────
   业务领域
───────────────────────────────────────────────── */
.practice-section { background: var(--light); }
.practice-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px;
}
.practice-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 24px;
  text-align: center; box-shadow: var(--shadow);
  transition: var(--transition); cursor: default;
  border-top: 3px solid var(--accent);
}
.practice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.practice-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem;
}
.practice-card h3 { font-size: 1rem; font-weight: 600; color: var(--dark); }
a.practice-card {
  text-decoration: none; display: block; cursor: pointer;
}
a.practice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ─────────────────────────────────────────────────
   荣誉跑马灯
───────────────────────────────────────────────── */
.awards-section {
  background: var(--dark); overflow: hidden; padding: 20px 0;
}
.awards-inner { display: flex; align-items: center; gap: 0; }
.awards-label {
  flex-shrink: 0; padding: 0 32px;
  font-size: .75rem; font-weight: 600; letter-spacing: .15em;
  color: var(--gold); text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.15);
}
.awards-track {
  display: flex; gap: 48px; overflow: hidden;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.award-item {
  flex-shrink: 0; color: rgba(255,255,255,.75); font-size: .88rem;
}
.award-item i { color: var(--gold); margin-right: 8px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────
   文章
───────────────────────────────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); transition: var(--transition);
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-image { height: 200px; overflow: hidden; background: var(--light); }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover .article-image img { transform: scale(1.05); }
.article-image-link { display: block; text-decoration: none; }
.article-image-link:hover .article-image img { transform: scale(1.05); }
.article-image--placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--primary); opacity: .3;
}
.article-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.article-cat {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  color: var(--white); background: var(--primary);
  padding: 2px 10px; border-radius: 20px;
}
.article-date { font-size: .78rem; color: var(--text-light); }
.article-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; line-height: 1.5; }
.article-title a:hover { color: var(--primary); }
.article-summary { font-size: .88rem; color: var(--text-light); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.article-read { font-size: .85rem; color: var(--primary); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.article-read i { transition: transform .2s; }
.article-read:hover i { transform: translateX(4px); }

/* ─────────────────────────────────────────────────
   视频
───────────────────────────────────────────────── */
.videos-section { background: var(--dark); }
.videos-section .section-tag { color: var(--gold); }
.videos-section .section-title { color: var(--white); }
.videos-section .section-subtitle { color: rgba(255,255,255,.65); }
.videos-section .btn-outline-dark { border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.8); }
.videos-section .btn-outline-dark:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }

.videos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.video-card { cursor: pointer; }
.video-thumb {
  position: relative; aspect-ratio: 16/9; background: var(--dark-2);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 14px;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-thumb-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,.15);
}
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(201,168,76,.9); color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); padding-left: 3px;
}
.video-card:hover .video-play-btn { background: var(--gold); transform: translate(-50%,-50%) scale(1.1); }
.video-duration {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.75); color: var(--white);
  font-size: .72rem; padding: 2px 8px; border-radius: 4px; letter-spacing: .04em;
}
.video-title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 6px; line-height: 1.5; }
.video-desc { font-size: .84rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* 视频弹窗 */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.85); align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.video-modal-inner {
  position: relative; width: 90vw; max-width: 900px;
  background: #000; border-radius: var(--radius-lg); overflow: hidden;
}
.video-modal-inner iframe { width: 100%; aspect-ratio: 16/9; display: block; border: 0; }
.modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.6); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}

/* ─────────────────────────────────────────────────
   典型案例
───────────────────────────────────────────────── */
.cases-section { background: var(--light); }
.cases-list { display: flex; flex-direction: column; gap: 16px; }
.case-item {
  display: flex; align-items: flex-start; gap: 24px;
  background: var(--white); padding: 28px 32px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border-left: 4px solid var(--primary);
  transition: var(--transition);
}
.case-item:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.case-type {
  flex-shrink: 0; padding: 4px 14px; border-radius: 20px;
  background: var(--primary); color: var(--white);
  font-size: .75rem; font-weight: 600; letter-spacing: .06em; white-space: nowrap;
}
.case-main { flex: 1; }
.case-main h3 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.case-main p { font-size: .88rem; color: var(--text-light); line-height: 1.65; }
.case-result span {
  white-space: nowrap; font-size: .82rem; font-weight: 600;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 4px 14px; border-radius: 20px;
}

/* ─────────────────────────────────────────────────
   朋友圈动态
───────────────────────────────────────────────── */
.moments-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px;
}
.moment-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow); transition: var(--transition);
}
.moment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.moment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.moment-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.moment-name { font-weight: 600; font-size: .92rem; color: var(--dark); }
.moment-time { font-size: .78rem; color: var(--text-light); }
.moment-content { font-size: .92rem; line-height: 1.75; color: var(--text); margin-bottom: 14px; }
.moment-images {
  display: grid; gap: 4px; margin-bottom: 14px;
  border-radius: var(--radius); overflow: hidden;
}
.moment-images.count-1 { grid-template-columns: 1fr; }
.moment-images.count-2, .moment-images.count-4 { grid-template-columns: repeat(2, 1fr); }
.moment-images.count-3, .moment-images.count-6, .moment-images.count-9 { grid-template-columns: repeat(3, 1fr); }
.moment-images img { aspect-ratio: 1; object-fit: cover; cursor: pointer; width: 100%; }
.moment-link {
  display: flex; align-items: center; gap: 10px; padding: 12px;
  background: var(--light); border-radius: var(--radius); margin-bottom: 14px;
  font-size: .84rem; color: var(--text);
}
.moment-link img { width: 48px; height: 48px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.moment-link span { flex: 1; line-height: 1.4; }
.moment-link i { color: var(--text-light); font-size: .8rem; }
.moment-footer { display: flex; gap: 16px; padding-top: 12px; border-top: 1px solid var(--border); }
.moment-like {
  font-size: .82rem; color: var(--text-light); cursor: pointer; display: flex; align-items: center; gap: 5px;
  transition: var(--transition);
}
.moment-like:hover, .moment-like.liked { color: var(--primary); }
.moment-like.liked i { font-weight: 900; }

/* ─────────────────────────────────────────────────
   联系
───────────────────────────────────────────────── */
.contact-section { background: var(--primary); }
.contact-section .section-tag { color: var(--gold); }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif); font-size: 2rem;
  color: var(--white); margin-bottom: 16px;
}
.contact-info > p { color: rgba(255,255,255,.75); margin-bottom: 28px; line-height: 1.75; }
.contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.85); font-size: .92rem; }
.contact-list i { width: 20px; color: var(--gold); }
.wechat-qr { display: flex; align-items: center; gap: 12px; }
.wechat-qr img { width: 80px; height: 80px; border-radius: 8px; border: 2px solid rgba(255,255,255,.2); }
.wechat-qr span { font-size: .8rem; color: rgba(255,255,255,.55); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .83rem; font-weight: 500; color: var(--dark); }
.form-group input, .form-group textarea {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 10px 14px; font-size: .9rem; font-family: inherit;
  transition: border-color var(--transition); outline: none; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
#form-result { margin-top: 12px; font-size: .88rem; text-align: center; }

/* ─────────────────────────────────────────────────
   Footer
───────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 64px 0 28px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-logo { font-family: var(--font-serif); font-size: 1.3rem; color: var(--white); font-weight: 600; margin-bottom: 12px; }
.footer-brand p { font-size: .85rem; line-height: 1.75; }
.footer-links h4 { color: var(--white); font-size: .88rem; font-weight: 600; margin-bottom: 16px; letter-spacing: .06em; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; font-size: .82rem; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────────
   灯箱
───────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center; cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; border-radius: var(--radius); }

/* ─────────────────────────────────────────────────
   文章详情页
───────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: calc(var(--header-h) + 56px) 24px 56px;
  text-align: center; color: var(--white);
}
.page-hero .article-cat { display: inline-block; margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700; max-width: 800px; margin: 0 auto 16px; line-height: 1.4;
}
.page-hero .meta { font-size: .88rem; color: rgba(255,255,255,.6); display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.article-content-wrap { max-width: 780px; margin: 64px auto; padding: 0 24px; }
.article-content { font-size: 1rem; line-height: 1.9; color: var(--text); }
.article-content h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--dark); margin: 2em 0 .8em; border-left: 4px solid var(--primary); padding-left: 14px; }
.article-content h3 { font-size: 1.2rem; font-weight: 600; color: var(--dark); margin: 1.5em 0 .6em; }
.article-content p { margin-bottom: 1.2em; }
.article-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0; }
.article-content video { max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0; display: block; }
.article-content iframe { max-width: 100%; border-radius: 8px; display: block; margin: 16px auto; }
.article-content blockquote { border-left: 3px solid var(--gold); padding: 12px 20px; background: var(--light); margin: 1.5em 0; color: var(--text-light); border-radius: 0 var(--radius) var(--radius) 0; }

/* ─────────────────────────────────────────────────
   响应式
───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 16px 0 24px;
    background: rgba(17,24,39,.97); backdrop-filter: blur(12px);
    transform: translateY(-120%); transition: transform var(--transition);
    z-index: 999;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { width: 100%; padding: 12px 24px; text-align: left; font-size: .95rem; }
  .main-nav .nav-cta { margin: 8px 24px 0; width: calc(100% - 48px); justify-content: center; }
  .nav-toggle { display: flex; }

  .hero-stats { flex-wrap: wrap; }
  .stat { min-width: 50%; }

  .articles-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .case-item { flex-direction: column; gap: 12px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-name { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .practice-grid { grid-template-columns: 1fr; }
  .moments-grid { grid-template-columns: 1fr; }
}
