/*
Theme Name: 신결 법률대응 Premium
Theme URI: https://법무법인.변호사.org
Author: Law Firm Singyeol
Description: 법무법인 신결의 사건별 법률대응 정보 사이트를 위한 전용 경량 테마
Version: 5.4.9
Requires at least: 6.5
Requires PHP: 8.0
Text Domain: singyeol-law
*/

:root {
  --sg-navy-950: #050e19;
  --sg-navy-900: #081727;
  --sg-navy-850: #0c1d31;
  --sg-navy-800: #10253e;
  --sg-navy-700: #1a3858;
  --sg-ink: #172232;
  --sg-slate: #5b6675;
  --sg-muted: #8993a0;
  --sg-line: #dce1e6;
  --sg-line-dark: rgba(255, 255, 255, 0.14);
  --sg-paper: #f5f3ee;
  --sg-ivory: #fbfaf7;
  --sg-white: #ffffff;
  --sg-gold: #b49b6c;
  --sg-gold-light: #dac89f;
  --sg-teal: #63c7c7;
  --sg-danger: #a23c42;
  --sg-shadow-sm: 0 10px 30px rgba(5, 14, 25, 0.08);
  --sg-shadow-lg: 0 24px 70px rgba(5, 14, 25, 0.16);
  --sg-radius-sm: 6px;
  --sg-radius-md: 14px;
  --sg-radius-lg: 24px;
  --sg-container: 1280px;
  --sg-gutter: clamp(20px, 4vw, 56px);
  --sg-section: clamp(72px, 10vw, 144px);
  --sg-header-height: 84px;
  --sg-font-sans: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  --sg-font-serif: "Iowan Old Style", "Times New Roman", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--sg-header-height) + 24px);
}

body {
  margin: 0;
  color: var(--sg-ink);
  background: var(--sg-white);
  font-family: var(--sg-font-sans);
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: -0.018em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.sg-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--sg-navy-950);
  background: var(--sg-gold-light);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--sg-white);
  background: var(--sg-navy-900);
}

.sg-container {
  width: min(100% - (var(--sg-gutter) * 2), var(--sg-container));
  margin-inline: auto;
}

.sg-narrow {
  width: min(100% - (var(--sg-gutter) * 2), 860px);
  margin-inline: auto;
}

.sg-section {
  padding-block: var(--sg-section);
}

.sg-section--paper {
  background: var(--sg-paper);
}

.sg-section--navy {
  color: var(--sg-white);
  background:
    radial-gradient(circle at 85% 12%, rgba(99, 199, 199, 0.09), transparent 26%),
    linear-gradient(135deg, var(--sg-navy-950), var(--sg-navy-800));
}

.sg-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--sg-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sg-eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.sg-section-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.sg-section-intro {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--sg-slate);
  font-size: clamp(17px, 2vw, 20px);
}

.sg-section--navy .sg-section-intro {
  color: rgba(255, 255, 255, 0.68);
}

.sg-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.sg-button:hover {
  transform: translateY(-2px);
}

.sg-button--light {
  color: var(--sg-navy-950);
  background: var(--sg-white);
}

.sg-button--light:hover {
  background: var(--sg-gold-light);
}

.sg-button--outline {
  color: var(--sg-white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.sg-button--outline:hover {
  border-color: var(--sg-white);
  background: rgba(255, 255, 255, 0.1);
}

.sg-button--navy {
  color: var(--sg-white);
  background: var(--sg-navy-900);
}

.sg-button--navy:hover {
  background: var(--sg-navy-700);
}

.sg-button__arrow {
  font-size: 1.2em;
  line-height: 1;
}

/* Header */
.sg-utility {
  position: relative;
  z-index: 80;
  min-height: 36px;
  color: rgba(255, 255, 255, 0.72);
  background: #02070d;
  font-size: 12px;
  letter-spacing: 0;
}

.sg-utility__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sg-utility__notice {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sg-utility__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sg-utility a:hover {
  color: var(--sg-white);
}

.sg-header {
  position: absolute;
  z-index: 70;
  top: 36px;
  right: 0;
  left: 0;
  height: var(--sg-header-height);
  color: var(--sg-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    background-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

/* Single articles do not use a dark hero, so keep the overlaid header legible. */
.single-post .sg-header:not(.is-sticky) {
  background: var(--sg-navy-950);
}

.admin-bar .sg-header {
  top: 68px;
}

.sg-header.is-sticky {
  position: fixed;
  top: 0;
  color: var(--sg-ink);
  border-bottom-color: var(--sg-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 40px rgba(5, 14, 25, 0.06);
  backdrop-filter: blur(16px);
}

.admin-bar .sg-header.is-sticky {
  top: 32px;
}

.sg-header__inner {
  display: grid;
  height: 100%;
  align-items: center;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  gap: 28px;
}

.sg-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
}

.sg-brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--sg-font-serif);
  font-size: 16px;
  font-weight: 700;
}

.sg-brand__name {
  display: block;
  font-size: 19px;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.sg-brand__sub {
  display: block;
  margin-top: 4px;
  opacity: 0.62;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.sg-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
}

.sg-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  list-style: none;
}

.sg-nav a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  font-size: 15px;
  font-weight: 650;
}

.sg-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sg-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.sg-nav a:hover::after,
.sg-nav .current-menu-item > a::after,
.sg-nav .current-menu-ancestor > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.sg-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.sg-header__consult {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 17px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.is-sticky .sg-header__consult {
  border-color: var(--sg-navy-900);
}

.sg-search-toggle,
.sg-menu-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: inherit;
  border: 0;
  background: transparent;
}

.sg-search-toggle svg,
.sg-menu-toggle svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.sg-menu-toggle {
  display: none;
}

.sg-mobile-panel {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  overflow-y: auto;
  color: var(--sg-white);
  background:
    radial-gradient(circle at 80% 10%, rgba(99, 199, 199, 0.12), transparent 25%),
    var(--sg-navy-950);
}

.sg-mobile-panel.is-open {
  display: block;
}

.sg-mobile-panel__top {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--sg-line-dark);
}

.sg-mobile-panel__close {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--sg-white);
  border: 1px solid var(--sg-line-dark);
  border-radius: 50%;
  background: transparent;
  font-size: 26px;
}

.sg-mobile-panel__body {
  padding-block: 46px 100px;
}

.sg-mobile-panel__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sg-mobile-panel__body > ul > li {
  border-bottom: 1px solid var(--sg-line-dark);
}

.sg-mobile-panel__body > ul > li > a {
  display: block;
  padding: 19px 0;
  font-size: clamp(23px, 5vw, 32px);
  font-weight: 550;
}

.sg-mobile-panel__body .sub-menu {
  display: grid;
  padding: 0 0 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.sg-mobile-panel__body .sub-menu a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
}

/* Hero */
.sg-hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100vh);
  align-items: end;
  overflow: hidden;
  color: var(--sg-white);
  background-color: var(--sg-navy-950);
  isolation: isolate;
}

.sg-hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  background-image: var(--sg-hero-image);
  background-position: center;
  background-size: cover;
}

.sg-hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 10, 18, 0.94) 0%, rgba(3, 10, 18, 0.78) 36%, rgba(3, 10, 18, 0.18) 72%, rgba(3, 10, 18, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 10, 18, 0.7) 0%, transparent 42%);
}

.sg-hero__inner {
  padding-top: calc(var(--sg-header-height) + 130px);
  padding-bottom: clamp(72px, 10vh, 110px);
}

.sg-hero__content {
  max-width: 790px;
}

.sg-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--sg-gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sg-hero__kicker::before {
  width: 44px;
  height: 1px;
  content: "";
  background: currentColor;
}

.sg-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 6.6vw, 92px);
  font-weight: 460;
  line-height: 1.06;
  letter-spacing: -0.065em;
}

.sg-hero__lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.8;
}

.sg-hero__actions {
  display: flex;
  margin-top: 38px;
  flex-wrap: wrap;
  gap: 12px;
}

.sg-hero-search {
  display: grid;
  max-width: 790px;
  min-height: 72px;
  margin-top: 52px;
  padding: 8px 8px 8px 26px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--sg-radius-sm);
  background: rgba(5, 14, 25, 0.5);
  backdrop-filter: blur(16px);
  grid-template-columns: 1fr auto;
}

.sg-hero-search:focus-within {
  border-color: var(--sg-gold-light);
}

.sg-hero-search input {
  min-width: 0;
  color: var(--sg-white);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 17px;
}

.sg-hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.sg-hero-search button {
  display: grid;
  width: 54px;
  height: 54px;
  padding: 0;
  place-items: center;
  color: var(--sg-navy-950);
  border: 0;
  border-radius: var(--sg-radius-sm);
  background: var(--sg-white);
}

.sg-hero-search svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.sg-hero__scroll {
  position: absolute;
  right: var(--sg-gutter);
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
}

.sg-hero__scroll::after {
  width: 64px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.35);
}

/* Trust band */
.sg-trust-band {
  color: var(--sg-white);
  background: var(--sg-navy-900);
}

.sg-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sg-trust-item {
  position: relative;
  min-height: 190px;
  padding: 42px clamp(24px, 4vw, 54px);
  border-left: 1px solid var(--sg-line-dark);
}

.sg-trust-item:last-child {
  border-right: 1px solid var(--sg-line-dark);
}

.sg-trust-item__number {
  display: block;
  margin-bottom: 20px;
  color: var(--sg-gold);
  font-family: var(--sg-font-serif);
  font-size: 18px;
}

.sg-trust-item h2,
.sg-trust-item h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.sg-trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.65;
}

/* Practice grid */
.sg-practice-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.sg-practice-grid {
  display: grid;
  margin-top: clamp(42px, 7vw, 84px);
  border-top: 1px solid var(--sg-line);
  border-left: 1px solid var(--sg-line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sg-practice-card {
  position: relative;
  display: flex;
  min-height: 330px;
  padding: clamp(26px, 3vw, 40px);
  flex-direction: column;
  border-right: 1px solid var(--sg-line);
  border-bottom: 1px solid var(--sg-line);
  background: var(--sg-white);
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.sg-practice-card:hover {
  z-index: 2;
  color: var(--sg-white);
  background: var(--sg-navy-900);
  box-shadow: var(--sg-shadow-lg);
  transform: translateY(-6px);
}

.sg-practice-card__index {
  color: var(--sg-gold);
  font-family: var(--sg-font-serif);
  font-size: 14px;
}

.sg-practice-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: 34px;
  place-items: center;
  color: var(--sg-navy-700);
  border: 1px solid var(--sg-line);
  border-radius: 50%;
  transition:
    color 220ms ease,
    border-color 220ms ease;
}

.sg-practice-card:hover .sg-practice-card__icon {
  color: var(--sg-gold-light);
  border-color: rgba(255, 255, 255, 0.22);
}

.sg-practice-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.sg-practice-card h3 {
  margin: auto 0 8px;
  font-size: clamp(23px, 2.3vw, 31px);
  font-weight: 570;
  letter-spacing: -0.045em;
}

.sg-practice-card p {
  margin: 0;
  color: var(--sg-slate);
  font-size: 14px;
  line-height: 1.65;
  transition: color 220ms ease;
}

.sg-practice-card:hover p {
  color: rgba(255, 255, 255, 0.6);
}

.sg-practice-card__arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 22px;
  transition: transform 220ms ease;
}

.sg-practice-card:hover .sg-practice-card__arrow {
  transform: translate(4px, -4px);
}

/* Principles */
.sg-principles {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.sg-principles__visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 14, 25, 0.06), rgba(5, 14, 25, 0.54)),
    var(--sg-hero-image) center / cover;
}

.sg-principles__visual::after {
  position: absolute;
  right: 32px;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.66);
  content: "LAW FIRM SINGYEOL";
  font-size: 10px;
  letter-spacing: 0.2em;
}

.sg-principles__content {
  display: flex;
  padding: clamp(54px, 8vw, 112px);
  flex-direction: column;
  justify-content: center;
  background: var(--sg-paper);
}

.sg-principle-list {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.sg-principle-list li {
  display: grid;
  padding: 24px 0;
  border-top: 1px solid var(--sg-line);
  grid-template-columns: 44px 1fr;
  gap: 14px;
}

.sg-principle-list li:last-child {
  border-bottom: 1px solid var(--sg-line);
}

.sg-principle-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.sg-principle-list p {
  margin: 0;
  color: var(--sg-slate);
  font-size: 14px;
}

.sg-principle-list__number {
  color: var(--sg-gold);
  font-family: var(--sg-font-serif);
}

/* Insights */
.sg-insight-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sg-insight-card {
  position: relative;
  display: flex;
  min-height: 390px;
  padding: 32px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--sg-radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015));
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.sg-insight-card:hover {
  border-color: rgba(218, 200, 159, 0.66);
  transform: translateY(-5px);
}

