/* ============================================================
   Cipher Legal — Main Stylesheet
   ============================================================ */

/* ── 1. Variables ─────────────────────────────────────────── */
:root {
  --dark:       #0a0a14;
  --dark-2:     #12121f;
  --dark-3:     #1c1c35;
  --dark-4:     #252545;
  --gold:       #c9a84c;
  --gold-light: #e4c470;
  --gold-pale:  rgba(201,168,76,0.08);
  --gold-border:rgba(201,168,76,0.2);
  --white:      #ffffff;
  --off-white:  #f8f7f2;
  --text:       #e2e2e2;
  --text-muted: #8a8a9a;
  --border:     rgba(255,255,255,0.07);
  --font-h:     'Playfair Display', Georgia, serif;
  --font-b:     'Inter', system-ui, sans-serif;
  --trans:      all 0.3s ease;
  --shadow:     0 12px 40px rgba(0,0,0,0.35);
  --radius:     4px;
  --container:  1240px;
  --header-h:   80px;
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--white);
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open, body.disclaimer-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── 3. Container ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── 4. Typography ────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-eyebrow--light { color: var(--gold); }
.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.section-title--white { color: var(--white); }
.section-subtitle {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-title { margin: 0 auto 1rem; }
.section-action { text-align: center; margin-top: 3rem; }
.lead-text { font-size: 1.125rem; font-weight: 500; color: #2a2a2a; line-height: 1.75; margin-bottom: 1.25rem; }
.entry-content { color: #333; line-height: 1.9; }
.entry-content h2, .entry-content h3 { font-family: var(--font-h); color: var(--dark); margin: 2rem 0 0.75rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content ul li { list-style: disc; margin-bottom: 0.4rem; }
.no-content-notice { background: var(--gold-pale); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 1.5rem 2rem; color: var(--text-muted); font-size: 0.95rem; text-align: center; width: 100%; }

/* ── 5. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: rgba(255,255,255,0.75); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline-light:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-outline-dark { background: transparent; color: #555; border: 1.5px solid #ccc; }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark-solid { background: var(--dark); color: var(--gold); border: 1.5px solid var(--dark); }
.btn-dark-solid:hover { background: transparent; color: var(--dark); }
.btn-full { width: 100%; justify-content: center; }

/* ── 6. Header ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(10,10,20,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.home-main ~ footer .site-header,
body:not(.home) .site-header { background: rgba(10,10,20,0.97); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.header-logo { flex-shrink: 0; }
.logo-img { height: 48px; width: auto; object-fit: contain; filter: brightness(0) invert(1);}

/* Nav */
.primary-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: var(--trans);
  white-space: nowrap;
}
.nav-link:hover, .nav-link:focus { color: var(--gold); }
.nav-arrow { transition: transform 0.25s ease; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }
.nav-cta-link {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-weight: 600;
}
.nav-cta-link:hover { background: var(--gold-light); color: var(--dark) !important; }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--dark-2);
  border: 1px solid var(--gold-border);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: var(--shadow);
  z-index: 200;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text);
  transition: var(--trans);
  border-left: 2px solid transparent;
}
.dropdown-menu li a span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.1rem;
}
.dropdown-menu li a:hover {
  color: var(--gold);
  background: var(--gold-pale);
  border-left-color: var(--gold);
}
.dropdown-wide { min-width: 220px; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background: var(--dark-2);
  z-index: 1100;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid var(--gold-border);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.mobile-logo { height: 36px; width: auto; }
.mobile-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--dark-3);
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--trans);
}
.mobile-close:hover { background: var(--gold); color: var(--dark); }
.mobile-nav { padding: 1rem 0 2rem; }
.mobile-nav-list { display: flex; flex-direction: column; }
.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-item > a, .mobile-nav-row > a {
  display: block;
  padding: 0.9rem 1.5rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  flex: 1;
  transition: color 0.2s;
}
.mobile-nav-item > a:hover, .mobile-nav-row > a:hover { color: var(--gold); }
.sub-toggle {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 1.25rem;
  margin-right: 0.5rem;
  transition: var(--trans);
}
.sub-toggle.open { transform: rotate(45deg); color: var(--gold); }
.mobile-sub {
  display: none;
  background: var(--dark-3);
  border-left: 2px solid var(--gold);
  margin: 0 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
}
.mobile-sub.open { display: block; }
.mobile-sub li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-sub li a:hover { color: var(--gold); }
.mobile-contact-item > a {
  color: var(--gold);
  font-weight: 600;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  backdrop-filter: blur(4px);
}
.mobile-overlay.show { display: block; }

