/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand palette */
  --ink: #0e1726;
  --ink-2: #15203a;
  --ink-deep: #1f3a36;
  --bg: #f7f4ee;
  --surface: #fdfbf7;
  --surface-2: #efe9de;
  --accent: #a47148;
  --accent-soft: #cda57a;
  --accent-faint: rgba(164, 113, 72, 0.18);
  --text: #23201c;
  --muted: #6b6258;
  --hairline: rgba(35, 32, 28, 0.10);
  --hairline-on-dark: rgba(205, 165, 122, 0.18);

  /* Legacy aliases (kept so inline style="var(--gray-600)" etc. keep working) */
  --navy: var(--ink);
  --gold: var(--accent);
  --gold-light: var(--accent-soft);
  --gold-dark: #8c5e3a;
  --cream: var(--bg);
  --cream-dark: var(--surface-2);
  --warm-gray: var(--hairline);
  --gray-400: var(--muted);
  --gray-600: var(--muted);
  --charcoal: var(--text);
  --white: var(--surface);
  --teal: var(--accent);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-heading: 'Cormorant Garamond', 'Iowan Old Style', 'Apple Garamond', Baskerville, Georgia, serif;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(14, 23, 38, 0.04);
  --shadow-md: 0 1px 2px rgba(14, 23, 38, 0.04), 0 12px 32px rgba(14, 23, 38, 0.06);
  --shadow-lg: 0 1px 2px rgba(14, 23, 38, 0.05), 0 24px 48px rgba(14, 23, 38, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Header / Nav ===== */
header {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--hairline-on-dark);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 500;
  color: #f5ede1;
  letter-spacing: 1.5px;
  line-height: 1;
}

.logo .brand-mark {
  width: 30px;
  height: 30px;
  color: var(--accent-soft);
  flex-shrink: 0;
}

.logo span {
  color: var(--accent-soft);
  font-weight: 400;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  color: rgba(245, 237, 225, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-soft);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent-soft); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  margin-right: 16px;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(205, 165, 122, 0.3);
  color: rgba(245, 237, 225, 0.78);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 5px 11px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.lang-btn:hover { border-color: var(--accent-soft); color: var(--accent-soft); }

.lang-btn.active {
  background: var(--accent-soft);
  color: var(--ink);
  border-color: var(--accent-soft);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--accent-soft);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== Hero (now light, editorial) ===== */
.hero {
  background:
    radial-gradient(ellipse at top, rgba(164, 113, 72, 0.05) 0%, transparent 65%),
    var(--bg);
  color: var(--text);
  padding: 140px 24px 120px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 32px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 16px 38px;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  border: none;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--accent);
  color: #fdfbf7;
  box-shadow: 0 4px 16px rgba(164, 113, 72, 0.22);
}

.btn-primary:hover {
  background: #8c5e3a;
  box-shadow: 0 6px 20px rgba(164, 113, 72, 0.30);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fdfbf7;
}

/* ===== Sections ===== */
section {
  padding: 112px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: -0.005em;
  color: var(--ink);
  padding-top: 28px;
  position: relative;
  line-height: 1.2;
}

.section-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 64px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.bg-light { background: var(--surface-2); }

/* ===== Cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--surface);
  border-radius: 8px;
  padding: 56px 40px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card-icon { margin-bottom: 28px; }

.card-icon svg {
  width: 38px;
  height: 38px;
  stroke: var(--accent);
  stroke-width: 1.2;
  fill: none;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--ink);
  line-height: 1.25;
}

.card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

/* ===== Trust / Why Us ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  text-align: center;
}

.trust-item h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
}

.trust-item p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.trust-icon {
  width: 64px;
  height: 64px;
  background: var(--surface);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--hairline);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.trust-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  stroke-width: 1.2;
  fill: none;
}

/* ===== Services Page (editorial 2-col) ===== */
.service-detail {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 88px;
  padding-top: 56px;
  border-top: 1px solid var(--hairline);
}

.service-detail:first-of-type {
  border-top: none;
  padding-top: 0;
}

.service-detail:last-child { margin-bottom: 0; }

.service-detail::before {
  content: attr(data-num);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
}

.service-detail h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 22px;
  color: var(--ink);
  line-height: 1.2;
}

.service-detail > div > p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.85;
  font-size: 1.05rem;
  max-width: 660px;
}

.service-detail ul {
  list-style: none;
  padding-left: 0;
  color: var(--muted);
  max-width: 660px;
}

.service-detail ul li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  font-size: 0.98rem;
  line-height: 1.7;
}

.service-detail ul li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step {
  text-align: center;
  padding: 32px 16px;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--accent);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 auto 22px;
}

.step h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.step p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ===== About Page ===== */
.about-intro {
  max-width: 760px;
  margin: 0 auto;
}

.about-intro h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 28px;
  color: var(--ink);
  line-height: 1.2;
}

.about-intro p {
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.85;
  font-size: 1.05rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.credential {
  background: var(--surface);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.credential-icon { margin-bottom: 18px; }

.credential-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--accent);
  stroke-width: 1.2;
  fill: none;
}

.credential h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.credential p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 24px;
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}

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

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

.contact-info-card {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #f5ede1;
  border-radius: 8px;
  padding: 52px 44px;
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 32px;
  color: #f5ede1;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-item-icon { margin-top: 2px; }

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-soft);
  stroke-width: 1.2;
  fill: none;
}