.sg-insight-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--sg-gold-light);
  font-size: 12px;
}

.sg-insight-card h3 {
  margin: auto 0 16px;
  font-size: clamp(23px, 2.5vw, 31px);
  font-weight: 540;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.sg-insight-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.sg-insight-card__link {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
}

/* Process */
.sg-process-grid {
  display: grid;
  margin-top: 64px;
  border-top: 1px solid var(--sg-line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sg-process-step {
  position: relative;
  padding: 42px 32px;
  border-right: 1px solid var(--sg-line);
}

.sg-process-step:first-child {
  border-left: 1px solid var(--sg-line);
}

.sg-process-step__number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 40px;
  place-items: center;
  color: var(--sg-navy-900);
  border: 1px solid var(--sg-line);
  border-radius: 50%;
  font-family: var(--sg-font-serif);
  font-size: 14px;
}

.sg-process-step h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.sg-process-step p {
  margin: 0;
  color: var(--sg-slate);
  font-size: 14px;
}

/* CTA */
.sg-cta {
  position: relative;
  overflow: hidden;
  color: var(--sg-white);
  background: var(--sg-navy-950);
}

.sg-cta::before {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.025),
    0 0 0 180px rgba(255, 255, 255, 0.016);
}

.sg-cta__inner {
  position: relative;
  display: grid;
  padding-block: clamp(72px, 9vw, 120px);
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 64px;
}

.sg-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 480;
  line-height: 1.15;
  letter-spacing: -0.055em;
}

.sg-cta p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.sg-cta__actions {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
}

.sg-cta__actions .sg-button {
  width: min(100%, 280px);
}

/* Subpage */
.sg-page-hero {
  position: relative;
  min-height: 530px;
  padding-top: calc(var(--sg-header-height) + 130px);
  padding-bottom: 80px;
  overflow: hidden;
  color: var(--sg-white);
  background:
    radial-gradient(circle at 78% 30%, rgba(99, 199, 199, 0.11), transparent 26%),
    linear-gradient(135deg, var(--sg-navy-950), var(--sg-navy-700));
}

.sg-page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 100px rgba(255, 255, 255, 0.025);
}

.sg-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  margin: 0 0 54px;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  list-style: none;
}

.sg-breadcrumb li:not(:last-child)::after {
  margin-left: 9px;
  content: "/";
  opacity: 0.45;
}

.sg-page-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0;
  font-size: clamp(45px, 6vw, 82px);
  font-weight: 480;
  line-height: 1.1;
  letter-spacing: -0.06em;
}

.sg-page-hero__intro {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(17px, 2vw, 20px);
}

.sg-page-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(48px, 8vw, 112px);
}

.sg-article {
  min-width: 0;
}

.sg-article > *:first-child {
  margin-top: 0;
}

.sg-article h2 {
  margin: 70px 0 22px;
  font-size: clamp(29px, 3.8vw, 43px);
  font-weight: 570;
  line-height: 1.3;
  letter-spacing: -0.045em;
}

.sg-article h3 {
  margin: 44px 0 16px;
  font-size: clamp(23px, 3vw, 31px);
  font-weight: 620;
}

.sg-article p {
  margin: 0 0 22px;
}

.sg-article ul,
.sg-article ol {
  margin: 0 0 28px;
  padding-left: 1.3em;
}

.sg-article li + li {
  margin-top: 8px;
}

.sg-article blockquote {
  margin: 40px 0;
  padding: 24px 30px;
  color: var(--sg-navy-800);
  border-left: 3px solid var(--sg-gold);
  background: var(--sg-paper);
  font-size: 18px;
}

.sg-keyword-topics {
  margin-top: 64px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(165, 133, 78, 0.28);
  border-radius: var(--sg-radius-md);
  background: linear-gradient(135deg, #f8f4eb 0%, #fff 100%);
}

.sg-keyword-topics h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
}

.sg-keyword-topics p {
  color: var(--sg-slate);
  font-size: 15px;
}

.sg-keyword-topics ul {
  display: flex;
  margin: 24px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.sg-keyword-topics li,
.sg-keyword-topics li + li {
  margin: 0;
  padding: 9px 13px;
  color: var(--sg-navy-800);
  border: 1px solid var(--sg-line);
  border-radius: 999px;
  background: var(--sg-white);
  font-size: 14px;
  font-weight: 650;
}

.sg-home-search-context {
  padding: clamp(62px, 8vw, 104px) 0;
  color: var(--sg-ink);
  background:
    linear-gradient(120deg, rgba(180, 155, 108, 0.1), transparent 42%),
    var(--sg-ivory);
  border-bottom: 1px solid var(--sg-line);
}

.sg-home-search-context .sg-eyebrow {
  margin-bottom: 18px;
  color: #8b7145;
}

.sg-home-search-context__content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.sg-home-lawyer-guide {
  padding: clamp(28px, 4vw, 46px);
  border-left: 3px solid var(--sg-gold);
  background: var(--sg-white);
  box-shadow: var(--sg-shadow-sm);
}

.sg-home-lawyer-guide h2 {
  margin: 0 0 18px;
  color: var(--sg-navy-900);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
}

.sg-home-lawyer-guide p {
  margin: 0;
  color: var(--sg-slate);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.85;
}

.sg-home-search-context .sg-keyword-topics {
  margin: 0;
  height: 100%;
}

@media (max-width: 820px) {
  .sg-home-search-context__content {
    grid-template-columns: 1fr;
  }
}

.sg-hub-directory {
  display: grid;
  margin-top: 72px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sg-hub-directory > .sg-eyebrow,
.sg-hub-directory > h2,
.sg-hub-directory > p {
  grid-column: 1 / -1;
}

.sg-hub-directory > h2 {
  margin: 0 0 8px;
}

.sg-hub-directory > p {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--sg-slate);
}

.sg-hub-topic {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid var(--sg-line);
  border-radius: var(--sg-radius-md);
  background: linear-gradient(145deg, #fff 0%, #fbfaf7 100%);
  box-shadow: 0 18px 48px rgba(8, 23, 39, 0.06);
}

.sg-hub-topic::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--sg-gold);
  content: "";
}

.sg-hub-topic__number {
  display: block;
  margin-bottom: 20px;
  color: var(--sg-gold);
  font-family: var(--sg-font-serif);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.sg-hub-topic h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.6vw, 29px);
}

.sg-hub-topic h3 a {
  color: var(--sg-navy-900);
}

.sg-hub-topic p {
  color: var(--sg-slate);
  font-size: 15px;
}

.sg-hub-topic .sg-text-link {
  color: var(--sg-navy-800);
  border-bottom-color: rgba(16, 37, 62, 0.3);
}

@media (max-width: 760px) {
  .sg-hub-directory {
    grid-template-columns: 1fr;
  }
}

.sg-article table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
  font-size: 15px;
}

.sg-article th,
.sg-article td {
  padding: 14px 16px;
  text-align: left;
  border: 1px solid var(--sg-line);
}

.sg-article th {
  color: var(--sg-white);
  background: var(--sg-navy-800);
}

.sg-sidebar {
  position: sticky;
  top: calc(var(--sg-header-height) + 34px);
}

.sg-sidebar-card {
  padding: 28px;
  border: 1px solid var(--sg-line);
  border-radius: var(--sg-radius-md);
  background: var(--sg-ivory);
}

.sg-sidebar-card + .sg-sidebar-card {
  margin-top: 18px;
}

.sg-sidebar-card h2,
.sg-sidebar-card h3 {
  margin: 0 0 18px;
  font-size: 18px;
}

.sg-sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sg-sidebar-card li + li {
  margin-top: 10px;
}

.sg-sidebar-card a {
  color: var(--sg-slate);
  font-size: 14px;
}

.sg-sidebar-card a:hover {
  color: var(--sg-navy-900);
}

.sg-sidebar-card--dark {
  color: var(--sg-white);
  border-color: transparent;
  background: var(--sg-navy-900);
}

.sg-sidebar-card--dark p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.sg-child-grid {
  display: grid;
  margin-top: 56px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sg-child-card {
  display: flex;
  min-height: 220px;
  padding: 28px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--sg-line);
  border-radius: var(--sg-radius-md);
  background: var(--sg-white);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.sg-child-card__visual {
  position: relative;
  overflow: hidden;
  margin: -28px -28px 22px;
  aspect-ratio: 16 / 9;
  background: var(--sg-navy-900);
}

.sg-child-card__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(5, 14, 25, 0.42));
  content: "";
}

.sg-child-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.sg-child-card:hover .sg-child-card__visual img {
  transform: scale(1.035);
}

.sg-child-card:hover {
  border-color: var(--sg-gold);
  box-shadow: var(--sg-shadow-sm);
  transform: translateY(-4px);
}

.sg-child-card__meta {
  color: var(--sg-gold);
  font-family: var(--sg-font-serif);
  font-size: 12px;
}

.sg-child-card h3 {
  margin: auto 0 10px;
  font-size: 23px;
  line-height: 1.35;
}

.sg-child-card p {
  margin: 0;
  color: var(--sg-slate);
  font-size: 14px;
}

.sg-post-meta {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.sg-post-list {
  display: grid;
  gap: 18px;
}

.sg-post-row {
  display: grid;
  padding: 28px 0;
  align-items: center;
  border-bottom: 1px solid var(--sg-line);
  grid-template-columns: 130px 1fr auto;
  gap: 26px;
}

.sg-post-row__meta {
  color: var(--sg-slate);
  font-size: 13px;
}

.sg-post-row h2 {
  margin: 0;
  font-size: clamp(21px, 2.3vw, 29px);
  line-height: 1.4;
}

.sg-post-row__arrow {
  font-size: 22px;
}

.sg-pagination {
  margin-top: 52px;
}

.sg-empty {
  padding: 70px 30px;
  text-align: center;
  border: 1px solid var(--sg-line);
  background: var(--sg-paper);
}

/* Footer */
.sg-footer {
  color: rgba(255, 255, 255, 0.64);
  background: #02070d;
}

.sg-footer__main {
  display: grid;
  padding-block: 72px;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(150px, 0.7fr));
  gap: 52px;
}

.sg-footer .sg-brand {
  color: var(--sg-white);
}

.sg-footer__summary {
  max-width: 410px;
  margin: 24px 0 0;
  font-size: 13px;
}