/* ── 7. Disclaimer Modal ──────────────────────────────────── */
.disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,5,15,0.96);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  transition: opacity 0.4s ease;
}
.disclaimer-overlay.disclaimer-fade-out { opacity: 0; pointer-events: none; }
.disclaimer-modal {
  background: var(--dark-3);
  border: 1px solid var(--gold-border);
  border-top: 3px solid var(--gold);
  max-width: 660px;
  width: 100%;
  padding: 3rem 3.5rem;
  border-radius: var(--radius);
  text-align: center;
  animation: slideUp 0.4s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.disclaimer-logo-wrap { margin-bottom: 2rem; }
.disclaimer-logo { max-height: 52px; width: auto; margin: 0 auto; }
.disclaimer-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.75rem;
}
.disclaimer-title {
  font-family: var(--font-h);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.disclaimer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 2.25rem;
  text-align: left;
}
.disclaimer-text p { margin-bottom: 0.75rem; }
.disclaimer-text strong { color: var(--text); }
.disclaimer-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 8. Inner Banner ──────────────────────────────────────── */
.inner-banner {
  position: relative;
  min-height: 300px;
  background: var(--dark-2);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
  margin-top: var(--header-h);
}
.inner-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,20,0.92) 30%, rgba(10,10,20,0.5) 100%);
}
.inner-banner-overlay { display: none; }
.inner-banner-content { position: relative; z-index: 1; }
.inner-banner-breadcrumb {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.inner-banner-breadcrumb a { color: var(--gold); }
.inner-banner-breadcrumb span { margin: 0 0.5rem; color: var(--gold-border); }
.inner-banner-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.inner-banner-subtitle { color: var(--text-muted); font-size: 1rem; }

/* ── 9. Hero ──────────────────────────────────────────────── */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.hero-content-side {
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 3rem 4rem 4rem;
  position: relative;
  z-index: 1;
}
.hero-content-side::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--gold);
  padding-left: 0.75rem;
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-badges { display: flex; flex-direction: column; gap: 0.5rem; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.hero-image-side {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 50%, #0f1030 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}
.hero-decorative-box {
  position: absolute;
  border: 1px solid rgba(201,168,76,0.15);
}
.box-1 {
  width: 200px; height: 200px;
  top: 20%; right: 15%;
  transform: rotate(12deg);
}
.box-2 {
  width: 130px; height: 130px;
  bottom: 25%; left: 10%;
  transform: rotate(-8deg);
}
.hero-decorative-icon { opacity: 0.5; }
.hero-img-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.hero-image-frame {
  position: absolute;
  top: 2.5rem; right: -1.5rem;
  width: 85%; height: calc(100% - 4rem);
  border: 1.5px solid rgba(201,168,76,0.25);
  pointer-events: none;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ── 10. Stats Bar ────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(90deg, var(--dark-3), var(--dark-4), var(--dark-3));
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 2.5rem 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1rem 1.5rem;
}
.stat-number {
  display: block;
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--gold-border);
  flex-shrink: 0;
}

/* ── 11. About Section ────────────────────────────────────── */
.about-section {
  padding: 7rem 0;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-img-placeholder {
  background: var(--dark-3);
  height: 420px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
}
.about-img-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about-content-col .section-title { margin-top: 0.5rem; }
.about-desc { color: #555; line-height: 1.85; margin-bottom: 2rem; }
.about-desc p { margin-bottom: 1rem; }
.about-features { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.about-feature { display: flex; gap: 1rem; align-items: flex-start; }
.about-feature-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 0.1rem;
}
.about-feature strong { display: block; font-size: 0.95rem; color: #1a1a1a; margin-bottom: 0.25rem; }
.about-feature p { font-size: 0.875rem; color: #666; margin: 0; line-height: 1.6; }

/* ── 12. Practice Areas ───────────────────────────────────── */
.practice-section {
  padding: 7rem 0;
  background: var(--dark-2);
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.practice-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-3);
}
.practice-card-link { display: block; }
.practice-card-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.practice-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.practice-card:hover .practice-card-image img { transform: scale(1.06); }
.practice-card-no-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-3), #0d1530);
  display: flex;
  align-items: center;
  justify-content: center;
}
.practice-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(5,5,20,0.97) 0%, rgba(5,5,20,0.7) 60%, transparent 100%);
  transform: translateY(60px);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.practice-card:hover .practice-card-overlay { transform: translateY(0); }
.practice-card-title {
  font-family: var(--font-h);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.practice-card-excerpt {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease 0.1s;
}
.practice-card:hover .practice-card-excerpt { opacity: 1; }
.practice-card-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Practice Archive */
.practice-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.practice-archive-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.practice-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  border-color: var(--gold);
}
.practice-archive-img { height: 220px; overflow: hidden; background: var(--dark-3); }
.practice-archive-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.practice-archive-card:hover .practice-archive-img img { transform: scale(1.04); }
.practice-archive-img-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.practice-archive-body { padding: 1.5rem; }
.practice-archive-title { font-family: var(--font-h); font-size: 1.15rem; color: var(--dark); margin-bottom: 0.65rem; line-height: 1.3; }
.practice-archive-desc { font-size: 0.875rem; color: #666; line-height: 1.7; margin-bottom: 1.1rem; }
.practice-archive-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── 13. Business Sectors ─────────────────────────────────── */
.sectors-section {
  padding: 7rem 0;
  background: var(--off-white);
}
.sectors-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: center;
}
.sectors-img-wrap { position: relative; }
.sectors-main-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.sectors-img-placeholder {
  background: var(--dark-3);
  height: 460px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
}
.sectors-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--dark);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.sectors-badge-num { display: block; font-family: var(--font-h); font-size: 2rem; font-weight: 700; }
.sectors-badge-label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.sectors-desc { color: #666; line-height: 1.8; margin-bottom: 2rem; }
.sectors-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.sector-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  transition: var(--trans);
}
.sector-item:hover { border-color: var(--gold); color: var(--dark); background: var(--gold-pale); }
.sector-icon { flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.sector-icon img { width: 22px; height: 22px; object-fit: contain; }
.sector-icon--emoji { font-size: 1.1rem; }

/* Business Sectors Page */
.sectors-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.sector-page-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--trans);
}
.sector-page-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(201,168,76,0.12); }
.sector-page-icon { width: 52px; height: 52px; margin-bottom: 1.25rem; }
.sector-page-icon img { width: 100%; height: 100%; object-fit: contain; }
.sector-page-card h3 { font-family: var(--font-h); font-size: 1.1rem; color: var(--dark); margin-bottom: 0.65rem; }
.sector-page-card p { font-size: 0.875rem; color: #666; line-height: 1.7; }

/* ── 14. Key Contacts ─────────────────────────────────────── */
.contacts-section {
  padding: 7rem 0;
  background: var(--dark);
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.contact-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  position: relative;
}
.contact-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.contact-card-inner { display: block; }
.contact-photo-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
  background: var(--dark-4);
}
.contact-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s ease; }
.contact-card:hover .contact-photo { transform: scale(1.04); }
.contact-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
}
.contact-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.contact-card:hover .contact-photo-overlay { opacity: 1; }
.contact-info { padding: 1.25rem 1.25rem 1.5rem; }
.contact-name { font-family: var(--font-h); font-size: 1.05rem; color: var(--white); margin-bottom: 0.3rem; }
.contact-position { display: block; font-size: 0.78rem; color: var(--gold); font-weight: 500; margin-bottom: 0.75rem; }
.contact-arrow { color: var(--text-muted); transition: transform 0.3s ease, color 0.3s ease; }
.contact-card:hover .contact-arrow { transform: translateX(4px); color: var(--gold); }
.contact-linkedin {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 30px; height: 30px;
  background: rgba(10,102,194,0.9);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.contact-card:hover .contact-linkedin { opacity: 1; }

/* Team Archive */
.team-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.team-archive-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.team-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: var(--gold-border);
}
.team-card-photo-wrap { position: relative; height: 300px; background: var(--dark-3); overflow: hidden; }
.team-card-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
}
.team-card-linkedin {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 32px; height: 32px;
  background: rgba(10,102,194,0.9);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: opacity 0.3s;
}
.team-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.team-card-name { font-family: var(--font-h); font-size: 1.1rem; color: var(--dark); margin-bottom: 0.3rem; }
.team-card-name a { color: inherit; }
.team-card-name a:hover { color: var(--gold); }
.team-card-position { display: block; font-size: 0.78rem; color: var(--gold); font-weight: 500; margin-bottom: 1rem; }
.team-card-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.team-card-profile-link:hover { color: var(--gold); }