.contact-item h4 {
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(245, 237, 225, 0.65);
}

.contact-item p {
  color: rgba(245, 237, 225, 0.92);
  font-size: 0.98rem;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #f5ede1;
  text-align: center;
  padding: 96px 24px;
  position: relative;
}

.cta-banner::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent-soft);
  margin: 0 auto 28px;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 18px;
  color: #f5ede1;
}

.cta-banner p {
  color: rgba(245, 237, 225, 0.78);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-size: 1.02rem;
}

/* ===== Footer ===== */
footer {
  background: linear-gradient(135deg, var(--ink) 0%, #0a1220 100%);
  color: rgba(245, 237, 225, 0.62);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 18px;
  display: inline-flex;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(245, 237, 225, 0.62);
  max-width: 360px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--accent-soft);
  margin-bottom: 20px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  color: rgba(245, 237, 225, 0.62);
  font-size: 0.92rem;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-soft); }

.footer-contact p {
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: rgba(245, 237, 225, 0.62);
}

.footer-bottom {
  border-top: 1px solid rgba(205, 165, 122, 0.12);
  padding-top: 28px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245, 237, 225, 0.45);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .lang-switcher { margin-right: 16px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 28px;
    gap: 22px;
    border-top: 1px solid var(--hairline-on-dark);
  }

  .nav-links.open { display: flex; }

  .logo { font-size: 1.25rem; letter-spacing: 1px; gap: 10px; }
  .logo .brand-mark { width: 26px; height: 26px; }

  .hero { padding: 88px 20px 80px; }
  .hero h1 { font-size: 2.4rem; }
  .hero p { font-size: 1rem; }

  .section-title { font-size: 1.9rem; }

  .card-grid,
  .trust-grid,
  .credentials-grid { grid-template-columns: 1fr; }

  .card { padding: 44px 32px; }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 44px;
    margin-bottom: 56px;
  }

  .service-detail::before { font-size: 1.7rem; }
  .service-detail h3 { font-size: 1.65rem; }

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

  .about-intro h2 { font-size: 1.9rem; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { padding: 40px 32px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  section { padding: 72px 0; }

  .cta-banner { padding: 72px 20px; }
  .cta-banner h2 { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .hero { padding: 72px 16px 64px; }
  .hero h1 { font-size: 2rem; }
  .process-steps { grid-template-columns: 1fr; }
  .section-title { font-size: 1.7rem; }
}

/* ===== Per-practice color themes =====
   Applied via body class on each detail page. The whole page's
   --accent / --accent-soft retint, giving each practice its own
   visual identity. The AI page uses the default copper. */
body.theme-security {
  --accent: #1f3a36;          /* deep forest */
  --accent-soft: #5a7d78;
  --accent-faint: rgba(31, 58, 54, 0.18);
}

body.theme-applications {
  --accent: #3d556e;          /* muted slate-blue */
  --accent-soft: #7d96ad;
  --accent-faint: rgba(61, 85, 110, 0.18);
}

/* ===== "Explore" link on services overview ===== */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--practice-tint, var(--accent));
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--practice-tint, var(--accent));
  padding-bottom: 6px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}

.service-link::after {
  content: '\2192';            /* → */
  display: inline-block;
  transition: transform 0.2s;
}

.service-link:hover {
  gap: 14px;
}

.service-link:hover::after {
  transform: translateX(4px);
}

.service-link.is-security    { --practice-tint: #1f3a36; }
.service-link.is-ai          { --practice-tint: #a47148; }
.service-link.is-applications{ --practice-tint: #3d556e; }

/* ===== Practice detail page hero ===== */
.practice-hero {
  background:
    radial-gradient(ellipse at top, var(--accent-faint) 0%, transparent 60%),
    var(--bg);
  text-align: center;
  padding: 96px 24px 104px;
  position: relative;
}

.practice-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  padding: 6px 0;
  transition: color 0.2s;
}

.practice-breadcrumb::before {
  content: '\2190';            /* ← */
  color: var(--accent);
  transition: transform 0.2s;
}

.practice-breadcrumb:hover {
  color: var(--accent);
}

.practice-breadcrumb:hover::before {
  transform: translateX(-4px);
}

.practice-eyebrow {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 28px;
}

.practice-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.practice-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== Sub-practice cards (used inside detail pages) ===== */
.subpractice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

.subpractice {
  background: var(--surface);
  border-radius: 8px;
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid var(--accent);
}

.subpractice:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.subpractice-icon { margin-bottom: 22px; }

.subpractice-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--accent);
  stroke-width: 1.2;
  fill: none;
}

.subpractice h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--ink);
  line-height: 1.25;
}

.subpractice > p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.subpractice ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}

.subpractice ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.subpractice ul li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ===== Industries strip (apps page) ===== */
.industries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.industry {
  background: var(--surface);
  border-radius: 6px;
  padding: 22px 20px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--hairline);
  transition: color 0.2s, box-shadow 0.2s;
}

.industry:hover {
  color: var(--ink);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--accent);
}

@media (max-width: 768px) {
  .subpractice-grid,
  .subpractice-grid.is-three { grid-template-columns: 1fr; }
  .practice-hero { padding: 64px 20px 72px; }
  .practice-hero h1 { font-size: 2.2rem; }
  .subpractice { padding: 36px 28px; }
  .subpractice h3 { font-size: 1.3rem; }
}