.sg-footer h2,
.sg-footer h3 {
  margin: 0 0 20px;
  color: var(--sg-white);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.sg-footer li + li {
  margin-top: 10px;
}

.sg-footer a {
  font-size: 13px;
}

.sg-footer a:hover {
  color: var(--sg-white);
}

.sg-footer__legal {
  padding-block: 22px;
  border-top: 1px solid var(--sg-line-dark);
  font-size: 11px;
}

.sg-footer__legal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sg-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.sg-mobile-actions {
  position: fixed;
  z-index: 60;
  right: 14px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sg-mobile-actions a {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--sg-white);
  border-radius: 50%;
  background: var(--sg-navy-900);
  box-shadow: var(--sg-shadow-sm);
  font-size: 11px;
  font-weight: 800;
}

.sg-mobile-actions a:first-child {
  color: var(--sg-navy-950);
  background: var(--sg-gold-light);
}

@media (max-width: 1120px) {
  .sg-header__inner {
    grid-template-columns: 1fr auto;
  }

  .sg-nav {
    display: none;
  }

  .sg-menu-toggle {
    display: grid;
  }

  .sg-header__consult {
    display: none;
  }

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

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

  .sg-insight-card:last-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 782px) {
  :root {
    --sg-header-height: 72px;
  }

  .admin-bar .sg-header {
    top: 82px;
  }

  .admin-bar .sg-header.is-sticky {
    top: 46px;
  }

  .sg-utility__notice {
    display: none;
  }

  .sg-utility__inner {
    justify-content: flex-end;
  }

  .sg-search-toggle {
    display: none;
  }

  .sg-hero {
    min-height: 830px;
  }

  .sg-hero::before {
    background-position: 62% center;
  }

  .sg-hero::after {
    background:
      linear-gradient(90deg, rgba(3, 10, 18, 0.92), rgba(3, 10, 18, 0.58)),
      linear-gradient(0deg, rgba(3, 10, 18, 0.84), transparent 58%);
  }

  .sg-hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .sg-hero__scroll {
    display: none;
  }

  .sg-trust-grid {
    grid-template-columns: 1fr;
  }

  .sg-trust-item,
  .sg-trust-item:last-child {
    min-height: auto;
    border-right: 1px solid var(--sg-line-dark);
    border-bottom: 1px solid var(--sg-line-dark);
  }

  .sg-practice-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .sg-principles {
    grid-template-columns: 1fr;
  }

  .sg-principles__visual {
    min-height: 440px;
  }

  .sg-principles__content {
    padding: 54px var(--sg-gutter);
  }

  .sg-insight-grid,
  .sg-process-grid,
  .sg-cta__inner,
  .sg-page-layout {
    grid-template-columns: 1fr;
  }

  .sg-insight-card:last-child {
    grid-column: auto;
  }

  .sg-process-step {
    border-bottom: 1px solid var(--sg-line);
    border-left: 1px solid var(--sg-line);
  }

  .sg-cta__actions {
    align-items: flex-start;
  }

  .sg-sidebar {
    position: static;
  }

  .sg-child-grid {
    grid-template-columns: 1fr;
  }

  .sg-post-row {
    grid-template-columns: 1fr auto;
  }

  .sg-post-row__meta {
    grid-column: 1 / -1;
  }

  .sg-footer__main {
    grid-template-columns: 1fr;
  }

  .sg-footer__legal-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .sg-brand__mark {
    width: 34px;
    height: 34px;
  }

  .sg-brand__name {
    font-size: 17px;
  }

  .sg-brand__sub {
    font-size: 8px;
  }

  .sg-header__inner {
    gap: 12px;
  }

  .sg-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sg-hero__actions .sg-button {
    width: 100%;
  }

  .sg-hero-search {
    min-height: 64px;
    margin-top: 34px;
    padding-left: 18px;
  }

  .sg-practice-grid {
    grid-template-columns: 1fr;
  }

  .sg-practice-card {
    min-height: 280px;
  }

  .sg-page-hero {
    min-height: 470px;
  }

  .sg-mobile-actions {
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    padding: 8px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    background: rgba(5, 14, 25, 0.9);
    backdrop-filter: blur(12px);
  }

  .sg-mobile-actions a {
    width: 100%;
    height: 48px;
    border-radius: var(--sg-radius-sm);
  }

  .sg-footer {
    padding-bottom: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* --------------------------------------------------------------------------
   5.3 Premium clean system
   -------------------------------------------------------------------------- */

:root {
  --sg-clean-navy: #07162b;
  --sg-clean-ink: #101b2a;
  --sg-clean-muted: #68717c;
  --sg-clean-line: #dfe3e7;
  --sg-clean-paper: #f7f7f5;
  --sg-clean-ivory: #f3f0e9;
}

body {
  background: #fff;
}

.sg-container {
  width: min(100% - 64px, 1240px);
}

.sg-utility {
  height: 30px;
  color: rgba(255, 255, 255, 0.66);
  background: #030a13;
}

.sg-utility__inner {
  min-height: 30px;
}

.sg-utility__notice,
.sg-utility__links {
  font-size: 10px;
  letter-spacing: 0.08em;
}

.sg-header {
  top: 30px;
  height: 88px;
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.admin-bar .sg-header {
  top: 62px;
}

.sg-header__inner {
  grid-template-columns: minmax(240px, 1fr) auto minmax(170px, 0.72fr);
  gap: 34px;
}

.sg-brand {
  gap: 13px;
}

.sg-brand__mark {
  width: 32px;
  height: 44px;
  border: 0;
  background: transparent;
}

.sg-brand__mark::after {
  display: none;
}

.sg-brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 180ms ease;
}

.sg-header:not(.is-sticky) .sg-brand__mark img,
.sg-mobile-panel .sg-brand__mark img,
.sg-clean-footer .sg-brand__mark img {
  filter: brightness(0) invert(1);
}

.sg-header.is-sticky .sg-brand__mark img {
  filter: none;
}

.sg-brand__name {
  font-size: 19px;
  font-weight: 680;
  letter-spacing: -0.035em;
}

.sg-brand__sub {
  margin-top: 4px;
  font-size: 8px;
  letter-spacing: 0.17em;
}

.sg-nav ul {
  gap: clamp(23px, 2.4vw, 38px);
}

.sg-nav a,
.sg-nav button {
  font-size: 14px;
  font-weight: 650;
}

.sg-header__consult {
  min-height: 44px;
  padding-inline: 20px;
}

.sg-mega-menu {
  top: calc(30px + 88px);
}

.admin-bar .sg-mega-menu {
  top: calc(62px + 88px);
}

.sg-header.is-sticky + .sg-mega-menu {
  top: 88px;
}

.admin-bar .sg-header.is-sticky + .sg-mega-menu {
  top: calc(32px + 88px);
}

.sg-clean-kicker {
  margin: 0 0 20px;
  color: #ad9568;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.2em;
}

.sg-clean-hero {
  position: relative;
  display: flex;
  min-height: min(900px, 100vh);
  overflow: hidden;
  align-items: stretch;
  color: #fff;
  background: var(--sg-clean-navy);
}

.sg-clean-hero__media,
.sg-clean-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sg-clean-hero__media {
  object-fit: cover;
  object-position: center 44%;
  transform: scale(1.015);
}

.sg-clean-hero__shade {
  background:
    linear-gradient(90deg, rgba(3, 10, 19, 0.92) 0%, rgba(3, 10, 19, 0.75) 42%, rgba(3, 10, 19, 0.2) 76%, rgba(3, 10, 19, 0.3) 100%),
    linear-gradient(0deg, rgba(3, 10, 19, 0.66) 0%, transparent 48%);
}

.sg-clean-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  padding-top: 210px;
  padding-bottom: 108px;
  align-items: center;
}

.sg-clean-hero__content {
  max-width: 850px;
}

.sg-clean-hero h1 {
  margin: 0;
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: -0.065em;
  word-break: keep-all;
}

.sg-clean-hero__content > p:not(.sg-clean-kicker) {
  max-width: 700px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.85;
  word-break: keep-all;
}

.sg-clean-actions {
  display: flex;
  margin-top: 44px;
  flex-wrap: wrap;
  gap: 10px;
}

.sg-clean-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 720;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.sg-clean-button--light {
  color: var(--sg-clean-navy);
  background: #fff;
}

.sg-clean-button--light:hover {
  background: #e9e5dc;
}

.sg-clean-button--line {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.sg-clean-button--line:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.sg-clean-hero__scroll {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.sg-clean-hero__scroll span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.sg-clean-section {
  padding: clamp(92px, 10vw, 144px) 0;
}

.sg-clean-section-head {
  display: grid;
  margin-bottom: clamp(45px, 6vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 60px;
}

.sg-clean-section-head h2,
.sg-clean-lead h2,
.sg-clean-team h2,
.sg-clean-process h2,
.sg-clean-cta h2,
.sg-clean-article > header h2 {
  margin: 0;
  color: var(--sg-clean-ink);
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 520;
  line-height: 1.16;
  letter-spacing: -0.06em;
  word-break: keep-all;
}

.sg-clean-section-head > p {
  margin: 0;
  color: var(--sg-clean-muted);
  line-height: 1.8;
  word-break: keep-all;
}

.sg-clean-practices {
  background: #fff;
}

.sg-clean-practice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--sg-clean-line);
  border-left: 1px solid var(--sg-clean-line);
}

.sg-clean-practice-card {
  min-width: 0;
  color: var(--sg-clean-ink);
  border-right: 1px solid var(--sg-clean-line);
  border-bottom: 1px solid var(--sg-clean-line);
  background: #fff;
  transition: background-color 200ms ease;
}

.sg-clean-practice-card:hover {
  background: var(--sg-clean-paper);
}

.sg-clean-practice-card figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--sg-clean-navy);
}

.sg-clean-practice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03);
  transition: transform 420ms ease, filter 250ms ease;
}

.sg-clean-practice-card:hover img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.025);
}

.sg-clean-practice-card > div {
  display: flex;
  min-height: 255px;
  padding: 28px 27px 30px;
  flex-direction: column;
}

.sg-clean-practice-card > div > span {
  overflow: hidden;
  color: #9a8358;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sg-clean-practice-card h3 {
  margin: 14px 0 12px;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 620;
  letter-spacing: -0.045em;
}

.sg-clean-practice-card p {
  margin: 0 0 24px;
  color: var(--sg-clean-muted);
  font-size: 13px;
  line-height: 1.75;
  word-break: keep-all;
}

.sg-clean-practice-card b {
  margin-top: auto;
  font-size: 12px;
  font-weight: 720;
}

.sg-clean-practice-card b span {
  margin-left: 6px;
  color: #9a8358;
}

.sg-clean-lead {
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--sg-clean-paper);
}

.sg-clean-lead__visual {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  background: #e9ebec;
}

.sg-clean-lead__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.sg-clean-lead__visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 54px 48px 38px;
  color: #fff;
  background: linear-gradient(0deg, rgba(3, 10, 19, 0.84), transparent);
}

.sg-clean-lead__visual figcaption span,
.sg-clean-lead__visual figcaption strong {
  display: block;
}

.sg-clean-lead__visual figcaption span {
  margin-bottom: 7px;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.sg-clean-lead__visual figcaption strong {
  font-size: 21px;
  font-weight: 640;
}

.sg-clean-lead__content {
  display: flex;
  max-width: 640px;
  padding: clamp(70px, 8vw, 120px);
  justify-content: center;
  flex-direction: column;
}

.sg-clean-lead__intro {
  margin: 31px 0 42px;
  color: var(--sg-clean-muted);
  font-size: 16px;
  line-height: 1.9;
  word-break: keep-all;
}

.sg-clean-lead ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--sg-clean-line);
}

.sg-clean-lead li {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px solid var(--sg-clean-line);
  grid-template-columns: 48px 1fr;
  gap: 10px;
}

.sg-clean-lead li > span {
  padding-top: 3px;
  color: #9a8358;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.sg-clean-lead li strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.sg-clean-lead li p {
  margin: 0;
  color: var(--sg-clean-muted);
  font-size: 13px;
}

.sg-clean-lead__career {
  margin: 25px 0 19px;
  color: var(--sg-clean-ink);
  font-size: 13px;
  font-weight: 650;
}

.sg-clean-text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding-bottom: 7px;
  color: var(--sg-clean-ink);
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 720;
}

.sg-clean-text-link span {
  color: #9a8358;
}

.sg-clean-team {
  color: #fff;
  background: var(--sg-clean-navy);
}

.sg-clean-team__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
}

.sg-clean-team h2 {
  color: #fff;
}

.sg-clean-team__content > p:not(.sg-clean-kicker) {
  margin: 29px 0 37px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.9;
  word-break: keep-all;
}

.sg-clean-text-link--light {
  color: #fff;
}

.sg-clean-team figure {
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: #e9ebec;
}

.sg-clean-team img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sg-clean-insights {
  background: #fff;
}

.sg-clean-insights .sg-clean-section-head {
  grid-template-columns: 1fr auto;
}

.sg-clean-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--sg-clean-line);
  border-left: 1px solid var(--sg-clean-line);
}

.sg-clean-insight-card {
  color: var(--sg-clean-ink);
  border-right: 1px solid var(--sg-clean-line);
  border-bottom: 1px solid var(--sg-clean-line);
  background: #fff;
}

.sg-clean-insight-card figure {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: var(--sg-clean-paper);
}

.sg-clean-insight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.sg-clean-insight-card:hover img {
  transform: scale(1.025);
}

.sg-clean-insight-card > div {
  display: flex;
  min-height: 255px;
  padding: 29px 30px 31px;
  flex-direction: column;
}

.sg-clean-insight-card > div > span {
  color: #9a8358;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.sg-clean-insight-card h3 {
  margin: 15px 0 12px;
  font-size: 23px;
  font-weight: 620;
  line-height: 1.4;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.sg-clean-insight-card p {
  display: -webkit-box;
  margin: 0 0 22px;
  overflow: hidden;
  color: var(--sg-clean-muted);
  font-size: 13px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.sg-clean-insight-card b {
  margin-top: auto;
  font-size: 12px;
}

.sg-clean-process {
  padding: 100px 0;
  background: var(--sg-clean-ivory);
}

.sg-clean-process header {
  display: grid;
  margin-bottom: 48px;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
}

.sg-clean-process header .sg-clean-kicker {
  margin: 0 0 7px;
}

.sg-clean-process ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid rgba(16, 27, 42, 0.25);
  border-left: 1px solid rgba(16, 27, 42, 0.25);
}

.sg-clean-process li {
  min-height: 210px;
  padding: 31px;
  border-right: 1px solid rgba(16, 27, 42, 0.25);
  border-bottom: 1px solid rgba(16, 27, 42, 0.25);
}

.sg-clean-process li > span {
  display: block;
  margin-bottom: 38px;
  color: #9a8358;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.sg-clean-process li strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.sg-clean-process li p {
  margin: 0;
  color: var(--sg-clean-muted);
  font-size: 13px;
  line-height: 1.75;
  word-break: keep-all;
}

.sg-clean-cta {
  padding: clamp(72px, 8vw, 108px) 0;
  color: #fff;
  background: #0b1b30;
}

.sg-clean-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 70px;
}

.sg-clean-cta h2 {
  color: #fff;
  font-size: clamp(35px, 4vw, 54px);
}

.sg-clean-cta__inner > div > p:last-child {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.63);
}