/* Team Single */
.team-single-layout { display: grid; grid-template-columns: 360px 1fr; gap: 4rem; padding: 4rem 0; }
.team-profile-card { background: var(--dark-3); border-radius: var(--radius); overflow: hidden; margin-bottom: 1.5rem; border: 1px solid var(--border); }
.team-profile-photo { height: 380px; background: var(--dark-4); overflow: hidden; }
.team-profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-profile-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--dark-3), var(--dark-4)); }
.team-profile-details { padding: 1.5rem; }
.team-profile-name { font-family: var(--font-h); font-size: 1.5rem; color: var(--white); margin-bottom: 0.3rem; }
.team-profile-position { display: block; font-size: 0.85rem; color: var(--gold); font-weight: 500; margin-bottom: 1.25rem; }
.team-profile-contacts { display: flex; flex-direction: column; gap: 0.65rem; }
.team-contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
  word-break: break-all;
}
.team-contact-link:hover { color: var(--gold); }

/* ── 15. Single Post Layout ───────────────────────────────── */
.single-layout { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; padding: 4rem 0; }
.single-content { min-width: 0; }
.single-related-team { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid #eee; }
.single-related-title { font-family: var(--font-h); font-size: 1.25rem; color: var(--dark); margin-bottom: 1.5rem; }
.mini-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.mini-team-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--off-white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  transition: var(--trans);
}
.mini-team-card:hover { border-color: var(--gold); }
.mini-team-card img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; flex-shrink: 0; }
.mini-team-placeholder { width: 44px; height: 44px; background: var(--dark-3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mini-team-info strong { display: block; font-size: 0.82rem; color: var(--dark); }
.mini-team-info span { font-size: 0.72rem; color: #888; }

/* Sidebar */
.single-sidebar { }
.sidebar-widget { background: var(--off-white); border: 1px solid #eee; border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-widget-title { font-family: var(--font-h); font-size: 1rem; color: var(--dark); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid #eee; }
.sidebar-practice-list li a { display: block; padding: 0.45rem 0; font-size: 0.85rem; color: #555; border-bottom: 1px solid #f0f0f0; transition: color 0.2s; }
.sidebar-practice-list li a:hover { color: var(--gold); }
.sidebar-practice-list li.active a { color: var(--gold); font-weight: 600; }
.sidebar-cta-widget { background: var(--dark-3); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.sidebar-cta-widget p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1rem; }

/* ── 16. CTA Banner ───────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, #b8943f 40%, #a07830 100%);
}
.cta-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.cta-banner-icon { color: rgba(0,0,0,0.2); }
.cta-banner-title {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--dark);
  max-width: 700px;
  line-height: 1.25;
}

/* ── 17. Footer ───────────────────────────────────────────── */
.site-footer { background: var(--dark-2); }
.footer-main { padding: 5rem 0 3.5rem; border-bottom: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.75fr;
  gap: 3rem;
}
.footer-logo { max-height: 44px; width: auto; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; max-width: 280px; margin-bottom: 1.5rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: var(--trans);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer-heading {
  font-family: var(--font-h);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold-border);
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links li a::before { content: '›'; color: var(--gold); }
.footer-links li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-contact-item a { color: var(--text-muted); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-btn { margin-top: 1.25rem; font-size: 0.82rem; padding: 0.65rem 1.5rem; }
.footer-bottom { padding: 1.5rem 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--gold); }

/* ── 18. Inner Pages ──────────────────────────────────────── */
.inner-main { padding: 5rem 0; }
.page-content { max-width: 860px; margin: 0 auto; }

/* About Page */
.about-page-intro { padding: 6rem 0; background: var(--white); }
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.stacked-imgs { height: 420px; background: var(--dark-3); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.82rem; }
.about-page-content .section-title { margin-top: 0.5rem; }

.values-section { padding: 6rem 0; background: var(--dark-2); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--trans);
  border-top: 3px solid transparent;
}
.value-card:hover { border-top-color: var(--gold); transform: translateY(-4px); }
.value-icon { color: var(--gold); margin-bottom: 1.25rem; }
.value-card h3 { font-family: var(--font-h); color: var(--white); margin-bottom: 0.75rem; font-size: 1.15rem; }
.value-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* Contact Page */
.contact-section { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-intro { color: #666; margin-bottom: 2rem; line-height: 1.8; }
.contact-details { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-item strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: #888; margin-bottom: 0.3rem; }
.contact-detail-item p { font-size: 0.9rem; color: #444; margin: 0; }
.contact-detail-item a { color: #444; transition: color 0.2s; }
.contact-detail-item a:hover { color: var(--gold); }
.contact-map { margin-top: 1.5rem; border-radius: var(--radius); overflow: hidden; border: 1px solid #eee; }
.contact-map iframe { width: 100%; height: 240px; border: none; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.contact-form-wrap h3 { font-family: var(--font-h); font-size: 1.4rem; color: var(--dark); margin-bottom: 1.75rem; padding-bottom: 1rem; border-bottom: 1px solid #eee; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: #444; margin-bottom: 0.45rem; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group label span { color: var(--gold); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: #333;
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-disclaimer { font-size: 0.82rem; }
.checkbox-label { display: flex; gap: 0.75rem; align-items: flex-start; color: #666; cursor: pointer; }
.checkbox-label input { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.form-notice { margin-top: 1rem; padding: 1rem; border-radius: var(--radius); font-size: 0.875rem; }
.form-notice.success { background: #d4edda; color: #155724; }
.form-notice.error { background: #f8d7da; color: #721c24; }

/* Publications */
.pub-filter-bar { display: flex; gap: 0.75rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.pub-filter-btn { padding: 0.5rem 1.25rem; border-radius: 50px; border: 1.5px solid #ddd; font-size: 0.82rem; font-weight: 600; color: #666; transition: var(--trans); cursor: pointer; }
.pub-filter-btn.active, .pub-filter-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }
.pub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pub-card { background: var(--white); border: 1px solid #eee; border-radius: var(--radius); padding: 2rem; transition: var(--trans); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.pub-card:hover { border-color: var(--gold-border); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.pub-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.pub-category { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); background: var(--gold-pale); padding: 0.25rem 0.65rem; border-radius: 50px; }
.pub-date { font-size: 0.78rem; color: var(--text-muted); }
.pub-title { font-family: var(--font-h); font-size: 1.1rem; color: var(--dark); margin-bottom: 0.75rem; line-height: 1.35; }
.pub-title a { color: inherit; transition: color 0.2s; }
.pub-title a:hover { color: var(--gold); }
.pub-excerpt { font-size: 0.875rem; color: #666; line-height: 1.7; margin-bottom: 1rem; }
.pub-dl-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.04em;
  transition: gap 0.2s;
}
.pub-dl-link:hover { gap: 0.7rem; }

/* Pagination */
.nav-links { display: flex; gap: 0.5rem; justify-content: center; margin-top: 3rem; }
.nav-links a, .nav-links span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: #555;
  transition: var(--trans);
}
.nav-links a:hover, .nav-links .current { border-color: var(--gold); background: var(--gold); color: var(--dark); }

/* ── 19. Scroll Animations ────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-up    { transform: translateY(30px); }
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}
.archive-section { padding: 5rem 0; }

/* ── 20. Responsive ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .contacts-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .team-archive-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  :root { --header-h: 70px; }
  .primary-nav { display: none; }
  .mobile-toggle { display: flex; }
  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-side { height: 50vw; min-height: 320px; }
  .hero-content-side { padding: calc(var(--header-h) + 2.5rem) 2rem 3rem; }
  .hero-image-frame { display: none; }
  .about-grid, .about-page-grid, .sectors-grid, .contact-grid, .team-single-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { display: none; }
  .sectors-badge { bottom: 1rem; right: 1rem; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: repeat(2, 1fr); }
  .team-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .team-single-layout { grid-template-columns: 1fr; }
  .single-layout { grid-template-columns: 1fr; }
  .mini-team-grid { grid-template-columns: repeat(2, 1fr); }
  .pub-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .sectors-list { grid-template-columns: 1fr; }
  .disclaimer-modal { padding: 2rem 1.5rem; }
  .stat-divider { display: none; }
  .stats-grid { gap: 0.5rem; }
  .stat-item { min-width: 130px; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-content-side { padding: calc(var(--header-h) + 2rem) 1.5rem 2.5rem; }
  .hero-actions { flex-direction: column; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-archive-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: repeat(2, 1fr); }
  .team-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .pub-grid { grid-template-columns: 1fr; }
  .footer-legal-links { flex-direction: column; gap: 0.5rem; }
  .mini-team-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .about-section, .practice-section, .sectors-section, .contacts-section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
}

/* ── Legal Pages (Disclaimer, T&C) ───────────────────────── */
.legal-section { padding: 5rem 0; background: var(--off-white); }
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 4rem; align-items: start; }
.legal-sidebar { position: sticky; top: calc(var(--header-h) + 2rem); }
.legal-toc { background: var(--white); border: 1px solid #eee; border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.legal-toc h4 { font-family: var(--font-h); font-size: 0.95rem; color: var(--dark); margin-bottom: 1rem; padding-bottom: 0.65rem; border-bottom: 1px solid #eee; }
.legal-toc ul { display: flex; flex-direction: column; gap: 0.3rem; }
.legal-toc ul li a { font-size: 0.82rem; color: #666; transition: color 0.2s; padding: 0.2rem 0; display: block; }
.legal-toc ul li a:hover { color: var(--gold); }
.legal-sidebar-cta { background: var(--dark-3); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.legal-sidebar-cta p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.legal-content { background: var(--white); border: 1px solid #eee; border-radius: var(--radius); padding: 3rem; }
.legal-updated { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2rem; }
.legal-intro { font-size: 1rem; color: #444; line-height: 1.85; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #eee; font-weight: 500; }
.legal-content section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid #f0f0f0; }
.legal-content section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.legal-content h2 { font-family: var(--font-h); font-size: 1.3rem; color: var(--dark); margin-bottom: 1rem; }
.legal-content p { font-size: 0.9rem; color: #555; line-height: 1.85; margin-bottom: 0.85rem; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { list-style: disc; font-size: 0.9rem; color: #555; line-height: 1.75; margin-bottom: 0.4rem; }
.legal-content a { color: var(--gold); }
.legal-contact-block { background: var(--off-white); border: 1px solid #eee; border-radius: var(--radius); padding: 1.25rem 1.5rem; font-size: 0.875rem; color: #555; line-height: 1.85; margin-top: 1rem; }
.legal-contact-block a { color: var(--gold); }
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .legal-toc { display: none; }
}

@media (max-width: 480px) {
  .contacts-grid { grid-template-columns: 1fr; }
  .team-archive-grid { grid-template-columns: 1fr; }
  .disclaimer-actions { flex-direction: column; }
  .disclaimer-actions .btn { width: 100%; justify-content: center; }
}