.sg-clean-page-hero {
  position: relative;
  display: flex;
  min-height: 590px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-image: var(--sg-page-image);
  background-position: center;
  background-size: cover;
}

.sg-clean-page-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 10, 19, 0.94) 0%, rgba(3, 10, 19, 0.76) 46%, rgba(3, 10, 19, 0.3) 100%);
}

.sg-clean-page-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: 88px;
}

.sg-clean-page-hero .sg-breadcrumbs {
  margin-bottom: 42px;
}

.sg-clean-page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: -0.065em;
  word-break: keep-all;
}

.sg-clean-page-hero__inner > p:not(.sg-clean-kicker) {
  max-width: 760px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.sg-post-grid-section {
  padding: clamp(78px, 8vw, 112px) 0;
  background: #fff;
}

.sg-post-grid-section__head {
  margin-bottom: 48px;
}

.sg-post-grid-section__head h2 {
  font-size: clamp(38px, 4vw, 56px);
}

.sg-post-grid {
  gap: 0;
  border-top: 1px solid var(--sg-clean-line);
  border-left: 1px solid var(--sg-clean-line);
}

.sg-post-grid__card {
  border: 0;
  border-right: 1px solid var(--sg-clean-line);
  border-bottom: 1px solid var(--sg-clean-line);
  box-shadow: none;
}

.sg-post-grid__card:hover,
.sg-post-grid__card:focus-visible {
  border-color: var(--sg-clean-line);
  box-shadow: none;
  transform: none;
}

.sg-post-grid__visual span {
  display: none;
}

.sg-post-grid__body {
  min-height: 205px;
  padding: 23px 23px 26px;
}

.sg-post-grid__body h3 {
  font-size: 22px;
}

.sg-post-grid__body p {
  -webkit-line-clamp: 2;
}

.sg-clean-page-content {
  padding: clamp(80px, 10vw, 140px) 32px;
  background: var(--sg-clean-paper);
}

.sg-clean-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  color: var(--sg-clean-ink);
  background: transparent;
}

.sg-clean-article > header {
  margin-bottom: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--sg-clean-line);
}

.sg-clean-article > header > p:last-child {
  margin: 25px 0 0;
  color: var(--sg-clean-muted);
  font-size: 16px;
  line-height: 1.9;
  word-break: keep-all;
}

.sg-clean-article h2:not(:first-child) {
  margin-top: 60px;
}

.sg-single-post {
  padding-top: 112px;
}

.sg-single-article__header h1 {
  font-size: clamp(46px, 5.6vw, 72px);
}

.sg-mobile-actions {
  display: none;
}

.sg-clean-footer {
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
  background: #030a13;
}

.sg-clean-footer__practices {
  display: grid;
  padding-top: 54px;
  padding-bottom: 54px;
  grid-template-columns: 230px 1fr;
  gap: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sg-clean-footer__practices span,
.sg-clean-footer__practices strong {
  display: block;
}

.sg-clean-footer__practices span {
  margin-bottom: 8px;
  color: #ad9568;
  font-size: 9px;
  letter-spacing: 0.17em;
}

.sg-clean-footer__practices strong {
  color: #fff;
  font-size: 18px;
}

.sg-clean-footer__practices nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px 25px;
}

.sg-clean-footer__practices nav a {
  font-size: 13px;
}

.sg-clean-footer__practices nav a:hover,
.sg-clean-footer__links a:hover {
  color: #fff;
}

.sg-clean-footer__main {
  display: grid;
  padding-top: 68px;
  padding-bottom: 68px;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.8fr);
  gap: 100px;
}

.sg-clean-footer__brand .sg-brand {
  color: #fff;
}

.sg-clean-footer__brand > p {
  max-width: 570px;
  margin: 28px 0 0;
  font-size: 12px;
  line-height: 1.8;
}

.sg-clean-footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}

.sg-clean-footer__links div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.sg-clean-footer__links strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 13px;
}

.sg-clean-footer__links a {
  font-size: 12px;
}

.sg-clean-footer__bottom {
  display: flex;
  padding-top: 22px;
  padding-bottom: 28px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

@media (max-width: 1120px) {
  .sg-header__inner {
    grid-template-columns: 1fr auto;
  }

  .sg-clean-practice-grid,
  .sg-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sg-clean-lead__content {
    padding: 68px;
  }
}

@media (max-width: 820px) {
  .sg-container {
    width: min(100% - 40px, 1240px);
  }

  .sg-clean-hero {
    min-height: 760px;
  }

  .sg-clean-hero__media {
    object-position: 68% center;
  }

  .sg-clean-hero__shade {
    background: linear-gradient(90deg, rgba(3, 10, 19, 0.92), rgba(3, 10, 19, 0.44));
  }

  .sg-clean-hero__inner {
    padding-top: 170px;
    padding-bottom: 90px;
  }

  .sg-clean-hero h1 {
    font-size: clamp(45px, 10vw, 66px);
  }

  .sg-clean-hero__scroll {
    display: none;
  }

  .sg-clean-section-head,
  .sg-clean-team__layout,
  .sg-clean-process header,
  .sg-clean-cta__inner,
  .sg-clean-footer__main,
  .sg-clean-footer__practices {
    grid-template-columns: 1fr;
  }

  .sg-clean-section-head {
    gap: 22px;
  }

  .sg-clean-practice-grid,
  .sg-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sg-clean-practice-card > div {
    min-height: 225px;
  }

  .sg-clean-lead {
    grid-template-columns: 1fr;
  }

  .sg-clean-lead__visual {
    min-height: 720px;
  }

  .sg-clean-lead__content {
    max-width: none;
    padding: 72px 40px;
  }

  .sg-clean-team__layout {
    gap: 50px;
  }

  .sg-clean-team figure {
    order: -1;
  }

  .sg-clean-insight-grid,
  .sg-clean-process ol {
    grid-template-columns: 1fr;
  }

  .sg-clean-insights .sg-clean-section-head {
    grid-template-columns: 1fr auto;
  }

  .sg-clean-process header {
    gap: 18px;
  }

  .sg-clean-footer__practices {
    gap: 28px;
  }

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

  .sg-mobile-actions {
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    padding: 8px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    background: rgba(3, 10, 19, 0.94);
    backdrop-filter: blur(12px);
  }

  .sg-mobile-actions a {
    width: 100%;
    height: 48px;
    border-radius: 2px;
  }
}

@media (max-width: 560px) {
  .sg-container {
    width: min(100% - 30px, 1240px);
  }

  .sg-utility__links a:not(:last-child) {
    display: none;
  }

  .sg-brand__mark {
    width: 27px;
    height: 38px;
  }

  .sg-brand__name {
    font-size: 16px;
  }

  .sg-clean-hero {
    min-height: 700px;
  }

  .sg-clean-hero h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .sg-clean-hero__content > p:not(.sg-clean-kicker) {
    font-size: 15px;
    line-height: 1.75;
  }

  .sg-clean-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sg-clean-button {
    width: 100%;
  }

  .sg-clean-section {
    padding: 78px 0;
  }

  .sg-clean-section-head h2,
  .sg-clean-lead h2,
  .sg-clean-team h2,
  .sg-clean-process h2,
  .sg-clean-article > header h2 {
    font-size: 38px;
  }

  .sg-clean-practice-grid,
  .sg-post-grid {
    grid-template-columns: 1fr;
  }

  .sg-clean-practice-card > div {
    min-height: 210px;
  }

  .sg-clean-lead__visual {
    min-height: 560px;
  }

  .sg-clean-lead__content {
    padding: 66px 24px;
  }

  .sg-clean-team__layout {
    gap: 40px;
  }

  .sg-clean-insights .sg-clean-section-head {
    grid-template-columns: 1fr;
  }

  .sg-clean-page-hero {
    min-height: 540px;
  }

  .sg-clean-page-hero__inner {
    padding-top: 155px;
    padding-bottom: 64px;
  }

  .sg-clean-page-hero h1 {
    font-size: 46px;
  }

  .sg-clean-page-content {
    padding-inline: 20px;
  }

  .sg-clean-footer__practices nav,
  .sg-clean-footer__links {
    grid-template-columns: 1fr;
  }

  .sg-clean-footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* --------------------------------------------------------------------------
   5.2.0 — category hub grid, minimal posts and verified firm photography
   -------------------------------------------------------------------------- */

.sg-hero--renewed::before {
  background-position: center 42%;
}

.sg-practice-atlas--grid {
  padding: var(--sg-section) 0;
}

.sg-practice-atlas--grid .sg-practice-atlas__intro {
  display: grid;
  max-width: none;
  margin-bottom: clamp(38px, 6vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr) auto;
  align-items: end;
  gap: 30px;
}

.sg-practice-atlas--grid .sg-practice-atlas__intro h2 {
  margin-bottom: 0;
}

.sg-practice-atlas--grid .sg-practice-atlas__intro > p:not(.sg-eyebrow) {
  margin: 0;
}

.sg-practice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 26px);
}

.sg-practice-grid__card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  color: var(--sg-white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.sg-practice-grid__card:first-child {
  grid-column: span 2;
}

.sg-practice-grid__card:hover,
.sg-practice-grid__card:focus-visible {
  border-color: var(--sg-row-accent, var(--sg-gold));
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
}

.sg-practice-grid__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--sg-navy-900);
}

.sg-practice-grid__card:first-child .sg-practice-grid__visual {
  aspect-ratio: 2 / 1;
}

.sg-practice-grid__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(3, 11, 20, 0.72));
}

.sg-practice-grid__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.sg-practice-grid__card:hover img {
  transform: scale(1.035);
}

.sg-practice-grid__visual span {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 20px;
  color: var(--sg-gold-light);
  font-family: var(--sg-font-serif);
  font-size: 13px;
}

.sg-practice-grid__body {
  display: flex;
  min-height: 260px;
  padding: clamp(24px, 2.4vw, 36px);
  flex: 1;
  flex-direction: column;
}

.sg-practice-grid__body > span,
.sg-post-grid__body > span {
  color: var(--sg-gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sg-practice-grid__body h3 {
  margin: 12px 0 10px;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 560;
  line-height: 1.25;
}

.sg-practice-grid__body p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.75;
}

.sg-practice-grid__body b {
  margin-top: auto;
  color: var(--sg-gold-light);
  font-size: 12px;
  font-weight: 650;
}

.sg-post-grid-section {
  padding: clamp(68px, 8vw, 112px) 0;
  background: var(--sg-paper);
}

.sg-post-grid-section__head {
  display: grid;
  margin-bottom: clamp(34px, 5vw, 62px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: 40px;
}

.sg-post-grid-section__head h2 {
  margin: 8px 0 0;
  font-size: clamp(36px, 4.7vw, 64px);
  font-weight: 490;
  line-height: 1.14;
  letter-spacing: -0.055em;
}

.sg-post-grid-section__head > p {
  margin: 0;
  color: var(--sg-slate);
  word-break: keep-all;
}

.sg-post-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.sg-post-grid__item {
  min-width: 0;
}

.sg-post-grid__card {
  display: flex;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(8, 23, 39, 0.1);
  background: var(--sg-white);
  box-shadow: 0 18px 42px rgba(5, 14, 25, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.sg-post-grid__card:hover,
.sg-post-grid__card:focus-visible {
  border-color: var(--sg-practice-accent, var(--sg-gold));
  box-shadow: 0 28px 60px rgba(5, 14, 25, 0.13);
  transform: translateY(-6px);
}

.sg-post-grid__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: var(--sg-navy-900);
}

.sg-post-grid__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.sg-post-grid__card:hover img {
  transform: scale(1.035);
}

.sg-post-grid__visual span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--sg-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(4, 17, 34, 0.78);
  font-family: var(--sg-font-serif);
  font-size: 11px;
  backdrop-filter: blur(8px);
}

.sg-post-grid__body {
  display: flex;
  min-height: 235px;
  padding: 24px 24px 27px;
  flex: 1;
  flex-direction: column;
}

.sg-post-grid__body > span {
  color: var(--sg-practice-accent, var(--sg-gold));
}

.sg-post-grid__body h3 {
  margin: 11px 0 10px;
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 620;
  line-height: 1.35;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.sg-post-grid__body p {
  display: -webkit-box;
  margin: 0 0 22px;
  overflow: hidden;
  color: var(--sg-slate);
  font-size: 13px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.sg-post-grid__body b {
  margin-top: auto;
  color: var(--sg-navy-800);
  font-size: 12px;
  font-weight: 760;
}

.sg-single-minimal {
  background: var(--sg-ivory);
}

.sg-single-post {
  padding: clamp(72px, 9vw, 132px) 0 clamp(90px, 11vw, 160px);
}

.sg-single-post__shell {
  max-width: 960px;
}

.sg-single-article {
  max-width: none;
}

.sg-single-article__header {
  margin-bottom: clamp(34px, 5vw, 58px);
  text-align: center;
}

.sg-single-article__eyebrow {
  margin: 0 0 12px;
  color: var(--sg-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.sg-single-article__header h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.065em;
  word-break: keep-all;
}

.sg-single-article__meta {
  display: flex;
  margin-top: 22px;
  justify-content: center;
  gap: 18px;
  color: var(--sg-muted);
  font-size: 12px;
}

.sg-single-article__featured {
  width: min(100%, 760px);
  aspect-ratio: 1 / 1;
  margin: 0 auto clamp(48px, 7vw, 84px);
  overflow: hidden;
  border: 1px solid rgba(8, 23, 39, 0.1);
  background: var(--sg-navy-900);
  box-shadow: 0 28px 70px rgba(5, 14, 25, 0.14);
}

.sg-single-article__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sg-single-article__content {
  max-width: 860px;
  margin: 0 auto;
}

.sg-single-article__content > *:first-child {
  margin-top: 0;
}

.sg-team-system__visual--portrait {
  background-position: center 22%;
}

.sg-attorney-team {
  padding: var(--sg-section) 0;
  overflow: hidden;
  color: var(--sg-ink);
  background: var(--sg-ivory);
}

.sg-attorney-team__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  align-items: center;
  gap: clamp(45px, 8vw, 120px);
}

.sg-attorney-team__content h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 480;
  line-height: 1.15;
  letter-spacing: -0.06em;
  word-break: keep-all;
}

.sg-attorney-team__content > p:not(.sg-eyebrow) {
  margin: 28px 0 35px;
  color: var(--sg-slate);
  word-break: keep-all;
}

.sg-attorney-team__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 23, 39, 0.1);
  background: #eef0f1;
  box-shadow: 0 30px 80px rgba(5, 14, 25, 0.12);
}

.sg-attorney-team__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1120px) {
  .sg-practice-atlas--grid .sg-practice-atlas__intro {
    grid-template-columns: 1fr 1fr;
  }

  .sg-practice-atlas--grid .sg-practice-atlas__intro .sg-button {
    grid-column: 1 / -1;
  }

  .sg-practice-grid,
  .sg-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sg-practice-grid__card:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .sg-hero--renewed::before {
    background-position: 60% center;
  }

  .sg-practice-atlas--grid .sg-practice-atlas__intro,
  .sg-post-grid-section__head,
  .sg-attorney-team__layout {
    grid-template-columns: 1fr;
  }

  .sg-practice-grid,
  .sg-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sg-practice-grid__card:first-child {
    grid-column: span 2;
  }

  .sg-attorney-team__content {
    max-width: 680px;
  }
}

@media (max-width: 560px) {
  .sg-practice-grid,
  .sg-post-grid {
    grid-template-columns: 1fr;
  }

  .sg-practice-grid__card:first-child {
    grid-column: auto;
  }

  .sg-practice-grid__card:first-child .sg-practice-grid__visual,
  .sg-practice-grid__visual {
    aspect-ratio: 4 / 3;
  }

  .sg-single-article__meta {
    flex-direction: column;
    gap: 2px;
  }

  .sg-single-post {
    padding-top: 56px;
  }
}

/* v5 search-ready editorial system */
.sg-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--sg-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.sg-section-kicker::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.sg-answer-box {
  position: relative;
  overflow: hidden;
  margin: 4px 0 52px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(180, 155, 108, 0.38);
  border-radius: 2px 22px 2px 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(180, 155, 108, 0.2), transparent 34%),
    linear-gradient(135deg, #0b1d30 0%, #122a45 100%);
  color: var(--sg-white);
  box-shadow: 0 28px 70px rgba(5, 14, 25, 0.17);
}

.sg-answer-box::after {
  position: absolute;
  right: -18px;
  bottom: -54px;
  color: rgba(255, 255, 255, 0.045);
  content: "律";
  font-family: Georgia, serif;
  font-size: 190px;
  line-height: 1;
}

.sg-answer-box h2 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 0 20px;
  color: var(--sg-white);
  font-size: clamp(27px, 3.4vw, 44px);
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.sg-answer-box p {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.9;
}

.sg-answer-box p strong {
  color: var(--sg-white);
  font-weight: 700;
}

.sg-editorial-section,
.sg-topic-focus,
.sg-evidence-section,
.sg-process-section,
.sg-brief-section,
.sg-faq-block {
  margin: clamp(58px, 8vw, 92px) 0;
}

.sg-editorial-section > h2,
.sg-topic-focus > h2,
.sg-evidence-section > h2,
.sg-process-section > h2,
.sg-brief-section > h2,
.sg-faq-block > h2 {
  max-width: 800px;
  margin: 0 0 18px;
  color: var(--sg-navy-900);
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.sg-editorial-section > p,
.sg-topic-focus > p,
.sg-evidence-section > p,
.sg-brief-section > p,
.sg-section-deck {
  max-width: 840px;
  color: #4e5a69;
  font-size: 17px;
  line-height: 1.95;
}

.sg-intent-note {
  margin: -22px 0 54px;
  padding: 18px 22px;
  border-left: 3px solid var(--sg-gold);
  background: #f8f6f1;
  color: var(--sg-slate);
  font-size: 14px;
  line-height: 1.8;
}

.sg-intent-note strong {
  color: var(--sg-navy-900);
}

.sg-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--sg-line);
  border-left: 1px solid var(--sg-line);
}

.sg-insight-grid article {
  min-height: 220px;
  padding: 30px 26px;
  border-right: 1px solid var(--sg-line);
  border-bottom: 1px solid var(--sg-line);
  background: #fff;
}

.sg-insight-grid article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--sg-gold);
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
}

.sg-insight-grid h3 {
  margin: 0 0 12px;
  color: var(--sg-navy-900);
  font-size: 20px;
}

.sg-insight-grid p {
  margin: 0;
  color: var(--sg-slate);
  font-size: 14px;
  line-height: 1.8;
}

.sg-topic-focus {
  padding: clamp(28px, 4vw, 44px);
  border-left: 4px solid var(--sg-gold);
  background: linear-gradient(110deg, #f5f1e8, #fbfaf7 70%);
}

.sg-topic-focus > h2 {
  font-size: clamp(24px, 2.6vw, 33px);
}

.sg-evidence-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.sg-evidence-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  min-height: 150px;
  padding: 25px;
  border: 1px solid var(--sg-line);
  background: #fff;
}

.sg-evidence-list li > span {
  color: var(--sg-gold);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
}

.sg-evidence-list strong {
  color: var(--sg-navy-900);
  font-size: 17px;
  line-height: 1.55;
}

.sg-evidence-list p {
  grid-column: 2;
  margin: 10px 0 0;
  color: var(--sg-slate);
  font-size: 13px;
  line-height: 1.7;
}

.sg-process-list {
  counter-reset: none;
  margin: 32px 0 0 !important;
  padding: 0 !important;
  border-top: 1px solid var(--sg-navy-900);
  list-style: none !important;
}

.sg-process-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 6px;
  border-bottom: 1px solid var(--sg-line);
}

.sg-process-list li > span {
  color: var(--sg-gold);
  font-family: Georgia, serif;
  font-size: 21px;
  font-style: italic;
}

.sg-process-list h3 {
  margin: 0 0 8px;
  color: var(--sg-navy-900);
  font-size: 19px;
}

.sg-process-list p {
  margin: 0;
  color: var(--sg-slate);
  font-size: 15px;
  line-height: 1.85;
}

.sg-process-list__note {
  background: #faf8f3;
}

.sg-caution-box {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.6fr);
  gap: 32px;
  margin: 64px 0;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid #d9d0bf;
  background: #f1ece3;
}

.sg-caution-box span {
  color: #8e6e37;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.sg-caution-box h2 {
  margin: 8px 0 0;
  color: var(--sg-navy-900);
  font-size: 22px;
}

.sg-caution-box p {
  margin: 0;
  color: #4b4f55;
  line-height: 1.9;
}

.sg-brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.sg-brief-grid article {
  position: relative;
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--sg-line);
  background: #fff;
}

.sg-brief-grid article:last-child {
  grid-column: 1 / -1;
  min-height: 180px;
  background: linear-gradient(120deg, #0d2035, #142f4d);
}

.sg-brief-grid article > span {
  display: block;
  margin-bottom: 26px;
  color: var(--sg-gold);
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
}

.sg-brief-grid h3 {
  margin: 0 0 12px;
  color: var(--sg-navy-900);
  font-size: 19px;
}

.sg-brief-grid p {
  margin: 0;
  color: var(--sg-slate);
  font-size: 14px;
  line-height: 1.85;
}

.sg-brief-grid article:last-child h3 {
  color: var(--sg-white);
}

.sg-brief-grid article:last-child p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.sg-faq-list {
  margin-top: 30px;
  border-top: 1px solid var(--sg-navy-900);
}

.sg-faq-list details {
  border-bottom: 1px solid var(--sg-line);
  background: #fff;
}

.sg-faq-list summary {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 24px;
  align-items: center;
  min-height: 88px;
  padding: 20px 16px;
  color: var(--sg-navy-900);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.55;
  cursor: pointer;
  list-style: none;
}

.sg-faq-list summary::-webkit-details-marker {
  display: none;
}

.sg-faq-list summary > span {
  color: var(--sg-gold);
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.sg-faq-list summary::after {
  grid-column: 3;
  color: var(--sg-gold);
  content: "+";
  font-size: 26px;
  font-weight: 300;
}

.sg-faq-list details[open] summary::after {
  content: "−";
}

.sg-faq-answer {
  padding: 0 50px 28px 68px;
}

.sg-faq-answer p {
  margin: 0;
  color: var(--sg-slate);
  font-size: 15px;
  line-height: 1.9;
}

.sg-review-note {
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var(--sg-line);
  color: var(--sg-slate);
  font-size: 13px;
}

.sg-review-note > div {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.sg-review-note__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--sg-gold);
  border-radius: 50%;
  color: var(--sg-gold);
  font-family: Georgia, serif;
}

.sg-review-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sg-navy-900);
  font-size: 14px;
}

.sg-review-note p {
  margin: 0;
  line-height: 1.75;
}

@media (max-width: 760px) {
  .sg-answer-box {
    margin-bottom: 42px;
    padding: 28px 22px;
    border-radius: 2px 16px 2px 16px;
  }

  .sg-answer-box::after {
    font-size: 130px;
  }

  .sg-insight-grid,
  .sg-evidence-list,
  .sg-brief-grid {
    grid-template-columns: 1fr;
  }

  .sg-insight-grid article {
    min-height: auto;
  }

  .sg-caution-box {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sg-brief-grid article:last-child {
    grid-column: auto;
  }

  .sg-process-list li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
  }

  .sg-faq-list summary {
    grid-template-columns: 42px minmax(0, 1fr) 22px;
    padding: 18px 4px;
    font-size: 15px;
  }

  .sg-faq-answer {
    padding: 0 12px 24px 46px;
  }
}

.sg-footer__practice-index {
  display: grid;
  padding-block: 34px;
  align-items: center;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.sg-footer__practice-index > div span {
  display: block;
  margin-bottom: 4px;
  color: var(--sg-gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.sg-footer__practice-index > div strong {
  font-size: 17px;
  font-weight: 650;
}

.sg-footer__practice-index nav {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.sg-footer__practice-index nav a {
  display: grid;
  min-height: 55px;
  padding: 8px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 650;
  text-align: center;
}

.sg-footer__practice-index nav a:hover {
  color: var(--sg-navy-950);
  background: var(--sg-gold-light);
}

@media (max-width: 940px) {
  .sg-footer__practice-index {
    display: block;
  }

  .sg-footer__practice-index > div {
    margin-bottom: 23px;
  }

  .sg-footer__practice-index nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .sg-footer__practice-index nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Editorial five-card carousel
--------------------------------------------- */
.sg-carousel-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(68px, 8vw, 112px);
  border-top: 1px solid var(--sg-line);
  border-bottom: 1px solid var(--sg-line);
  background:
    radial-gradient(circle at 92% 3%, rgba(180, 155, 108, 0.16), transparent 27%),
    linear-gradient(135deg, #f7f5f0 0%, #fff 54%, #f2f0ea 100%);
}

.sg-carousel-section::before {
  position: absolute;
  top: -150px;
  right: -70px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(180, 155, 108, 0.22);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.sg-carousel-section--fraud {
  background:
    radial-gradient(circle at 95% 0%, rgba(126, 52, 58, 0.16), transparent 29%),
    linear-gradient(135deg, #f7f5f0 0%, #fff 55%, #f4eeee 100%);
}

.sg-carousel-section--loan {
  background:
    radial-gradient(circle at 95% 0%, rgba(5, 14, 25, 0.15), transparent 29%),
    linear-gradient(135deg, #f5f3ee 0%, #fff 55%, #eceff2 100%);
}

.sg-carousel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.sg-carousel-head .sg-eyebrow {
  margin-bottom: 13px;
}

.sg-carousel-head h2 {
  max-width: 820px;
  margin: 0;
  color: var(--sg-navy-950);
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.24;
  letter-spacing: -0.048em;
}

.sg-carousel-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.sg-carousel-status {
  min-width: 76px;
  margin-right: 8px;
  color: var(--sg-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.sg-carousel-status strong {
  color: var(--sg-navy-900);
  font-size: 15px;
  font-weight: 700;
}

.sg-carousel-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(5, 14, 25, 0.17);
  border-radius: 50%;
  color: var(--sg-navy-900);
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: 180ms ease;
}

.sg-carousel-controls button:hover:not(:disabled),
.sg-carousel-controls button:focus-visible {
  border-color: var(--sg-navy-900);
  color: var(--sg-white);
  background: var(--sg-navy-900);
  transform: translateY(-2px);
}

.sg-carousel-controls button:disabled {
  opacity: 0.34;
  cursor: default;
}

.sg-carousel-controls svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.sg-carousel-track {
  display: grid;
  overflow-x: auto;
  padding: 2px 2px 24px;
  grid-auto-flow: column;
  grid-auto-columns: minmax(228px, calc((100% - 72px) / 4.6));
  gap: 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.sg-carousel-track::-webkit-scrollbar {
  display: none;
}

.sg-carousel-track:focus-visible {
  border-radius: var(--sg-radius-sm);
  outline: 2px solid var(--sg-gold);
  outline-offset: 5px;
}

.sg-carousel-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid rgba(5, 14, 25, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(5, 14, 25, 0.08);
  scroll-snap-align: start;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.sg-carousel-card:hover,
.sg-carousel-card:focus-visible {
  border-color: rgba(180, 155, 108, 0.8);
  box-shadow: 0 24px 54px rgba(5, 14, 25, 0.16);
  transform: translateY(-7px);
}

.sg-carousel-card:focus-visible {
  outline: 2px solid var(--sg-gold);
  outline-offset: 3px;
}

.sg-carousel-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.25;
  background: var(--sg-navy-900);
}

.sg-carousel-card__visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 14, 25, 0.04) 44%, rgba(5, 14, 25, 0.72) 100%),
    linear-gradient(135deg, rgba(180, 155, 108, 0.08), transparent 46%);
  content: "";
}

.sg-carousel-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.sg-carousel-card:hover .sg-carousel-card__visual img {
  transform: scale(1.045);
}

.sg-carousel-card__number {
  position: absolute;
  right: 17px;
  bottom: 14px;
  z-index: 1;
  color: var(--sg-white);
  font-family: var(--sg-font-serif);
  font-size: 29px;
  line-height: 1;
}

.sg-carousel-card__body {
  display: flex;
  min-height: 205px;
  padding: 23px 22px 21px;
  flex-direction: column;
}

.sg-carousel-card__kicker {
  display: block;
  margin-bottom: 9px;
  color: #87704a;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.13em;
}

.sg-carousel-card h3 {
  margin: 0;
  color: var(--sg-navy-950);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.36;
  letter-spacing: -0.035em;
}

.sg-carousel-card p {
  margin: 10px 0 18px;
  color: var(--sg-slate);
  font-size: 14px;
  line-height: 1.65;
}

.sg-carousel-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid var(--sg-line);
  color: var(--sg-navy-900);
  font-size: 12px;
  font-weight: 750;
}

.sg-carousel-card--cta {
  border-color: rgba(180, 155, 108, 0.58);
}

.sg-carousel-card--cta .sg-carousel-card__body {
  background: linear-gradient(145deg, #fff, #f8f2e7);
}

.sg-carousel-progress {
  overflow: hidden;
  height: 2px;
  margin-top: 2px;
  background: rgba(5, 14, 25, 0.1);
}

.sg-carousel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--sg-gold), var(--sg-navy-800));
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.sg-carousel-note {
  margin: 15px 0 0;
  color: var(--sg-muted);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 1120px) {
  .sg-carousel-track {
    grid-auto-columns: minmax(248px, calc((100% - 36px) / 3.2));
  }
}

@media (max-width: 782px) {
  .sg-carousel-section {
    padding-block: 62px;
  }

  .sg-carousel-head {
    align-items: flex-start;
    margin-bottom: 27px;
    flex-direction: column;
  }

  .sg-carousel-head h2 {
    font-size: clamp(29px, 8vw, 40px);
  }

  .sg-carousel-controls {
    align-self: flex-end;
  }

  .sg-carousel-track {
    margin-right: calc(var(--sg-gutter) * -1);
    padding-right: var(--sg-gutter);
    grid-auto-columns: minmax(252px, 76vw);
  }

  .sg-carousel-card {
    min-height: 450px;
  }
}

@media (max-width: 520px) {
  .sg-carousel-controls {
    width: 100%;
  }

  .sg-carousel-status {
    margin-right: auto;
  }

  .sg-carousel-controls button {
    width: 44px;
    height: 44px;
  }

  .sg-carousel-track {
    grid-auto-columns: minmax(250px, 82vw);
  }
}

/* ==========================================================================
   Version 3.0 — practice-centre redesign
   ========================================================================== */

body.sg-mega-open {
  overflow: hidden;
}

.sg-utility__notice b {
  margin-right: 7px;
  color: var(--sg-gold-light);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.sg-nav__mega-trigger {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 650;
}

.sg-nav__mega-trigger::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sg-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.sg-nav__mega-trigger:hover::after,
.sg-nav__mega-trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.sg-nav__mega-trigger span {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.sg-nav__mega-trigger[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.sg-mega-menu {
  position: fixed;
  z-index: 69;
  top: calc(36px + var(--sg-header-height));
  right: 0;
  left: 0;
  max-height: calc(100vh - 120px);
  padding: 0;
  overflow: auto;
  visibility: hidden;
  color: var(--sg-white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 8% 10%, rgba(180, 155, 108, 0.13), transparent 25%),
    linear-gradient(125deg, #06111e, #0b1e33 70%, #102b45);
  box-shadow: 0 35px 80px rgba(1, 7, 13, 0.34);
  opacity: 0;
  transform: translateY(-18px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.admin-bar .sg-mega-menu {
  top: calc(68px + var(--sg-header-height));
}

.sg-header.is-sticky + .sg-mega-menu {
  top: var(--sg-header-height);
}

.admin-bar .sg-header.is-sticky + .sg-mega-menu {
  top: calc(32px + var(--sg-header-height));
}

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

.sg-mega-menu > .sg-container {
  display: grid;
  padding-block: 50px 58px;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(48px, 6vw, 92px);
}

.sg-mega-menu__intro {
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.sg-mega-menu__intro h2 {
  margin: 0;
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.05em;
  word-break: keep-all;
}

.sg-mega-menu__intro > p:not(.sg-eyebrow) {
  margin: 21px 0 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.75;
}

.sg-mega-menu__intro > a {
  color: var(--sg-gold-light);
  font-size: 13px;
  font-weight: 700;
}

.sg-mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(26px, 3.2vw, 48px);
  row-gap: 38px;
}

.sg-mega-menu__grid section {
  min-width: 0;
}

.sg-mega-menu__title {
  display: block;
  margin-bottom: 15px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.sg-mega-menu__title span {
  display: block;
  overflow: hidden;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sg-mega-menu__title strong {
  color: var(--sg-white);
  font-size: 19px;
  font-weight: 640;
  letter-spacing: -0.035em;
}

.sg-mega-menu__grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sg-mega-menu__grid li + li {
  margin-top: 7px;
}

.sg-mega-menu__grid li a {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.59);
  font-size: 12px;
  line-height: 1.55;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.sg-mega-menu__grid li a:hover {
  color: var(--sg-gold-light);
  transform: translateX(3px);
}

/* Renewed main visual */
.sg-hero--renewed {
  min-height: min(940px, 100vh);
}

.sg-hero--renewed::after {
  background:
    linear-gradient(90deg, rgba(2, 8, 15, 0.97) 0%, rgba(3, 11, 20, 0.9) 34%, rgba(5, 15, 25, 0.34) 67%, rgba(3, 10, 18, 0.34) 100%),
    linear-gradient(0deg, rgba(2, 7, 13, 0.94) 0%, rgba(2, 7, 13, 0.18) 45%, rgba(2, 7, 13, 0.18) 100%);
}

.sg-hero--renewed .sg-hero__inner {
  align-self: center;
  padding-top: calc(var(--sg-header-height) + 130px);
  padding-bottom: 176px;
}

.sg-hero--renewed .sg-hero__content {
  max-width: 875px;
}

.sg-hero--renewed .sg-hero__kicker {
  color: var(--sg-gold-light);
  letter-spacing: 0.21em;
}

.sg-hero--renewed h1 {
  max-width: 870px;
  font-size: clamp(52px, 6.6vw, 94px);
  font-weight: 440;
  line-height: 1.04;
  letter-spacing: -0.07em;
  word-break: keep-all;
}

.sg-hero--renewed .sg-hero__lead {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.45vw, 20px);
  word-break: keep-all;
}

.sg-hero--renewed .sg-hero-search {
  max-width: 640px;
  margin-top: 35px;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(1, 7, 13, 0.46);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.sg-hero-practice-rail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(2, 8, 14, 0.65);
  backdrop-filter: blur(14px);
}

.sg-hero-practice-rail > .sg-container {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.sg-hero-practice-rail a {
  position: relative;
  display: flex;
  min-height: 91px;
  padding: 18px 18px 16px;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 180ms ease;
}

.sg-hero-practice-rail a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sg-hero-practice-rail a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--sg-gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.sg-hero-practice-rail a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.sg-hero-practice-rail a:hover::after {
  transform: scaleX(1);
}

.sg-hero-practice-rail span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--sg-font-serif);
  font-size: 11px;
}

.sg-hero-practice-rail strong {
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 620;
  white-space: nowrap;
}

.sg-hero--renewed .sg-hero__scroll {
  right: 20px;
  bottom: 122px;
}

/* Institutional metrics */
.sg-capability-band {
  position: relative;
  z-index: 4;
  color: var(--sg-white);
  background: #071421;
}

.sg-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sg-capability-grid > div {
  position: relative;
  min-height: 180px;
  padding: 38px clamp(18px, 3vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.sg-capability-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.sg-capability-grid strong {
  display: block;
  float: left;
  margin-right: 15px;
  color: var(--sg-gold-light);
  font-family: var(--sg-font-serif);
  font-size: clamp(37px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.95;
}

.sg-capability-grid span {
  display: block;
  padding-top: 3px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 700;
}

.sg-capability-grid p {
  clear: both;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.49);
  font-size: 12px;
  line-height: 1.65;
}

.sg-capability-note {
  margin: 0;
  padding: 13px var(--sg-gutter);
  color: #747f89;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #040d16;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.sg-section-heading {
  display: grid;
  margin-bottom: clamp(42px, 6vw, 76px);
  align-items: end;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 48px;
}

.sg-section-heading .sg-section-intro {
  margin: 0;
}

.sg-section-heading > .sg-button {
  justify-self: end;
}

/* Immediate briefing */
.sg-briefing {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(5, 14, 25, 0.045) 50%, transparent 50.05%),
    var(--sg-ivory);
}

.sg-briefing-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 18px;
}

.sg-briefing-card {
  position: relative;
  display: flex;
  min-height: 395px;
  padding: clamp(28px, 3.3vw, 46px);
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid #d8d8d2;
  background: rgba(255, 255, 255, 0.76);
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.sg-briefing-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: var(--sg-gold);
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 220ms ease;
}

.sg-briefing-card::after {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(8, 23, 39, 0.09);
  border-radius: 50%;
  content: "";
}

.sg-briefing-card:hover {
  color: var(--sg-white);
  border-color: var(--sg-navy-800);
  background: var(--sg-navy-800);
  box-shadow: var(--sg-shadow-lg);
  transform: translateY(-7px);
}

.sg-briefing-card:hover::before {
  transform: scaleX(1);
}

.sg-briefing-card > span {
  position: absolute;
  top: 36px;
  left: clamp(28px, 3.3vw, 46px);
  color: #917b52;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.sg-briefing-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 560;
  line-height: 1.28;
  letter-spacing: -0.05em;
}

.sg-briefing-card p {
  position: relative;
  z-index: 1;
  margin: 19px 0 30px;
  color: var(--sg-slate);
  font-size: 14px;
  line-height: 1.7;
}

.sg-briefing-card:hover p {
  color: rgba(255, 255, 255, 0.63);
}

.sg-briefing-card b {
  position: relative;
  z-index: 1;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 23, 39, 0.13);
  font-size: 13px;
}

.sg-briefing-card:hover b {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.sg-briefing-card--lead {
  color: var(--sg-white);
  border-color: var(--sg-navy-900);
  background:
    linear-gradient(145deg, rgba(8, 23, 39, 0.93), rgba(15, 48, 75, 0.98)),
    var(--sg-navy-900);
}

.sg-briefing-card--lead p {
  color: rgba(255, 255, 255, 0.63);
}

.sg-briefing-card--lead b {
  border-top-color: rgba(255, 255, 255, 0.15);
}

/* Practice command centre */
.sg-practice-atlas {
  position: relative;
  padding-block: clamp(86px, 11vw, 156px);
  overflow: hidden;
  color: var(--sg-white);
  background:
    radial-gradient(circle at 16% 18%, rgba(180, 155, 108, 0.12), transparent 28%),
    linear-gradient(125deg, #040c15, #0a1b2d 68%, #0d2941);
}

.sg-practice-atlas::after {
  position: absolute;
  right: -260px;
  bottom: -330px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 100px rgba(255, 255, 255, 0.018),
    0 0 0 200px rgba(255, 255, 255, 0.012);
}

.sg-practice-atlas__layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(64px, 9vw, 135px);
}

.sg-practice-atlas__intro {
  position: sticky;
  top: 130px;
}

.sg-practice-atlas__intro h2 {
  margin: 0;
  font-size: clamp(49px, 6vw, 82px);
  font-weight: 430;
  line-height: 1.06;
  letter-spacing: -0.06em;
  word-break: keep-all;
}

.sg-practice-atlas__intro > p:not(.sg-eyebrow) {
  max-width: 410px;
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
}

.sg-practice-atlas__list {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.sg-practice-atlas__row {
  position: relative;
  display: grid;
  min-height: 154px;
  padding: 22px 6px;
  align-items: center;
  grid-template-columns: 46px 154px minmax(0, 1fr) 36px;
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.sg-practice-atlas__row::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sg-row-accent, var(--sg-gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.sg-practice-atlas__row:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.sg-practice-atlas__number {
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--sg-font-serif);
  font-size: 13px;
}

.sg-practice-atlas__thumb {
  position: relative;
  height: 105px;
  overflow: hidden;
  background: #0e2235;
}

.sg-practice-atlas__thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(5, 15, 25, 0.17);
}

.sg-practice-atlas__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
  transition:
    transform 500ms ease,
    filter 500ms ease;
}

.sg-practice-atlas__row:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.07);
}

.sg-practice-atlas__row > div:nth-child(3) > span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.sg-practice-atlas__row h3 {
  margin: 5px 0 4px;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 530;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.sg-practice-atlas__row p {
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.55;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sg-practice-atlas__row > b {
  color: rgba(255, 255, 255, 0.58);
  font-size: 22px;
  font-weight: 300;
  text-align: right;
  transition: transform 180ms ease;
}

.sg-practice-atlas__row:hover > b {
  color: var(--sg-white);
  transform: translateX(5px);
}

/* Practice-aware case carousel */
.sg-case-carousel {
  position: relative;
  padding-block: clamp(82px, 10vw, 136px);
  overflow: hidden;
  color: var(--sg-ink);
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(5, 14, 25, 0.035) 50%, transparent 50.05%),
    #f4f1eb;
}

.sg-case-carousel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: var(--sg-practice-accent, var(--sg-gold));
}

.sg-case-carousel__head {
  display: grid;
  margin-bottom: clamp(36px, 5vw, 62px);
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
}

.sg-case-carousel__head > div:first-child {
  max-width: 850px;
}

.sg-case-carousel__head h2 {
  margin: 0;
  font-size: clamp(37px, 4.7vw, 65px);
  font-weight: 490;
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.sg-case-carousel__head > div:first-child > p:last-child {
  max-width: 690px;
  margin: 21px 0 0;
  color: var(--sg-slate);
  font-size: 16px;
}

.sg-case-carousel__track {
  display: grid;
  margin: 0 calc((100vw - min(100vw - (var(--sg-gutter) * 2), var(--sg-container))) / -2) 28px 0;
  padding: 7px max(var(--sg-gutter), calc((100vw - var(--sg-container)) / 2)) 26px 0;
  overflow-x: auto;
  grid-auto-flow: column;
  grid-auto-columns: minmax(282px, 22vw);
  gap: 20px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.sg-case-carousel__track::-webkit-scrollbar {
  display: none;
}

.sg-case-carousel__track:focus-visible {
  outline: 2px solid var(--sg-practice-accent, var(--sg-gold));
  outline-offset: 6px;
}

.sg-case-card {
  display: flex;
  min-height: 520px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #d9d8d2;
  background: var(--sg-white);
  box-shadow: 0 12px 35px rgba(5, 14, 25, 0.055);
  scroll-snap-align: start;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
}

.sg-case-card:hover {
  border-color: color-mix(in srgb, var(--sg-practice-accent, var(--sg-gold)) 68%, #d9d8d2);
  box-shadow: 0 26px 65px rgba(5, 14, 25, 0.15);
  transform: translateY(-7px);
}

.sg-case-card__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sg-navy-850);
}

.sg-case-card__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 50%, rgba(3, 10, 18, 0.52)),
    linear-gradient(90deg, rgba(3, 10, 18, 0.12), transparent);
}

.sg-case-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition:
    filter 500ms ease,
    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sg-case-card:hover .sg-case-card__visual img {
  filter: saturate(1) contrast(1.05);
  transform: scale(1.055);
}

.sg-case-card__visual > span {
  position: absolute;
  z-index: 2;
  right: 19px;
  bottom: 15px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--sg-font-serif);
  font-size: 15px;
}

.sg-case-card__body {
  display: flex;
  padding: 28px 27px 26px;
  flex: 1;
  flex-direction: column;
}

.sg-case-card__meta {
  color: var(--sg-practice-accent, #8f7648);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.sg-case-card h3 {
  margin: 10px 0 0;
  color: var(--sg-navy-950);
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 630;
  line-height: 1.32;
  letter-spacing: -0.045em;
}

.sg-case-card p {
  margin: 13px 0 27px;
  color: var(--sg-slate);
  font-size: 13px;
  line-height: 1.72;
}

.sg-case-card__link {
  display: flex;
  margin-top: auto;
  padding-top: 16px;
  align-items: center;
  justify-content: space-between;
  color: var(--sg-navy-900);
  border-top: 1px solid #e2e3e1;
  font-size: 12px;
  font-weight: 750;
}

.sg-case-card__link b {
  font-size: 18px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.sg-case-card:hover .sg-case-card__link b {
  transform: translate(3px, -3px);
}

.sg-case-carousel .sg-carousel-controls {
  padding-bottom: 3px;
}

.sg-case-carousel .sg-carousel-controls button {
  color: var(--sg-navy-900);
  border-color: rgba(5, 14, 25, 0.2);
  background: rgba(255, 255, 255, 0.6);
}

.sg-case-carousel .sg-carousel-controls button:hover:not(:disabled) {
  color: var(--sg-white);
  border-color: var(--sg-navy-900);
  background: var(--sg-navy-900);
}

.sg-case-carousel .sg-carousel-status {
  color: var(--sg-muted);
}

.sg-case-carousel .sg-carousel-status strong {
  color: var(--sg-navy-900);
}

.sg-case-carousel .sg-carousel-progress {
  background: rgba(5, 14, 25, 0.11);
}

.sg-case-carousel .sg-carousel-progress span {
  background: linear-gradient(90deg, var(--sg-practice-accent, var(--sg-gold)), var(--sg-navy-800));
}

/* Practice hero and local navigation */
.sg-page-hero--practice {
  display: flex;
  min-height: 690px;
  padding-top: calc(var(--sg-header-height) + 115px);
  padding-bottom: 94px;
  align-items: center;
  isolation: isolate;
  background: var(--sg-navy-950);
}

.sg-page-hero--practice::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  background-image: var(--sg-page-image);
  background-position: center;
  background-size: cover;
}

.sg-page-hero--practice::after {
  z-index: -2;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    linear-gradient(90deg, rgba(3, 9, 16, 0.97) 0%, rgba(4, 13, 22, 0.9) 36%, rgba(3, 10, 18, 0.45) 69%, rgba(3, 10, 18, 0.32) 100%),
    linear-gradient(0deg, rgba(2, 8, 14, 0.58), transparent 55%);
}

.sg-page-hero__inner {
  position: relative;
  z-index: 2;
}

.sg-page-hero--practice .sg-breadcrumb {
  margin-bottom: 48px;
}

.sg-page-hero__meta {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 850px;
  margin-bottom: 15px;
  align-items: center;
  gap: 17px;
}

.sg-page-hero__meta .sg-eyebrow {
  margin: 0;
}

.sg-page-hero__meta > span {
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.56);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 12px;
}

.sg-page-hero--practice h1 {
  max-width: 920px;
  font-size: clamp(52px, 6.5vw, 88px);
  word-break: keep-all;
  text-wrap: balance;
}

.sg-page-hero--practice .sg-page-hero__intro {
  max-width: 740px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.67);
}

.sg-page-hero__statement {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 17px 0 0;
  color: var(--sg-white);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.sg-page-hero__actions {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: 35px;
  flex-wrap: wrap;
  gap: 11px;
}

.sg-page-hero__vertical {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 39px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--sg-font-serif);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.sg-practice-nav {
  position: sticky;
  z-index: 55;
  top: var(--sg-header-height);
  color: var(--sg-ink);
  border-bottom: 1px solid var(--sg-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 32px rgba(5, 14, 25, 0.05);
  backdrop-filter: blur(15px);
}

.admin-bar .sg-practice-nav {
  top: calc(var(--sg-header-height) + 32px);
}

.sg-practice-nav__inner {
  display: grid;
  min-height: 82px;
  align-items: stretch;
  grid-template-columns: 210px minmax(0, 1fr) auto;
}

.sg-practice-nav__home {
  display: flex;
  padding-right: 28px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--sg-line);
}

.sg-practice-nav__home span {
  overflow: hidden;
  margin-bottom: 2px;
  color: var(--sg-practice-accent, var(--sg-gold));
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sg-practice-nav__home strong {
  color: var(--sg-navy-950);
  font-size: 16px;
  font-weight: 720;
}

.sg-practice-nav__links {
  display: flex;
  min-width: 0;
  padding-inline: 24px;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}

.sg-practice-nav__links::-webkit-scrollbar {
  display: none;
}

.sg-practice-nav__links a {
  position: relative;
  display: flex;
  padding-inline: clamp(11px, 1.35vw, 20px);
  align-items: center;
  color: var(--sg-slate);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.sg-practice-nav__links a::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 2px;
  content: "";
  background: var(--sg-practice-accent, var(--sg-gold));
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.sg-practice-nav__links a:hover {
  color: var(--sg-navy-900);
}

.sg-practice-nav__links a:hover::after {
  transform: scaleX(1);
}

.sg-practice-nav__consult {
  display: flex;
  padding-inline: 24px;
  align-items: center;
  color: var(--sg-white);
  background: var(--sg-navy-900);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

/* Editorial article framing */
.sg-article-intro {
  display: grid;
  margin: 0 0 55px;
  padding: 0 0 46px;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 32px;
  border-bottom: 1px solid var(--sg-line);
}

.sg-article-intro__label {
  padding-top: 11px;
  color: #927b50;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.sg-article-intro h2 {
  margin: 0;
  color: var(--sg-navy-950);
  font-size: clamp(31px, 4vw, 49px);
  font-weight: 540;
  line-height: 1.25;
}

.sg-article-intro p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--sg-slate);
  font-size: 17px;
}

.sg-checkpoint-grid {
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--sg-navy-900);
  border-bottom: 1px solid var(--sg-line);
}

.sg-checkpoint-grid > div {
  position: relative;
  min-height: 205px;
  padding: 31px 26px 25px;
  border-right: 1px solid var(--sg-line);
}

.sg-checkpoint-grid > div:first-child {
  border-left: 1px solid var(--sg-line);
}

.sg-checkpoint-grid span {
  display: block;
  margin-bottom: 30px;
  color: #a08a60;
  font-family: var(--sg-font-serif);
  font-size: 12px;
}

.sg-checkpoint-grid strong {
  display: block;
  color: var(--sg-navy-950);
  font-size: 19px;
}

.sg-checkpoint-grid p {
  margin: 8px 0 0;
  color: var(--sg-slate);
  font-size: 12px;
  line-height: 1.6;
}

.sg-section-heading--article {
  display: block;
  margin-top: 88px;
  margin-bottom: 34px;
  padding-top: 54px;
  border-top: 1px solid var(--sg-navy-900);
}

.sg-section-heading--article h2 {
  margin: 0;
}

.sg-section-heading--article > p:last-child {
  margin-top: 14px;
  color: var(--sg-slate);
}

.sg-sidebar-card__kicker {
  display: block;
  margin-bottom: 12px;
  color: #9a8153;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.sg-sidebar-card--dark .sg-sidebar-card__kicker {
  color: var(--sg-gold-light);
}

.sg-content-index {
  margin: 0 0 50px;
  padding: 30px 34px;
  border-top: 2px solid var(--sg-navy-900);
  border-bottom: 1px solid var(--sg-line);
  background: #f7f6f2;
}

.sg-content-index > strong {
  display: block;
  margin-bottom: 15px;
  color: var(--sg-navy-950);
  font-size: 15px;
}

.sg-content-index ol {
  margin: 0;
  padding-left: 1.2em;
  color: var(--sg-slate);
  font-size: 14px;
}

/* Team, insights and process */
.sg-team-system {
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  color: var(--sg-white);
  background: var(--sg-navy-950);
}

.sg-team-system__visual {
  position: relative;
  min-height: 660px;
  background-image:
    linear-gradient(180deg, transparent 45%, rgba(3, 10, 18, 0.86)),
    var(--sg-team-image);
  background-position: center;
  background-size: cover;
}

.sg-team-system__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sg-team-system__visual > div {
  position: absolute;
  z-index: 1;
  right: clamp(28px, 5vw, 80px);
  bottom: clamp(33px, 6vw, 82px);
  left: clamp(28px, 5vw, 80px);
}

.sg-team-system__visual span {
  display: block;
  margin-bottom: 10px;
  color: var(--sg-gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.sg-team-system__visual strong {
  display: block;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 520;
}

.sg-team-system__visual p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.sg-team-system__content {
  display: flex;
  padding: clamp(70px, 9vw, 145px) clamp(45px, 8vw, 120px);
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(99, 199, 199, 0.1), transparent 30%),
    var(--sg-navy-900);
}

.sg-team-system__content h2 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 470;
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.sg-team-system__content > p:not(.sg-eyebrow) {
  max-width: 640px;
  margin: 27px 0 45px;
  color: rgba(255, 255, 255, 0.62);
}

.sg-team-system__content ol {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sg-team-system__content li {
  display: grid;
  padding: 21px 0;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sg-team-system__content li > span {
  color: var(--sg-gold-light);
  font-family: var(--sg-font-serif);
  font-size: 12px;
}

.sg-team-system__content li strong {
  display: block;
  font-size: 16px;
}

.sg-team-system__content li p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.51);
  font-size: 12px;
}

.sg-text-link {
  width: fit-content;
  padding-bottom: 7px;
  color: var(--sg-gold-light);
  border-bottom: 1px solid rgba(218, 200, 159, 0.46);
  font-size: 13px;
  font-weight: 700;
}

.sg-insight-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(180, 155, 108, 0.11), transparent 24%),
    var(--sg-navy-950);
}

.sg-insight-section .sg-section-heading {
  align-items: end;
}

.sg-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.sg-insight-card {
  display: flex;
  min-height: 365px;
  padding: clamp(27px, 3vw, 42px);
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background-color 180ms ease;
}

.sg-insight-card:hover {
  background: rgba(255, 255, 255, 0.055);
}

.sg-insight-card__meta {
  display: flex;
  margin-bottom: 55px;
  justify-content: space-between;
  gap: 15px;
  color: rgba(255, 255, 255, 0.37);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sg-insight-card h3 {
  margin: 0;
  font-size: clamp(23px, 2.2vw, 31px);
  font-weight: 520;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.sg-insight-card p {
  margin: 17px 0 30px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.sg-insight-card__link {
  margin-top: auto;
  color: var(--sg-gold-light);
  font-size: 12px;
  font-weight: 700;
}

.sg-consult-flow {
  background: var(--sg-ivory);
}

.sg-consult-flow .sg-process-grid {
  border-top: 1px solid var(--sg-navy-900);
}

.sg-consult-flow .sg-process-step {
  min-height: 300px;
  padding: 38px 30px;
  border-color: #d7d9da;
  background: transparent;
}

.sg-consult-flow .sg-process-step:hover {
  color: var(--sg-white);
  background: var(--sg-navy-900);
}

.sg-consult-flow .sg-process-step:hover p {
  color: rgba(255, 255, 255, 0.58);
}

.sg-consult-flow .sg-process-step__number {
  color: #9b8356;
}

.sg-cta--renewed {
  background:
    radial-gradient(circle at 90% 0%, rgba(99, 199, 199, 0.12), transparent 28%),
    linear-gradient(120deg, #06111e, #0c2741);
}

/* Upgraded mobile navigation */
.sg-mobile-panel__label {
  margin: 0 0 16px;
  color: var(--sg-gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.sg-mobile-practices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--sg-line-dark);
  border-left: 1px solid var(--sg-line-dark);
}

.sg-mobile-panel__body .sg-mobile-practices > li {
  border-right: 1px solid var(--sg-line-dark);
  border-bottom: 1px solid var(--sg-line-dark);
}

.sg-mobile-panel__body .sg-mobile-practices > li > a {
  position: relative;
  display: flex;
  min-height: 118px;
  padding: 23px;
  flex-direction: column;
  justify-content: flex-end;
  font-size: clamp(20px, 4.5vw, 27px);
}

.sg-mobile-practices a > span {
  display: block;
  overflow: hidden;
  margin-bottom: 6px;
  padding-right: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sg-mobile-practices a > b {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  font-weight: 400;
}

.sg-mobile-panel__body .sg-mobile-panel__mainlinks {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 9px 22px;
}

.sg-mobile-panel__body .sg-mobile-panel__mainlinks > li {
  border: 0;
}

.sg-mobile-panel__body .sg-mobile-panel__mainlinks > li > a {
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .sg-mega-menu__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sg-hero-practice-rail a {
    padding-inline: 11px;
  }

  .sg-hero-practice-rail strong {
    font-size: 13px;
  }

  .sg-practice-atlas__layout {
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 55px;
  }

  .sg-practice-atlas__row {
    grid-template-columns: 34px 118px minmax(0, 1fr) 28px;
    gap: 18px;
  }

  .sg-case-carousel__track {
    grid-auto-columns: minmax(270px, 30vw);
  }

  .sg-practice-nav__inner {
    grid-template-columns: 190px minmax(0, 1fr) auto;
  }

  .sg-team-system__content {
    padding-inline: 62px;
  }
}

@media (max-width: 940px) {
  .sg-mega-menu {
    display: none;
  }

  .sg-hero-practice-rail {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .sg-hero-practice-rail::-webkit-scrollbar {
    display: none;
  }

  .sg-hero-practice-rail > .sg-container {
    width: max-content;
    min-width: 100%;
    margin: 0;
    grid-template-columns: repeat(7, 126px);
  }

  .sg-hero-practice-rail a {
    min-height: 82px;
  }

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

  .sg-capability-grid > div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.11);
  }

  .sg-capability-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

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

  .sg-briefing-card--lead {
    grid-column: 1 / -1;
  }

  .sg-practice-atlas__layout {
    display: block;
  }

  .sg-practice-atlas__intro {
    position: static;
    margin-bottom: 60px;
  }

  .sg-practice-atlas__intro > p:not(.sg-eyebrow) {
    max-width: 660px;
  }

  .sg-team-system {
    grid-template-columns: 1fr;
  }

  .sg-team-system__visual {
    min-height: 600px;
  }

  .sg-insight-grid {
    grid-template-columns: 1fr;
  }

  .sg-insight-card {
    min-height: 280px;
  }

  .sg-insight-card__meta {
    margin-bottom: 36px;
  }
}

@media (max-width: 782px) {
  .sg-hero--renewed {
    min-height: 850px;
  }

  .sg-hero--renewed .sg-hero__inner {
    padding-top: calc(var(--sg-header-height) + 95px);
    padding-bottom: 140px;
  }

  .sg-hero--renewed h1 {
    font-size: clamp(45px, 13vw, 67px);
  }

  .sg-hero--renewed .sg-hero__scroll {
    display: none;
  }

  .sg-section-heading {
    display: block;
    margin-bottom: 42px;
  }

  .sg-section-heading .sg-section-intro {
    margin-top: 22px;
  }

  .sg-section-heading > .sg-button {
    margin-top: 26px;
  }

  .sg-briefing-grid {
    display: block;
  }

  .sg-briefing-card {
    min-height: 350px;
  }

  .sg-briefing-card + .sg-briefing-card {
    margin-top: 14px;
  }

  .sg-practice-atlas__row {
    min-height: 138px;
    grid-template-columns: 32px 104px minmax(0, 1fr) 24px;
    gap: 14px;
  }

  .sg-practice-atlas__thumb {
    height: 90px;
  }

  .sg-practice-atlas__row p {
    display: none;
  }

  .sg-case-carousel__head {
    display: block;
  }

  .sg-case-carousel__head .sg-carousel-controls {
    justify-content: flex-end;
    margin-top: 25px;
  }

  .sg-case-carousel__track {
    margin-right: calc(var(--sg-gutter) * -1);
    padding-right: var(--sg-gutter);
    grid-auto-columns: minmax(268px, 78vw);
  }

  .sg-case-card {
    min-height: 505px;
  }

  .sg-page-hero--practice {
    min-height: 660px;
    padding-top: calc(var(--sg-header-height) + 82px);
    padding-bottom: 68px;
  }

  .sg-page-hero--practice::after {
    background:
      linear-gradient(90deg, rgba(3, 9, 16, 0.95), rgba(4, 13, 22, 0.64)),
      linear-gradient(0deg, rgba(2, 8, 14, 0.7), transparent);
  }

  .sg-page-hero--practice h1 {
    font-size: clamp(44px, 12vw, 65px);
  }

  .sg-page-hero__vertical {
    display: none;
  }

  .sg-practice-nav {
    top: 72px;
  }

  .admin-bar .sg-practice-nav {
    top: 118px;
  }

  .sg-practice-nav__inner {
    display: flex;
    width: 100%;
    min-height: 70px;
    padding: 0;
  }

  .sg-practice-nav__home {
    min-width: 167px;
    padding-left: var(--sg-gutter);
    padding-right: 18px;
  }

  .sg-practice-nav__links {
    padding-inline: 7px;
    flex: 1;
  }

  .sg-practice-nav__consult {
    display: none;
  }

  .sg-article-intro {
    display: block;
  }

  .sg-article-intro__label {
    display: block;
    margin-bottom: 15px;
  }

  .sg-checkpoint-grid {
    grid-template-columns: 1fr;
  }

  .sg-checkpoint-grid > div {
    display: grid;
    min-height: 0;
    padding: 22px 20px;
    grid-template-columns: 35px 92px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    border-right: 1px solid var(--sg-line);
    border-bottom: 1px solid var(--sg-line);
  }

  .sg-checkpoint-grid > div:last-child {
    border-bottom: 0;
  }

  .sg-checkpoint-grid span,
  .sg-checkpoint-grid p {
    margin: 0;
  }

  .sg-team-system__visual {
    min-height: 500px;
  }

  .sg-team-system__content {
    padding: 75px var(--sg-gutter);
  }
}

@media (max-width: 520px) {
  .sg-capability-grid > div {
    min-height: 155px;
    padding: 28px 18px;
  }

  .sg-capability-grid strong {
    float: none;
    margin: 0 0 8px;
    font-size: 38px;
  }

  .sg-capability-grid span {
    padding: 0;
  }

  .sg-capability-grid p {
    margin-top: 12px;
    font-size: 11px;
  }

  .sg-practice-atlas__row {
    min-height: 112px;
    grid-template-columns: 25px 74px minmax(0, 1fr) 18px;
    gap: 10px;
  }

  .sg-practice-atlas__thumb {
    height: 67px;
  }

  .sg-practice-atlas__row > div:nth-child(3) > span {
    display: none;
  }

  .sg-practice-atlas__row h3 {
    font-size: 21px;
  }

  .sg-case-carousel__track {
    grid-auto-columns: minmax(258px, 84vw);
  }

  .sg-case-card {
    min-height: 485px;
  }

  .sg-page-hero__meta {
    display: block;
  }

  .sg-page-hero__meta > span {
    display: block;
    margin-top: 10px;
    padding: 0;
    border: 0;
  }

  .sg-page-hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sg-page-hero__actions .sg-button {
    min-width: 0;
    padding-inline: 12px;
    font-size: 12px;
  }

  .sg-practice-nav__home {
    min-width: 150px;
  }

  .sg-practice-nav__home span {
    display: none;
  }

  .sg-practice-nav__home strong {
    font-size: 14px;
  }

  .sg-checkpoint-grid > div {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .sg-checkpoint-grid p {
    grid-column: 2;
  }

  .sg-mobile-panel__body .sg-mobile-practices > li > a {
    min-height: 102px;
    padding: 18px;
  }

  .sg-team-system__visual {
    min-height: 400px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sg-mega-menu,
  .sg-practice-atlas__thumb img,
  .sg-case-card,
  .sg-case-card__visual img,
  .sg-briefing-card {
    transition: none;
  }
}
