:root {
  --ink: #151515;
  --muted: #6f747c;
  --line: #eceef2;
  --bg: #f7f7f8;
  --panel: #ffffff;
  --navy: #151344;
  --blue: #343092;
  --cyan: #2bb3c0;
  --green: #47704c;
  --amber: #6d5df6;
  --gold: #2bb3c0;
  --gold-soft: #edf7f2;
  --teal: #47704c;
  --teal-soft: #edf7f2;
  --violet: #6d5df6;
  --mint: #7abf8a;
  --red: #343092;
  --red-dark: #26236f;
  --charcoal: #101010;
  --radius: 8px;
  --shadow: 0 20px 55px rgba(16, 16, 16, .12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(236,238,242,.95);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-weight: 900;
  color: var(--navy);
}
.logo-brand {
  align-items: center;
  gap: 12px;
  padding: 4px 0;
}
.logo-brand img {
  width: clamp(58px, 6vw, 76px);
  height: clamp(58px, 6vw, 76px);
  object-fit: contain;
}
.footer-brand.logo-brand img {
  width: 78px;
  height: 78px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
  min-width: 0;
}
.brand-text strong {
  color: var(--blue);
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: .5px;
}
.brand-text small {
  color: var(--navy);
  font-size: clamp(14px, 1.25vw, 19px);
  font-weight: 700;
  text-transform: none;
  white-space: nowrap;
}
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text small { color: #d9e4f6; }
.brand span { font-size: 32px; line-height: 1; }
.brand small {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 20px; font-weight: 700; color: #243149; }
.main-nav > a, .mega-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 10px 0;
  cursor: pointer;
}
.nav-pill {
  padding: 10px 14px !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.nav-pill.dark { background: var(--red); color: #fff; border-color: var(--red); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 0;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.nav-toggle::before {
  top: 20px;
  box-shadow: 0 -7px 0 #fff, 0 7px 0 #fff;
}
.nav-toggle::after {
  top: 20px;
  opacity: 0;
}
.nav-toggle.open::before {
  box-shadow: none;
  transform: rotate(45deg);
}
.nav-toggle.open::after {
  opacity: 1;
  transform: rotate(-45deg);
}

.mega-menu { position: static; }
.mega-trigger::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.mega-panel {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  top: calc(100% - 4px);
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(360px, 1.25fr) minmax(260px, .8fr);
  gap: 18px;
  padding: 18px;
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(16,16,16,.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
}
.mega-menu.open .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-feature {
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(216,164,65,.35), transparent 34%),
    linear-gradient(145deg, #101010, #26236f);
}
.mega-feature h3 {
  font-size: 28px;
  color: #fff;
}
.mega-feature p {
  color: #e5e7eb;
  line-height: 1.65;
}
.mega-feature .button {
  margin-top: 12px;
  box-shadow: none;
}
.mega-section {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.mega-section h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 18px;
}
.mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.mega-links a {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid #f0f1f4;
  border-radius: 7px;
  background: #fbfbfc;
}
.mega-links a:hover,
.mega-mini a:hover,
.mega-tags a:hover {
  border-color: rgba(36,99,216,.34);
  background: #eef6ff;
}
.mega-links strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}
.mega-links span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.mega-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mega-tags a {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--teal-soft);
  color: #26236f;
  font-size: 13px;
  font-weight: 900;
}
.mega-mini {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.mega-mini a {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--navy);
}

.hero-slider {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgba(36,99,216,.34), transparent 32%),
    linear-gradient(135deg, #070707 0%, #151515 52%, #26236f 100%);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 36px;
  align-items: center;
  padding: clamp(40px, 8vw, 88px) clamp(18px, 5vw, 70px);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 28px 45px rgba(0,0,0,.34));
}
.hero-copy { max-width: 760px; }
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}
h1, h2, h3 { margin: 0; color: inherit; line-height: 1.08; letter-spacing: 0; }
.hero-copy h1 { font-size: clamp(44px, 5vw, 78px); max-width: 900px; }
.hero-copy p { margin: 22px 0 0; max-width: 660px; font-size: 20px; line-height: 1.65; color: #d9e4f6; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(244,61,61,.24);
}
.button.secondary, .button.ghost { background: #fff; color: var(--navy); box-shadow: none; border: 1px solid var(--line); }
.button.danger { background: linear-gradient(135deg, #b91c1c, #7f1d1d); color: #fff; }
.slider-controls {
  position: absolute;
  left: clamp(18px, 5vw, 70px);
  bottom: 34px;
  display: flex;
  gap: 10px;
}
.slider-controls button {
  width: 36px;
  height: 5px;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.35);
}
.slider-controls button.active { background: #fff; }

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.stats-band div { padding: 30px clamp(18px, 4vw, 56px); border-right: 1px solid var(--line); }
.stats-band strong { display: block; font-size: 34px; color: var(--gold); }
.stats-band span { color: var(--muted); font-weight: 800; }

.studio-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 32px;
  align-items: stretch;
  padding: 74px clamp(18px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(244,61,61,.08), transparent 38%),
    #fff;
  border-bottom: 1px solid var(--line);
}
.studio-copy {
  display: grid;
  align-content: center;
  max-width: 820px;
}
.studio-copy h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  color: var(--navy);
}
.studio-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 760px;
}
.studio-stack {
  display: grid;
  gap: 12px;
}
.studio-stack article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16,16,16,.06);
}
.studio-stack strong {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 900;
}
.studio-stack h3 {
  color: var(--navy);
  font-size: 24px;
}
.studio-stack p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-intro, .page-hero, .simple-page {
  padding: 86px clamp(18px, 5vw, 70px) 34px;
  width: 100%;
  max-width: none;
}
.visual-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 34px;
  align-items: center;
}
.visual-page-hero img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #eef3f9;
}
.section-intro h2, .page-hero h1, .simple-page h1 { font-size: clamp(34px, 4vw, 56px); color: var(--navy); }
.section-intro p, .page-hero p, .simple-page p { font-size: 18px; line-height: 1.7; color: var(--muted); max-width: 960px; }

.value-band {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 34px;
  padding: 76px clamp(18px, 5vw, 70px);
  background: #101010;
  color: #fff;
}
.value-band.compact {
  padding-top: 58px;
  padding-bottom: 58px;
  background: linear-gradient(135deg, #101010, #26236f);
}
.value-band h2 {
  font-size: clamp(30px, 3.6vw, 52px);
  color: #fff;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.value-grid article {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}
.value-grid h3 {
  color: #fff;
  font-size: 22px;
}
.value-grid p {
  margin-bottom: 0;
  color: #d6d9df;
  line-height: 1.65;
}

.google-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 54px clamp(18px, 5vw, 70px);
  background: linear-gradient(180deg, #fff, #f8fbff);
  border-bottom: 1px solid var(--line);
}
.reviews-head {
  min-width: 0;
}
.google-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  letter-spacing: 0;
  white-space: nowrap;
}
.google-brand b {
  margin-left: 8px;
  font: inherit;
}
.google-brand span:nth-child(1),
.google-brand span:nth-child(4) {
  color: #4285f4;
}
.google-brand span:nth-child(2),
.google-brand span:nth-child(6) {
  color: #ea4335;
}
.google-brand span:nth-child(3) {
  color: #fbbc05;
}
.google-brand span:nth-child(5) {
  color: #34a853;
}
.reviews-head h2 {
  max-width: none;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reviews-head .button {
  margin-top: 18px;
}
.review-summary {
  max-width: none;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 4px 18px;
  scroll-snap-type: x proximity;
  scrollbar-color: #4285f4 #e8f0fe;
}
.review-list::-webkit-scrollbar {
  height: 10px;
}
.review-list::-webkit-scrollbar-track {
  background: #e8f0fe;
  border-radius: 999px;
}
.review-list::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
  border-radius: 999px;
}
.review-track {
  position: relative;
  min-height: 310px;
}
.review-card {
  display: grid;
  align-content: start;
  gap: 10px;
  flex: 0 0 calc((100% - 60px) / 6);
  min-width: 175px;
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(66,133,244,.18);
  border-top: 4px solid #4285f4;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,251,255,.96)),
    radial-gradient(circle at 100% 0, rgba(66,133,244,.12), transparent 45%);
  box-shadow: 0 14px 34px rgba(60,64,67,.12);
  scroll-snap-align: start;
}
.review-person {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.review-person img,
.review-avatar-fallback {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(66,133,244,.18);
  object-fit: cover;
}
.review-avatar-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  font-weight: 900;
}
.review-track .review-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px) scale(.98);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.review-list .review-card,
.review-card:first-child {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.review-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.review-card strong {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  font-size: 15px;
  line-height: 1;
}
.review-card h3 {
  color: #202124;
  font-size: 15px;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card p {
  color: #5f6368;
  font-size: 13px;
  line-height: 1.45;
}
.review-card span {
  color: #4285f4;
  font-size: 12px;
  font-weight: 900;
}
.review-dots {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.review-dots button {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(52,48,146,.18);
  cursor: pointer;
}
.review-dots button.active {
  background: var(--blue);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 70px) 80px;
}
.service-grid.wide { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: #fff;
  border: 1px solid rgba(52, 48, 146, .14);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  background: #eef3f9;
}
.service-card span { margin-top: 16px; color: var(--teal); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.service-card h3 { margin-top: 8px; font-size: 22px; color: var(--navy); }
.service-card p { color: var(--muted); line-height: 1.6; flex: 1; }
.service-card a { font-weight: 900; color: var(--red-dark); }

.blog-section {
  padding: 34px clamp(18px, 5vw, 70px) 82px;
  background: #fff;
}
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.blog-categories a,
.blog-side-tags a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(52,48,146,.14);
  border-radius: 999px;
  background: #f7fbff;
  color: var(--navy);
  font-weight: 900;
}
.blog-categories a.active,
.blog-categories a:hover,
.blog-side-tags a:hover {
  background: var(--blue);
  color: #fff;
}
.blog-categories small,
.blog-side-tags small {
  opacity: .72;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  overflow: hidden;
  border: 1px solid rgba(52, 48, 146, .13);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(21, 19, 68, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 48, 146, .28);
  box-shadow: 0 24px 58px rgba(21, 19, 68, .13);
}
.blog-card a {
  display: grid;
  height: 100%;
  color: inherit;
}
.blog-card figure {
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #eef3f9, #f7fbff);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  padding: 0;
  background: #eef3f9;
}
.blog-card-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  padding: 22px;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.blog-meta span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(52,48,146,.08);
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
}
.blog-meta time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.blog-card h2 {
  color: var(--navy);
  font-size: 24px;
}
.blog-card p {
  color: var(--muted);
  line-height: 1.65;
}
.blog-card strong {
  color: var(--blue);
  font-weight: 900;
}
.blog-empty {
  grid-column: 1 / -1;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbff;
}
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.pagination a {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(52,48,146,.16);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}
.pagination a.active,
.pagination a:hover {
  background: var(--blue);
  color: #fff;
}
.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: 34px;
  align-items: stretch;
  padding: 46px clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 12% 0%, rgba(52,48,146,.14), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(43,179,192,.22), transparent 30%),
    linear-gradient(135deg, #f6f9ff 0%, #eef6fb 48%, #e8f7f4 100%);
  border-bottom: 1px solid rgba(52,48,146,.10);
}
.blog-hero-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  min-width: 0;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(52,48,146,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 24px 70px rgba(21,19,68,.10);
  backdrop-filter: blur(10px);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #5f6f88;
  font-size: 14px;
  font-weight: 800;
}
.breadcrumb a {
  color: var(--blue);
}
.breadcrumb a:hover {
  color: var(--red);
}
.breadcrumb strong {
  max-width: min(420px, 100%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #526174;
  font-weight: 900;
}
.blog-hero h1 {
  color: var(--navy);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.06;
  max-width: 980px;
}
.blog-hero p {
  max-width: 780px;
  color: #475569;
  font-size: 19px;
  line-height: 1.68;
}
.blog-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-hero-meta span {
  padding: 9px 12px;
  border: 1px solid rgba(52,48,146,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--navy);
  font-weight: 900;
}
.blog-hero figure {
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(52,48,146,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 28px 80px rgba(21,19,68,.14);
}
.blog-hero img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 16px;
  background: #eef3f9;
}
.blog-content {
  min-width: 0;
}
.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
  padding: 48px clamp(18px, 5vw, 70px);
  background: #fff;
}
.blog-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}
.blog-sidebar section {
  padding: 22px;
  border: 1px solid rgba(52,48,146,.13);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(21, 19, 68, .08);
}
.blog-sidebar h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 22px;
}
.blog-sidebar p {
  color: var(--muted);
  line-height: 1.65;
}
.blog-side-tags,
.blog-recent {
  display: grid;
  gap: 10px;
}
.blog-recent a {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.blog-recent a:last-child {
  border-bottom: 0;
}
.blog-recent span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}
.blog-recent strong {
  color: var(--navy);
}
.blog-contact-box {
  background: linear-gradient(145deg, var(--navy), var(--blue)) !important;
  color: #fff;
}
.blog-contact-box h2,
.blog-contact-box p {
  color: #fff;
}

.sector-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 28px clamp(18px, 5vw, 70px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sector-strip span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, #fafafa, var(--teal-soft));
  color: var(--navy);
  font-weight: 900;
}
.sector-strip span:nth-child(3n+1) { background: #edf7f2; color: var(--green); border-color: rgba(71, 112, 76, .2); }
.sector-strip span:nth-child(3n+2) { background: rgba(109, 93, 246, .09); color: var(--violet); border-color: rgba(109, 93, 246, .2); }
.sector-strip span:nth-child(3n+3) { background: rgba(43, 179, 192, .1); color: #176d76; border-color: rgba(43, 179, 192, .24); }

.process-band {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
  padding: 76px clamp(18px, 5vw, 70px);
  background: #fff;
  border-top: 1px solid var(--line);
}
.process-band h2 { font-size: clamp(30px, 3vw, 46px); color: var(--navy); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.process-steps article { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); }
.process-steps b { color: var(--gold); }
.process-steps p { color: var(--muted); line-height: 1.6; }

.detail-hero {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 42px;
  align-items: center;
  padding: 70px clamp(18px, 5vw, 70px);
  background: #fff;
}
.detail-hero h1 { font-size: clamp(38px, 5vw, 66px); color: var(--navy); }
.detail-hero p { font-size: 20px; line-height: 1.65; color: var(--muted); }
.detail-hero img { border-radius: var(--radius); box-shadow: var(--shadow); background: #eef3f9; }
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  padding: 56px clamp(18px, 5vw, 70px);
}
.rich-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 42px);
  line-height: 1.8;
  color: #334155;
  font-weight: 400;
}
.rich-content p,
.rich-content li,
.rich-content div {
  font-weight: 400;
}
.rich-content h2 { color: var(--navy); margin-top: 6px; }
.rich-content strong,
.rich-content b {
  color: var(--navy);
  font-weight: 800;
}
.rich-content em,
.rich-content i {
  font-style: italic;
}
.rich-content ul,
.rich-content ol {
  padding-left: 24px;
  margin: 14px 0;
}
.service-info-block {
  padding: 0 0 26px;
  margin: 0 0 26px;
  border-bottom: 1px solid var(--line);
}
.service-info-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.service-info-block h2 {
  font-size: clamp(26px, 3vw, 38px);
}
.service-info-block p {
  font-size: 17px;
}
.page-content { margin: 0 0 0; border-left: 0; border-right: 0; border-radius: 0; }
.side-panel {
  align-self: start;
  position: sticky;
  top: 90px;
  padding: 26px;
  background: linear-gradient(160deg, #111 0%, #211214 58%, #26236f 100%);
  color: #fff;
  border-radius: var(--radius);
}
.side-panel h2 { margin-top: 18px; color: #fff; }
.side-panel p { color: #d9e4f6; line-height: 1.55; }

.detail-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 70px) 72px;
  background: var(--bg);
}
.detail-extra article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.detail-extra h2 {
  font-size: 24px;
  color: var(--navy);
}
.detail-extra p {
  color: var(--muted);
  line-height: 1.7;
}

.cta-wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 68px clamp(18px, 5vw, 70px);
  background: linear-gradient(135deg, #fff, #fff6df);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-wide h2 {
  font-size: clamp(30px, 3.8vw, 52px);
  color: var(--navy);
}
.cta-wide p {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.7;
}

.about-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 24px;
}
.about-split.reverse { grid-template-columns: 1fr 420px; }
.about-split.reverse img { order: 2; }
.about-split img { border-radius: var(--radius); background: #eef3f9; }
.about-split h2 { color: var(--navy); font-size: 30px; }
.team-section {
  padding: 62px clamp(18px, 5vw, 70px);
  margin: 34px calc(clamp(18px, 5vw, 70px) * -1);
  background: linear-gradient(135deg, #f5fbff 0%, #eef6ff 52%, #ffffff 100%);
  border-block: 1px solid var(--line);
}
.team-section .section-head {
  max-width: 860px;
  margin-bottom: 28px;
}
.team-section .section-head h2 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
}
.team-section .section-head p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.team-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(52, 48, 146, .16);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 20px 45px rgba(7, 17, 38, .09);
}
.team-card:nth-child(2) { border-color: rgba(122, 191, 138, .35); }
.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}
.team-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 28px;
}
.team-card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 16px;
}
.team-card a,
.contact-person {
  color: var(--blue);
  font-weight: 900;
}

.contact-intro {
  padding: 72px clamp(18px, 5vw, 70px) 30px;
  background: #fff;
}
.contact-intro h1 {
  max-width: 1080px;
  font-size: clamp(38px, 5vw, 68px);
  color: var(--navy);
}
.contact-intro p {
  max-width: 960px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 20px;
}
.contact-layout, .auth-layout {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(420px, 1.18fr);
  gap: 28px;
  padding: 24px clamp(18px, 5vw, 70px) 64px;
  align-items: start;
  background: #fff;
}
.auth-layout { grid-template-columns: minmax(320px, 560px); justify-content: center; }
.contact-layout h1, .auth-layout h1 { font-size: clamp(34px, 4vw, 54px); color: var(--navy); }
.contact-layout p { color: var(--muted); line-height: 1.7; font-size: 18px; }
.contact-info-col,
.contact-layout .form-card {
  height: 100%;
}
.contact-card, .form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.contact-card { display: grid; gap: 6px; max-width: none; }
.contact-card strong { font-size: 24px; color: var(--red); }
.contact-person {
  display: grid;
  gap: 3px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.contact-person span {
  color: var(--navy);
  font-weight: 900;
}
.contact-person b {
  color: var(--blue);
  font-size: 18px;
}
.contact-address {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(52,48,146,.12);
  border-radius: 8px;
  background: #f7fbff;
}
.contact-address small {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}
.contact-address strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.45;
}
.contact-address a {
  width: fit-content;
  color: var(--blue);
  font-weight: 900;
}
.map-section {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 0 clamp(18px, 5vw, 70px) 72px;
  background: #fff;
}
.map-section > div {
  padding: 28px;
  border: 1px solid rgba(52,48,146,.12);
  border-radius: var(--radius);
  background: #f7fbff;
}
.map-section h2 {
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
}
.map-section p {
  color: var(--muted);
  line-height: 1.7;
}
.map-section iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(21,19,68,.10);
}
.form-card { display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 800; color: var(--navy); }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(52,48,146,.44);
  box-shadow: 0 0 0 4px rgba(52,48,146,.08);
  background: #fff;
}
input::placeholder,
textarea::placeholder {
  font-weight: 400;
}
select {
  cursor: pointer;
  font-weight: 400;
}
textarea { resize: vertical; }
.flash { padding: 14px 16px; border-radius: var(--radius); background: #eaf8f0; color: #0b7042; font-weight: 800; }
.flash.warning { background: #fff4e5; color: #9a3412; border: 1px solid #fed7aa; }

.panel-shell { padding: 56px clamp(18px, 5vw, 70px); }
.panel-top { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 28px; }
.panel-top h1 { color: var(--navy); font-size: clamp(30px, 4vw, 52px); }
.orders { display: grid; gap: 18px; }
.order-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.order-head { display: flex; justify-content: space-between; gap: 18px; }
.order-head h2 { margin-top: 6px; color: var(--navy); }
.order-head span { align-self: start; padding: 9px 12px; border-radius: 6px; background: #fff1f1; color: var(--red-dark); font-weight: 900; }
.progress { height: 10px; background: #e8edf5; border-radius: 99px; overflow: hidden; margin: 18px 0; }
.progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--red), var(--red-dark)); }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.timeline div { padding: 14px; background: #f7fafc; border-radius: 6px; }
.timeline p { margin-bottom: 0; color: var(--muted); }

.footer {
  padding: 56px clamp(18px, 5vw, 70px) 26px;
  background: linear-gradient(135deg, #071126, #151344 62%, #26236f);
  color: #d9e4f6;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1fr 1fr; gap: 34px; }
.footer h3 { color: #fff; margin-bottom: 14px; }
.footer a { display: block; margin: 9px 0; color: #d9e4f6; }
.footer-brand span { color: #fff; }
.footer-mail { color: #ff8a84 !important; font-weight: 900; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); color: #9eb0cc; }
.powered-by-ewo {
  width: 100%;
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 8px 14px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.powered-by-ewo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.powered-by-ewo img {
  width: 92px;
  height: auto;
  display: block;
}

.admin-body {
  display: grid;
  grid-template-columns: 292px 1fr;
  min-height: 100vh;
  background:
    radial-gradient(circle at 86% 0, rgba(43,179,192,.12), transparent 28%),
    linear-gradient(135deg, #f7f9fd 0%, #eef3f9 100%);
}
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  background:
    radial-gradient(circle at 18% 0, rgba(255,255,255,.92), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #eef5fb 54%, #e8f0f8 100%);
  color: #25324a;
  border-right: 1px solid rgba(52,48,146,.10);
  box-shadow: 16px 0 44px rgba(21,19,68,.08);
}
.admin-brand {
  display: grid;
  align-items: start;
  margin-bottom: 14px;
  padding: 18px !important;
  border: 1px solid rgba(52,48,146,.12);
  background: #fff;
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(21,19,68,.08);
}
.admin-brand span { font-size: 30px; }
.admin-brand small { color: #64748b; }
.admin-sidebar a {
  position: relative;
  padding: 12px 13px 12px 16px;
  border: 1px solid rgba(52,48,146,0);
  border-radius: 8px;
  color: #334155;
  font-weight: 800;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, color .18s ease, box-shadow .18s ease;
}
.admin-sidebar a:hover {
  transform: translateX(2px);
  border-color: rgba(52,48,146,.12);
  background: #fff;
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(21,19,68,.07);
}
.admin-sidebar a:not(.admin-brand)::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(52,48,146,.28);
  transform: translateY(-50%);
}
.admin-sidebar a:not(.admin-brand):hover::before {
  background: var(--red);
}
.admin-main { padding: 30px; min-width: 0; }
.admin-main .button {
  color: #fff;
  background: linear-gradient(135deg, #ef3934, #b8141c);
  border: 1px solid rgba(184,20,28,.22);
  box-shadow: 0 12px 26px rgba(184,20,28,.18);
}
.admin-main .button:hover {
  color: #fff;
  filter: brightness(.98);
  transform: translateY(-1px);
}
.admin-main .button.secondary,
.admin-main .button.ghost {
  color: var(--blue);
  background: #fff;
  border: 1px solid rgba(52,48,146,.24);
  box-shadow: 0 10px 24px rgba(21,19,68,.06);
}
.admin-main .button.secondary:hover,
.admin-main .button.ghost:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
.admin-main .button.danger {
  color: #fff;
  background: linear-gradient(135deg, #b91c1c, #7f1d1d);
}
.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(52,48,146,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 48px rgba(21,19,68,.08);
  backdrop-filter: blur(12px);
}
.admin-top span { color: var(--teal); font-weight: 900; text-transform: uppercase; font-size: 12px; }
.admin-top h1 { color: var(--navy); margin-top: 4px; }
.admin-top strong {
  padding: 10px 14px;
  border: 1px solid rgba(52,48,146,.10);
  border-radius: 999px;
  background: #f7fbff;
  color: var(--blue);
}
.admin-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.admin-section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}
.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.admin-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.admin-cards article, .admin-note, .admin-list, .admin-form {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(52,48,146,.12);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 16px 42px rgba(21,19,68,.07);
}
.admin-cards article {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.admin-cards article:hover {
  transform: translateY(-3px);
  border-color: rgba(52,48,146,.22);
  box-shadow: 0 22px 56px rgba(21,19,68,.11);
}
.admin-cards strong { display: block; font-size: 38px; color: var(--blue); }
.admin-cards span { color: var(--muted); font-weight: 900; }
.admin-cards p {
  color: var(--muted);
  line-height: 1.5;
  min-height: 46px;
}
.admin-cards a {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 900;
}
.admin-dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 16px;
  margin-top: 16px;
}
.admin-quick-actions,
.admin-actions-inline,
.admin-blog-tools div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.admin-actions-inline { margin-top: 0; justify-content: flex-end; }
.admin-blog-tools {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbff;
}
.admin-blog-tools strong { color: var(--navy); }
.admin-blog-tools span {
  display: inline-flex;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-weight: 900;
}
.admin-list { display: grid; gap: 10px; }
.admin-list a, .admin-list article {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.admin-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(52,48,146,.22);
  box-shadow: 0 14px 32px rgba(21,19,68,.08);
}
.admin-list img { width: 72px; height: 54px; object-fit: cover; border-radius: 5px; background: #eef3f9; }
.admin-pagination {
  justify-content: flex-start;
  margin-top: 14px;
}
.admin-form { display: grid; gap: 16px; max-width: 1000px; }
.admin-form fieldset {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(52,48,146,.12);
  border-radius: 12px;
  background: #fbfdff;
}
.admin-form legend {
  padding: 0 8px;
  color: var(--red-dark);
  font-weight: 900;
}
.settings-form {
  max-width: 1180px;
}
.admin-form .check { display: flex; align-items: center; gap: 10px; }
.admin-form .check input { width: auto; }
.admin-help { color: var(--muted); font-weight: 800; }
.admin-form button:disabled {
  opacity: .5;
  cursor: not-allowed;
}
.admin-preview { max-width: 320px; border-radius: 6px; background: #eef3f9; }
.messages article { grid-template-columns: 1fr; align-items: start; }

@media (max-width: 1100px) {
  .site-header { gap: 16px; }
  .main-nav { gap: 14px; font-size: 15px; }
  .logo-brand img { width: 64px; height: 64px; }
  .brand-text strong { font-size: 26px; }
  .brand-text small { font-size: 15px; }
  .service-grid, .service-grid.wide, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-slide, .detail-hero, .detail-layout, .blog-detail-layout, .process-band, .contact-layout, .map-section, .studio-showcase, .google-reviews, .value-band, .cta-wide { grid-template-columns: 1fr; }
  .detail-extra { grid-template-columns: 1fr; }
  .mega-panel { grid-template-columns: 1fr; }
  .mega-links { grid-template-columns: 1fr; }
  .side-panel { position: static; }
  .blog-sidebar { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(7, 17, 38, .38);
  }
  .site-header {
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
  }
  .logo-brand img {
    width: 58px;
    height: 58px;
  }
  .logo-brand { gap: 9px; }
  .brand-text strong { font-size: 22px; }
  .brand-text small { font-size: 14px; }
  .nav-toggle { display: inline-flex; position: relative; z-index: 70; flex: 0 0 auto; }
  .main-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 64px;
    z-index: 65;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: calc(100vh - 82px);
    overflow: auto;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav > a,
  .mega-trigger {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 6px;
    background: #f7fbff;
  }
  .nav-pill {
    text-align: center;
    justify-content: center !important;
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
  }
  .mega-menu { position: relative; }
  .mega-trigger { text-align: left; }
  .mega-menu.open .mega-trigger {
    background: var(--navy);
    color: #fff;
  }
  .mega-panel {
    position: static;
    display: none;
    max-height: 68vh;
    overflow: auto;
    padding: 10px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border-radius: 6px;
    margin-top: 4px;
  }
  .mega-menu.open .mega-panel { display: grid; }
  .mega-feature { padding: 18px; }
  .mega-feature h3 { font-size: 22px; }
  .hero-slider { min-height: 860px; }
  .hero-slide { padding: 38px 18px 88px; gap: 24px; }
  .hero-copy h1 { font-size: clamp(36px, 10vw, 48px); }
  .hero-copy p { font-size: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; justify-content: center; text-align: center; }
  .stats-band, .service-grid, .service-grid.wide, .blog-grid, .process-steps, .timeline, .footer-grid, .team-grid, .team-card { grid-template-columns: 1fr; }
  .blog-section { padding: 24px 14px 64px; }
  .blog-categories { gap: 8px; margin-bottom: 18px; }
  .blog-categories a { padding: 8px 10px; font-size: 13px; }
  .blog-grid { gap: 14px; }
  .blog-card { border-radius: 8px; }
  .blog-card a { grid-template-columns: 132px 1fr; min-height: 132px; }
  .blog-card figure { height: 100%; }
  .blog-card img { height: 100%; aspect-ratio: auto; }
  .blog-card-body { padding: 14px; gap: 8px; }
  .blog-meta { align-items: flex-start; flex-direction: column; gap: 5px; }
  .blog-card h2 { font-size: 19px; line-height: 1.16; }
  .blog-card p { font-size: 14px; line-height: 1.45; margin: 0; }
  .google-reviews { padding: 42px 18px; gap: 18px; }
  .reviews-head h2 { font-size: 25px; }
  .review-summary { font-size: 15px; }
  .review-list { gap: 12px; }
  .review-card { flex-basis: 250px; min-width: 250px; }
  .review-track { min-height: 330px; }
  .review-dots { justify-content: flex-start; }
  .powered-by-ewo { min-height: 38px; padding: 5px 10px; }
  .powered-by-ewo a { gap: 7px; font-size: 10px; }
  .powered-by-ewo img { width: 70px; }
  .blog-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 18px;
  }
  .blog-hero-copy {
    padding: 24px;
  }
  .blog-hero img {
    width: 100%;
    min-height: 280px;
    max-height: 320px;
    object-fit: cover;
  }
  .blog-detail-layout {
    padding: 28px 18px 52px;
  }
  .blog-content {
    border-radius: 8px;
  }
  .blog-sidebar {
    gap: 14px;
  }
  .blog-sidebar section {
    padding: 20px;
  }
  .value-grid { grid-template-columns: 1fr; }
  .about-split, .about-split.reverse { grid-template-columns: 1fr; }
  .about-split.reverse img { order: 0; }
  .team-card { gap: 16px; }
  .team-card img { max-height: 340px; }
  .panel-top, .order-head, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-layout {
    gap: 24px;
    padding: 22px 18px 42px;
  }
  .contact-intro {
    padding: 42px 18px 18px;
  }
  .contact-intro h1 {
    font-size: clamp(32px, 8vw, 44px);
  }
  .contact-intro p {
    font-size: 17px;
  }
  .visual-page-hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .visual-page-hero img {
    max-height: 300px;
  }
  .modern-contact-card,
  .form-card {
    max-width: none;
    width: 100%;
  }
  .map-section {
    padding: 0 18px 48px;
    gap: 16px;
  }
  .map-section > div {
    padding: 22px;
  }
  .map-section iframe {
    min-height: 300px;
  }
  .admin-body { grid-template-columns: 1fr; }
  .admin-section-head { align-items: flex-start; flex-direction: column; }
  .admin-sidebar { position: static; height: auto; box-shadow: none; }
  .admin-main { padding: 18px; }
  .admin-cards { grid-template-columns: 1fr 1fr; }
  .admin-dashboard-grid { grid-template-columns: 1fr; }
  .admin-list a { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .site-header { padding-inline: 10px; }
  .logo-brand img { width: 54px; height: 54px; }
  .brand-text strong { font-size: 19px; }
  .brand-text small { font-size: 12px; }
  .main-nav { left: 8px; right: 8px; top: 60px; max-height: calc(100vh - 72px); }
  .mega-panel { max-height: 58vh; }
  .mega-tags { gap: 6px; }
  .hero-slider { min-height: 900px; }
  .hero-slide img { max-height: 300px; object-fit: contain; }
  .stats-band { padding-block: 28px; }
  .google-reviews { padding: 34px 14px; }
  .reviews-head h2 { font-size: 21px; }
  .review-summary { font-size: 14px; }
  .review-card { flex-basis: 78vw; min-width: 78vw; padding: 16px; }
  .review-list { gap: 12px; }
  .review-card p { font-size: 13px; }
  .review-track { min-height: 350px; }
  .section-intro h2,
  .studio-copy h2,
  .value-band h2,
  .cta-wide h2,
  .detail-hero h1,
  .page-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
  }
  .service-card,
  .contact-card,
  .form-card,
  .order-card {
    padding: 20px;
  }
  .contact-layout {
    padding: 18px 14px 34px;
  }
  .contact-intro {
    padding: 34px 14px 14px;
  }
  .advisor-actions.contact-actions {
    gap: 8px;
  }
  .contact-address {
    padding: 12px;
  }
  .map-section {
    padding-inline: 14px;
  }
  .map-section iframe {
    min-height: 260px;
  }
  .team-section {
    padding-inline: 18px;
    margin-inline: -18px;
  }
  .team-card img { max-height: 280px; }
  .blog-card a { grid-template-columns: 106px 1fr; min-height: 122px; }
  .blog-card-body { padding: 12px; }
  .blog-card h2 { font-size: 17px; }
  .blog-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .blog-card strong { font-size: 13px; }
  .blog-hero {
    gap: 18px;
    padding: 28px 14px;
  }
  .blog-hero-copy {
    padding: 18px;
    border-radius: 12px;
  }
  .blog-hero h1 {
    font-size: clamp(30px, 8vw, 42px);
  }
  .blog-hero p {
    font-size: 16px;
    line-height: 1.55;
  }
  .breadcrumb {
    font-size: 12px;
    gap: 6px;
  }
  .breadcrumb strong {
    max-width: 170px;
  }
  .blog-hero-meta span {
    padding: 8px 10px;
    font-size: 13px;
  }
  .blog-hero img {
    min-height: 220px;
    max-height: 240px;
    object-fit: cover;
  }
  .blog-detail-layout {
    gap: 16px;
    padding: 22px 14px 42px;
  }
  .blog-content {
    padding: 20px;
    border-radius: 8px;
  }
  .blog-content h2 {
    font-size: 24px;
  }
  .blog-content p {
    font-size: 16px;
    line-height: 1.72;
    font-weight: 400;
  }
  .blog-sidebar {
    gap: 12px;
  }
  .blog-sidebar section {
    padding: 18px;
    box-shadow: none;
  }
  .blog-sidebar h2 {
    font-size: 20px;
  }
  .blog-side-tags {
    display: flex;
    flex-wrap: wrap;
  }
  .blog-recent a {
    padding: 10px 0;
  }
  .powered-by-ewo img { width: 62px; }
  .admin-cards { grid-template-columns: 1fr; }
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 2px;
  padding: 13px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, var(--green));
  color: #fff;
  box-shadow: 0 18px 38px rgba(37, 211, 102, .28);
  font-weight: 900;
}
.whatsapp-float span { font-size: 12px; opacity: .92; }
.whatsapp-float strong { font-size: 15px; }
.whatsapp-contact, .whatsapp-inline { background: linear-gradient(135deg, #25d366, var(--green)); color: #fff !important; }
.pro-advisor-card,
.modern-contact-card,
.emukellef-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(52, 48, 146, .14);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,251,255,.92)),
    radial-gradient(circle at 100% 0, rgba(43,179,192,.18), transparent 38%);
  box-shadow: 0 24px 70px rgba(21, 19, 68, .13);
  transform-style: preserve-3d;
  transition: transform .18s ease, box-shadow .18s ease;
}
.pro-advisor-card::before,
.modern-contact-card::before,
.emukellef-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(52,48,146,.10), transparent 42%, rgba(71,112,76,.12));
}
.pro-advisor-card {
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 28px;
  padding: clamp(22px, 4vw, 38px);
}
.advisor-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.advisor-visual img {
  width: 132px;
  height: 132px;
  padding: 0;
  background: transparent;
  object-fit: contain;
}
.advisor-visual span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
}
.advisor-content {
  display: grid;
  gap: 12px;
}
.advisor-content small,
.contact-kicker {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}
.advisor-content h3,
.modern-contact-card h2 {
  margin: 0;
  color: var(--navy);
}
.advisor-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.advisor-actions .button {
  width: auto;
  min-height: 46px;
  gap: 8px;
}
.advisor-actions i,
.extension-button i {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  font-style: normal;
}
.call-inline {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(109, 93, 246, .20);
}
.advisor-phone {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(52,48,146,.08);
  color: var(--blue);
  font-weight: 900;
}
.modern-contact-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 36px);
}
.contact-mail {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(52,48,146,.16);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-weight: 900;
  word-break: break-word;
}
.contact-mail:hover {
  color: #fff;
  background: var(--blue);
}
.contact-actions {
  margin-top: 8px;
}
.advisor-showcase {
  background:
    linear-gradient(180deg, #fff, #f7fbff),
    radial-gradient(circle at 15% 10%, rgba(43,179,192,.12), transparent 34%);
}
.advisor-profile-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 22px;
  max-width: 1040px;
  margin: 30px auto 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(52,48,146,.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,251,255,.92)),
    radial-gradient(circle at 100% 0, rgba(43,179,192,.18), transparent 42%);
  box-shadow: 0 26px 75px rgba(21, 19, 68, .14);
  transform-style: preserve-3d;
  transition: transform .18s ease, box-shadow .18s ease;
}
.advisor-profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(52,48,146,.10), transparent 46%, rgba(71,112,76,.11));
}
.advisor-profile-top {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  align-items: center;
}
.advisor-logo-badge {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 18px 36px rgba(52,48,146,.22);
}
.advisor-logo-badge img {
  width: 94px;
  height: 94px;
  object-fit: contain;
}
.advisor-status {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(71,112,76,.10);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.advisor-profile-card h3 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
}
.advisor-profile-card p {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}
.advisor-profile-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.advisor-profile-meta div {
  padding: 16px;
  border: 1px solid rgba(52,48,146,.12);
  border-radius: 8px;
  background: #fff;
}
.advisor-profile-meta small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 800;
}
.advisor-profile-meta strong {
  color: var(--navy);
}
.advisor-profile-actions {
  padding-top: 4px;
}
.emukellef-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(21,19,68,.96), rgba(52,48,146,.90)),
    linear-gradient(90deg, var(--cyan), var(--teal));
  color: #fff;
}
.emukellef-hero .eyebrow,
.emukellef-hero h1,
.emukellef-hero p {
  color: #fff;
}
.emukellef-hero .eyebrow {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
}
.emukellef-hero h1 {
  max-width: 840px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: .98;
  margin: 12px 0 18px;
}
.emukellef-hero p {
  max-width: 760px;
  font-size: 18px;
  opacity: .91;
}
.emukellef-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.extension-button {
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  color: #061323 !important;
}
.emukellef-card {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 30px;
  color: var(--ink);
}
.emukellef-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(52,48,146,.09);
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
}
.emukellef-card h2 {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 44px);
  margin: 16px 0 10px;
}
.emukellef-card p {
  color: #334155;
}
.emukellef-content {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 72px);
  background: #fff;
}
.emukellef-content article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  box-shadow: 0 16px 42px rgba(21,19,68,.08);
}
.emukellef-content h2 {
  color: var(--navy);
  margin-top: 0;
}
.browser-list {
  display: grid;
  gap: 14px;
}
.browser-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: #f7fbff;
}
.browser-list strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
}
.team-grid.single { grid-template-columns: minmax(280px, 780px); }
.advisor-card img { background: var(--teal-soft); padding: 20px; object-fit: contain; }
.pro-advisor-card .advisor-visual img { background: transparent; padding: 0; }
.wysiwyg-wrap { display: grid; gap: 8px; }
.wysiwyg-toolbar { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px; border: 1px solid var(--line); border-radius: 6px; background: #f8fafc; }
.wysiwyg-toolbar button { border: 1px solid var(--line); background: #fff; border-radius: 5px; padding: 7px 10px; font-weight: 900; cursor: pointer; }
.wysiwyg-editor { min-height: 240px; padding: 14px; border: 1px solid var(--line); border-radius: 6px; background: #fff; line-height: 1.7; font-weight: 400; color: var(--ink); }
.wysiwyg-editor p,
.wysiwyg-editor li,
.wysiwyg-editor div {
  font-weight: 400;
}

/* Dark law demo theme */
:root {
  --ink: #f4efe3;
  --muted: #b8ad98;
  --line: rgba(227, 191, 104, .18);
  --bg: #090b12;
  --panel: #111520;
  --navy: #f6df9e;
  --blue: #d4a94f;
  --cyan: #8f1d2c;
  --green: #2f6f5e;
  --amber: #e3bf68;
  --gold: #e3bf68;
  --gold-soft: rgba(227, 191, 104, .12);
  --teal: #d4a94f;
  --teal-soft: rgba(227, 191, 104, .10);
  --violet: #6f1d2d;
  --mint: #34a779;
  --red: #8f1d2c;
  --red-dark: #5d111d;
  --charcoal: #050609;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

body {
  background:
    linear-gradient(180deg, #090b12 0%, #0f1119 48%, #090b12 100%);
  color: var(--ink);
}

.site-header {
  background: rgba(8, 10, 16, .92);
  border-bottom-color: rgba(227, 191, 104, .18);
}

.main-nav { color: #efe3c0; }
.brand-text strong,
.brand-text small,
.main-nav > a:hover,
.mega-trigger:hover { color: #f6df9e; }

.nav-pill,
.mega-section,
.service-card,
.blog-card,
.form-card,
.contact-card,
.side-panel,
.blog-sidebar section,
.rich-content,
.page-content,
.advisor-profile-card,
.modern-contact-card,
.emukellef-card,
.emukellef-content article {
  background: linear-gradient(180deg, rgba(20, 24, 35, .98), rgba(13, 16, 25, .98));
  border-color: rgba(227, 191, 104, .18);
  color: #f4efe3;
}

.hero-slider {
  background:
    linear-gradient(90deg, rgba(9, 11, 18, .96) 0%, rgba(9, 11, 18, .78) 50%, rgba(9, 11, 18, .28) 100%),
    radial-gradient(circle at 72% 28%, rgba(227, 191, 104, .24), transparent 30%),
    linear-gradient(135deg, #050609 0%, #121722 52%, #4e111b 100%);
}

.hero-slide img {
  max-height: 560px;
  object-fit: cover;
  border: 1px solid rgba(227, 191, 104, .26);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0,0,0,.55);
}

.button {
  background: linear-gradient(135deg, #c99b3f, #8f1d2c);
  box-shadow: 0 14px 34px rgba(143, 29, 44, .28);
}

.button.secondary,
.button.ghost {
  background: rgba(255,255,255,.04);
  color: #f6df9e;
  border-color: rgba(227, 191, 104, .22);
}

.stats-band,
.studio-showcase,
.google-reviews,
.blog-section,
.advisor-showcase {
  background: #0d1018;
  border-color: rgba(227, 191, 104, .14);
}

.stats-band div { border-right-color: rgba(227, 191, 104, .14); }
.section-intro h2,
.page-hero h1,
.simple-page h1,
.studio-copy h2,
.service-card h3,
.blog-card h2,
.reviews-head h2,
.advisor-profile-card h3,
.modern-contact-card h2,
.emukellef-card h2,
.emukellef-content h2,
.rich-content h2 { color: #f6df9e; }

.section-intro p,
.page-hero p,
.simple-page p,
.studio-copy p,
.service-card p,
.blog-card p,
.advisor-profile-card p,
.modern-contact-card p,
.emukellef-card p,
.emukellef-content p,
.rich-content p { color: #c8bda6; }

.value-band,
.process-band,
.cta-wide,
.emukellef-hero {
  background:
    linear-gradient(135deg, rgba(143, 29, 44, .24), transparent 42%),
    linear-gradient(135deg, #050609, #111827);
}

.value-grid article,
.process-steps article,
.studio-stack article,
.review-card,
.contact-address,
.advisor-profile-meta div,
.browser-list div {
  background: rgba(255,255,255,.035);
  border-color: rgba(227, 191, 104, .18);
}

.mega-panel {
  background: rgba(10, 13, 20, .98);
  border-color: rgba(227, 191, 104, .18);
}

.mega-feature {
  background: linear-gradient(145deg, #090b12, #641421);
}

.mega-links a,
.mega-mini a,
.mega-tags a,
.blog-categories a,
.blog-side-tags a {
  background: rgba(255,255,255,.04);
  border-color: rgba(227, 191, 104, .16);
  color: #f6df9e;
}

.footer {
  background: #050609;
  border-top: 1px solid rgba(227, 191, 104, .18);
}

.powered-by-ewo { display: none; }

.whatsapp-float {
  background: linear-gradient(135deg, #1f8f5f, #0d513d);
}

/* Full redesign: noir legal dossier */
:root {
  --ink: #f8f0dc;
  --muted: #a99f8c;
  --line: rgba(216, 178, 92, .22);
  --bg: #06070a;
  --panel: #11141b;
  --navy: #f4d98d;
  --blue: #d8b25c;
  --red: #a32835;
  --red-dark: #68151f;
  --gold: #d8b25c;
  --shadow: 0 38px 100px rgba(0, 0, 0, .55);
}

html {
  background: #06070a;
}

body {
  background:
    linear-gradient(90deg, rgba(216,178,92,.06) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(180deg, #06070a 0%, #0d0f15 44%, #090a0e 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 20%, rgba(163, 40, 53, .22), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(216, 178, 92, .13), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,.035), transparent 34%);
  pointer-events: none;
}

.site-header {
  position: fixed;
  left: 22px;
  right: 22px;
  top: 18px;
  z-index: 90;
  min-height: 82px;
  padding: 10px 18px;
  border: 1px solid rgba(216, 178, 92, .28);
  border-radius: 8px;
  background: rgba(8, 10, 14, .78);
  box-shadow: 0 18px 70px rgba(0,0,0,.42);
  backdrop-filter: blur(22px);
}

.logo-brand img {
  width: 54px;
  height: 54px;
}

.brand-text strong {
  font-size: clamp(20px, 2vw, 28px);
  color: #fff4c8;
}

.brand-text small {
  color: #d8b25c;
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
}

.main-nav {
  gap: 8px;
  color: #f8f0dc;
}

.main-nav > a,
.mega-trigger {
  min-height: 42px;
  padding: 11px 14px;
  border-radius: 6px;
}

.main-nav > a:hover,
.mega-trigger:hover {
  background: rgba(216, 178, 92, .10);
}

.nav-pill {
  border-color: rgba(216,178,92,.34);
  background: #d8b25c;
  color: #100d08 !important;
}

.main-nav > a.nav-pill {
  background: #d8b25c;
  color: #100d08 !important;
  border: 1px solid rgba(255, 244, 200, .5);
  box-shadow: 0 12px 28px rgba(216,178,92,.16);
}

.main-nav > a.nav-pill:hover {
  background: #fff1c4;
  color: #100d08 !important;
}

.hero-slider {
  min-height: 100vh;
  padding-top: 104px;
  background:
    linear-gradient(90deg, rgba(6,7,10,.96) 0%, rgba(6,7,10,.84) 42%, rgba(6,7,10,.34) 72%, rgba(6,7,10,.78) 100%),
    linear-gradient(135deg, #06070a, #1b1115 58%, #07080b);
}

.hero-slide {
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: clamp(118px, 14vw, 170px) clamp(22px, 6vw, 88px) clamp(74px, 8vw, 104px);
}

.hero-slide::before {
  content: "";
  position: absolute;
  left: clamp(22px, 6vw, 88px);
  top: 148px;
  width: 92px;
  height: 3px;
  background: #d8b25c;
  box-shadow: 118px 0 0 rgba(216, 178, 92, .32);
}

.hero-slide img {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(57vw, 820px);
  height: 100%;
  max-height: none;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  opacity: .68;
  filter: saturate(.92) contrast(1.08);
  box-shadow: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 930px;
  padding-left: clamp(0px, 2vw, 34px);
}

.eyebrow {
  color: #d8b25c;
  font-size: 11px;
}

.hero-copy .eyebrow {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid rgba(216,178,92,.28);
  background: rgba(6,7,10,.52);
}

.hero-copy h1 {
  max-width: 780px;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 116px);
  font-weight: 700;
  line-height: .9;
  color: #fff5cf;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 640px;
  color: #e5dbc4;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.68;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  min-height: 52px;
  border: 1px solid rgba(216,178,92,.34);
  border-radius: 4px;
  background: #d8b25c;
  color: #0e0a05;
  box-shadow: 0 22px 48px rgba(216,178,92,.18);
}

.button.secondary,
.button.ghost {
  background: rgba(255,255,255,.035);
  color: #fff1c4;
}

.slider-controls {
  left: clamp(22px, 6vw, 88px);
  bottom: 36px;
}

.slider-controls button {
  height: 3px;
  border-radius: 0;
  background: rgba(216,178,92,.26);
}

.slider-controls button.active {
  width: 58px;
  background: #d8b25c;
}

.stats-band {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 44px));
  margin: -44px auto 0;
  border: 1px solid rgba(216,178,92,.28);
  border-radius: 8px;
  background: rgba(14, 16, 22, .94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stats-band div {
  padding: 26px clamp(18px, 3vw, 34px);
  border-right-color: rgba(216,178,92,.16);
}

.stats-band strong {
  font-family: Georgia, "Times New Roman", serif;
  color: #fff5cf;
  font-size: clamp(32px, 3vw, 48px);
}

.stats-band span {
  color: #bdb29d;
}

.studio-showcase,
.value-band,
.section-intro,
.service-grid,
.sector-strip,
.process-band,
.cta-wide,
.page-hero,
.blog-section,
.contact-layout,
.contact-intro,
.map-section,
.emukellef-hero,
.emukellef-content {
  padding-left: clamp(22px, 6vw, 88px);
  padding-right: clamp(22px, 6vw, 88px);
}

.studio-showcase {
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  padding-top: 112px;
  padding-bottom: 112px;
  background:
    linear-gradient(90deg, rgba(163,40,53,.12), transparent 42%),
    #090a0e;
}

.studio-copy h2,
.value-band h2,
.section-intro h2,
.page-hero h1,
.cta-wide h2,
.process-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: #fff5cf;
  letter-spacing: 0;
}

.studio-stack {
  counter-reset: dossier;
  gap: 0;
  border: 1px solid rgba(216,178,92,.22);
  border-bottom: 0;
}

.studio-stack article {
  position: relative;
  padding: 30px 34px 30px 104px;
  border: 0;
  border-bottom: 1px solid rgba(216,178,92,.22);
  border-radius: 0;
  background: rgba(255,255,255,.026);
  box-shadow: none;
}

.studio-stack strong {
  position: absolute;
  left: 28px;
  top: 28px;
  color: #d8b25c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.studio-stack h3,
.value-grid h3,
.process-steps h3,
.service-card h3,
.blog-card h2 {
  color: #fff1c4;
}

.value-band {
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  padding-top: 100px;
  padding-bottom: 100px;
  background:
    linear-gradient(135deg, rgba(216,178,92,.08), transparent 38%),
    #101219;
}

.value-grid {
  gap: 1px;
  border: 1px solid rgba(216,178,92,.22);
  background: rgba(216,178,92,.22);
}

.value-grid article,
.process-steps article {
  border: 0;
  border-radius: 0;
  background: #0a0c11;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(216,178,92,.22);
  padding-top: 0;
  padding-bottom: 100px;
}

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

.service-card {
  min-height: 470px;
  border: 0;
  border-radius: 0;
  background: #0d1017;
  box-shadow: none;
}

.service-card:hover {
  transform: none;
  background: #151923;
  box-shadow: inset 0 0 0 1px rgba(216,178,92,.36);
}

.service-card img {
  border-radius: 0;
  filter: grayscale(.2) contrast(1.08);
}

.service-card span,
.blog-meta span {
  color: #d8b25c;
}

.service-card a,
.blog-card strong {
  color: #f4d98d;
}

.sector-strip {
  justify-content: flex-start;
  gap: 0;
  border-top: 1px solid rgba(216,178,92,.18);
  border-bottom: 1px solid rgba(216,178,92,.18);
  background: #090a0e;
}

.sector-strip span {
  border-right: 1px solid rgba(216,178,92,.16);
  padding: 16px 22px;
  color: #d8b25c;
}

.process-band {
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 48px;
  padding-top: 100px;
  padding-bottom: 100px;
  background: #0f1219;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(216,178,92,.22);
  border: 1px solid rgba(216,178,92,.22);
}

.process-steps article b {
  color: #d8b25c;
}

.cta-wide {
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
  border-top: 1px solid rgba(216,178,92,.18);
  background:
    linear-gradient(90deg, #68151f, #11141b);
}

.page-hero,
.contact-intro {
  padding-top: 168px;
  padding-bottom: 58px;
  background:
    linear-gradient(135deg, rgba(216,178,92,.08), transparent 36%),
    #08090d;
}

.page-hero h1,
.contact-intro h1 {
  max-width: 1080px;
  font-size: clamp(42px, 6vw, 82px);
}

.mega-panel {
  top: calc(100% + 10px);
  left: 22px;
  right: 22px;
  border-radius: 8px;
}

.whatsapp-float {
  right: 28px;
  bottom: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 4px;
  background: #0f6b4d;
}

@media (max-width: 1100px) {
  .service-grid,
  .service-grid.wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-header {
    left: 10px;
    right: 10px;
    top: 10px;
    min-height: 70px;
    padding: 8px 10px;
  }

  .nav-toggle {
    background: #d8b25c;
    color: #0e0a05;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    background: #0e0a05;
  }

  .nav-toggle::before {
    box-shadow: 0 -7px 0 #0e0a05, 0 7px 0 #0e0a05;
  }

  .main-nav {
    top: 88px;
    background: rgba(8,10,14,.98);
    border-color: rgba(216,178,92,.25);
  }

  .hero-slider {
    min-height: 840px;
  }

  .hero-slide {
    align-items: end;
    padding: 120px 18px 94px;
  }

  .hero-slide img {
    width: 100%;
    height: 52%;
    opacity: .38;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  }

  .hero-copy h1 {
    font-size: clamp(48px, 15vw, 74px);
  }

  .hero-actions {
    flex-direction: row;
  }

  .stats-band,
  .studio-showcase,
  .value-band,
  .process-band,
  .cta-wide {
    grid-template-columns: 1fr;
  }

  .stats-band {
    width: calc(100% - 28px);
    margin-top: -34px;
  }

  .service-grid,
  .service-grid.wide,
  .value-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .studio-stack article {
    padding-left: 80px;
  }

  .whatsapp-float {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 6px;
  }
}

/* Modern premium legal redesign */
:root {
  --ink: #f8fafc;
  --muted: #a7b0c0;
  --line: rgba(255, 255, 255, .12);
  --bg: #070a12;
  --panel: rgba(15, 23, 42, .74);
  --navy: #f8fafc;
  --blue: #d8b46a;
  --red: #7c3aed;
  --red-dark: #2563eb;
  --gold: #d8b46a;
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

body {
  background:
    radial-gradient(circle at 15% 10%, rgba(124, 58, 237, .22), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(37, 99, 235, .20), transparent 28%),
    linear-gradient(180deg, #070a12 0%, #0f172a 52%, #070a12 100%);
  color: var(--ink);
}

body::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 44px 44px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 76%);
}

.site-header {
  left: 28px;
  right: 28px;
  top: 18px;
  min-height: 76px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(8, 13, 26, .72);
  box-shadow: 0 20px 70px rgba(0,0,0,.32);
}

.logo-brand img {
  width: 50px;
  height: 50px;
}

.brand-text strong {
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  letter-spacing: 0;
}

.brand-text small {
  color: #cbd5e1;
  font-size: 12px;
  letter-spacing: .08em;
}

.main-nav {
  gap: 6px;
  color: #dbeafe;
}

.main-nav > a,
.mega-trigger {
  border-radius: 999px;
  padding: 10px 14px;
}

.main-nav > a:hover,
.mega-trigger:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.main-nav > a.nav-pill,
.nav-pill {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1d28a, #d8b46a);
  color: #111827 !important;
  box-shadow: 0 14px 34px rgba(216, 180, 106, .22);
}

.hero-slider {
  min-height: 920px;
  padding-top: 98px;
  background:
    linear-gradient(90deg, rgba(7,10,18,.96) 0%, rgba(7,10,18,.76) 45%, rgba(7,10,18,.28) 100%),
    radial-gradient(circle at 50% 0%, rgba(124,58,237,.26), transparent 42%),
    #070a12;
}

.hero-slide {
  padding: clamp(132px, 13vw, 166px) clamp(24px, 6vw, 92px) clamp(92px, 8vw, 118px);
}

.hero-slide::before {
  display: none;
}

.hero-slide img {
  width: min(51vw, 760px);
  opacity: .62;
  filter: saturate(.72) contrast(1.04);
}

.hero-copy {
  max-width: 860px;
  padding: 0;
}

.hero-copy .eyebrow,
.eyebrow {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #f1d28a;
  letter-spacing: .08em;
}

.hero-copy h1,
.studio-copy h2,
.value-band h2,
.section-intro h2,
.page-hero h1,
.contact-intro h1,
.cta-wide h2,
.process-band h2,
.emukellef-hero h1 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: #f8fafc;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(52px, 7vw, 104px);
  line-height: .94;
}

.hero-copy p {
  color: #cbd5e1;
}

.button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1d28a, #d8b46a);
  color: #111827;
  box-shadow: 0 18px 42px rgba(216,180,106,.22);
}

.button.secondary,
.button.ghost {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #f8fafc;
}

.stats-band {
  width: min(1180px, calc(100% - 48px));
  margin-top: -58px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(15, 23, 42, .80);
  backdrop-filter: blur(18px);
}

.stats-band div {
  border-right-color: rgba(255,255,255,.10);
}

.stats-band strong {
  color: #f8fafc;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.stats-band span {
  color: #cbd5e1;
}

.studio-showcase,
.value-band,
.process-band,
.cta-wide,
.page-hero,
.contact-intro,
.emukellef-hero {
  background: transparent;
}

.studio-showcase {
  align-items: center;
  padding-top: 118px;
}

.studio-stack {
  gap: 14px;
  border: 0;
  background: transparent;
}

.studio-stack article,
.value-grid article,
.process-steps article,
.service-card,
.blog-card,
.modern-contact-card,
.form-card,
.emukellef-card,
.emukellef-content article,
.rich-content,
.blog-sidebar section,
.side-panel {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 18px 52px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
}

.studio-stack article {
  padding: 28px 30px 28px 92px;
}

.studio-stack strong {
  left: 28px;
  color: #f1d28a;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.value-grid,
.process-steps,
.service-grid {
  gap: 18px;
  border: 0;
  background: transparent;
}

.value-grid article,
.process-steps article {
  border-radius: 18px;
}

.service-grid {
  padding-top: 10px;
}

.service-card {
  min-height: 430px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow: 0 28px 74px rgba(0,0,0,.34);
}

.service-card img,
.blog-card img,
.visual-page-hero img {
  border-radius: 14px;
}

.service-card h3,
.blog-card h2,
.studio-stack h3,
.value-grid h3,
.process-steps h3,
.rich-content h2,
.modern-contact-card h2,
.emukellef-card h2,
.emukellef-content h2 {
  color: #f8fafc;
}

.service-card p,
.blog-card p,
.studio-copy p,
.section-intro p,
.page-hero p,
.contact-intro p,
.rich-content p,
.modern-contact-card p,
.emukellef-card p,
.emukellef-content p {
  color: #b8c2d3;
}

.sector-strip {
  margin: 0 clamp(24px, 6vw, 92px);
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
}

.sector-strip span {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: #f1d28a;
  background: rgba(241,210,138,.09);
}

.cta-wide {
  margin: 0 clamp(24px, 6vw, 92px) 70px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(124,58,237,.26), rgba(37,99,235,.16)),
    rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
}

.page-hero,
.contact-intro {
  padding-top: 150px;
}

.page-hero h1,
.contact-intro h1 {
  font-size: clamp(40px, 5.4vw, 76px);
}

.blog-card {
  overflow: hidden;
}

.blog-card figure {
  background: rgba(255,255,255,.05);
}

.blog-meta span,
.service-card span {
  color: #f1d28a;
  background: rgba(241,210,138,.10);
  border-radius: 999px;
  padding: 7px 10px;
  width: fit-content;
}

.contact-address,
.advisor-profile-meta div,
.browser-list div {
  border-color: rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}

.emukellef-hero {
  min-height: 620px;
  align-items: center;
  padding-top: 150px;
}

.emukellef-card {
  min-height: 320px;
}

.active-case-jump {
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.active-case-jump:hover,
.active-case-jump:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(241,210,138,.52);
  box-shadow: 0 28px 80px rgba(0,0,0,.34), 0 0 0 4px rgba(241,210,138,.10);
  outline: 0;
}

.active-case-jump::after {
  content: "Dosya kartına git";
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(241,210,138,.14);
  color: #f1d28a;
  font-size: 12px;
  font-weight: 900;
}

.case-card {
  scroll-margin-top: 120px;
}

.emukellef-content {
  padding-top: 56px;
  padding-bottom: 90px;
}

.whatsapp-float {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #047857);
  box-shadow: 0 18px 44px rgba(22,163,74,.24);
}

.mega-panel {
  background: rgba(8, 13, 26, .98);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 28px 90px rgba(0,0,0,.54);
}

.mega-feature {
  background:
    linear-gradient(135deg, rgba(124,58,237,.40), rgba(37,99,235,.22)),
    #111827;
}

.mega-feature h3,
.mega-section h3,
.mega-links strong,
.mega-mini a,
.mega-tags a {
  color: #ffffff;
}

.mega-feature p,
.mega-links span {
  color: #dbeafe;
}

.mega-section,
.mega-links a,
.mega-mini a,
.mega-tags a {
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.14);
}

.mega-links a:hover,
.mega-mini a:hover,
.mega-tags a:hover {
  background: rgba(216,180,106,.16);
  border-color: rgba(241,210,138,.34);
}

.contact-layout,
.map-section {
  background: transparent;
}

.contact-info-col,
.form-card,
.map-section > div {
  color: #f8fafc;
}

.modern-contact-card,
.form-card,
.map-section > div {
  background:
    linear-gradient(180deg, rgba(15,23,42,.94), rgba(15,23,42,.82));
  border-color: rgba(255,255,255,.16);
}

.modern-contact-card h2,
.form-card label,
.map-section h2,
.contact-address strong,
.advisor-phone {
  color: #ffffff;
}

.modern-contact-card p,
.modern-contact-card span,
.map-section p,
.contact-address small {
  color: #dbeafe;
}

.contact-mail,
.contact-address {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: #f8fafc;
}

.contact-address a {
  color: #f1d28a;
}

.form-card input,
.form-card textarea {
  background: rgba(2,6,23,.72);
  border-color: rgba(255,255,255,.18);
  color: #ffffff;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: rgba(241,210,138,.62);
  outline: 2px solid rgba(241,210,138,.18);
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #94a3b8;
}

.client-login-hero,
.panel-dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 760px;
  padding: 150px clamp(24px, 6vw, 92px) 82px;
  background:
    radial-gradient(circle at 16% 20%, rgba(124,58,237,.22), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(216,180,106,.16), transparent 30%);
}

.client-login-copy h1,
.panel-dashboard-hero h1 {
  max-width: 840px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(44px, 6vw, 88px);
  line-height: .96;
  font-weight: 900;
  text-wrap: balance;
}

.client-login-copy p,
.panel-dashboard-hero p {
  max-width: 680px;
  color: #dbeafe;
  font-size: 19px;
  line-height: 1.75;
}

.login-demo-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  margin-top: 28px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}

.login-demo-note strong,
.login-demo-note span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #f8fafc;
  font-weight: 800;
}

.login-demo-note strong {
  background: rgba(241,210,138,.16);
  color: #f1d28a;
}

.client-login-card h2 {
  margin: 8px 0 12px;
  color: #ffffff;
  font-size: 30px;
}

.client-login-card p {
  color: #cbd5e1;
  line-height: 1.6;
}

.panel-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr) minmax(300px, .75fr);
  gap: 18px;
  padding: 0 clamp(24px, 6vw, 92px) 92px;
}

.panel-status-card,
.panel-events-card,
.panel-actions-card {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 18px 52px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
}

.panel-status-card span,
.panel-events-card span,
.panel-actions-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #f1d28a;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.panel-status-card h2,
.panel-events-card h2,
.panel-actions-card h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 28px;
}

.panel-status-card p,
.panel-events-card p {
  color: #cbd5e1;
  line-height: 1.65;
}

.panel-progress {
  height: 12px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
}

.panel-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, #f1d28a, #7c3aed);
}

.panel-events-card div {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.10);
}

.panel-events-card strong {
  color: #ffffff;
}

.panel-events-card p {
  margin: 6px 0 0;
}

.panel-actions-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.panel-actions-card a {
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: #f8fafc;
  font-weight: 900;
}

.panel-actions-card a:hover {
  background: rgba(241,210,138,.16);
  color: #f1d28a;
}

.legal-process-panel {
  padding: 0 clamp(24px, 6vw, 92px) 28px;
}

.panel-section-intro {
  padding: 0 0 24px;
}

.case-list {
  display: grid;
  gap: 22px;
}

.case-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.04));
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.case-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.case-head span,
.case-head strong {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(241,210,138,.12);
  color: #f1d28a;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.case-head strong {
  background: rgba(37,99,235,.18);
  color: #bfdbfe;
  white-space: nowrap;
}

.case-head h2 {
  margin: 14px 0 8px;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.case-head p,
.case-summary {
  color: #cbd5e1;
  line-height: 1.65;
}

.case-summary {
  max-width: 920px;
  margin: 18px 0;
}

.case-progress {
  max-width: 760px;
}

.hearing-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hearing-timeline section {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(2,6,23,.34);
}

.hearing-timeline b {
  display: inline-flex;
  margin-bottom: 10px;
  color: #f1d28a;
  font-size: 13px;
}

.hearing-timeline time {
  display: block;
  color: #93c5fd;
  font-weight: 900;
  font-size: 13px;
}

.hearing-timeline h3 {
  margin: 12px 0 8px;
  color: #ffffff;
  font-size: 20px;
}

.hearing-timeline p {
  color: #cbd5e1;
  line-height: 1.58;
}

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

.case-documents > div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}

.case-documents h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 20px;
}

.case-documents a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(2,6,23,.36);
  color: #f8fafc;
  font-weight: 900;
}

.case-documents a + a {
  margin-top: 10px;
}

.case-documents a::before {
  content: "PDF";
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ef4444, #7c3aed);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.case-documents a span {
  flex: 1;
}

.case-documents small {
  color: #f1d28a;
  white-space: nowrap;
}

.compact-panel-grid {
  padding-top: 26px;
}

@media (max-width: 1100px) {
  .client-login-hero,
  .panel-dashboard-hero,
  .panel-dashboard-grid,
  .hearing-timeline,
  .case-documents {
    grid-template-columns: 1fr;
  }

  .case-head {
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .client-login-hero,
  .panel-dashboard-hero {
    min-height: auto;
    padding: 128px 14px 48px;
  }

  .client-login-copy h1,
  .panel-dashboard-hero h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .panel-dashboard-grid {
    padding: 0 14px 78px;
  }

  .legal-process-panel {
    padding: 0 14px 22px;
  }

  .case-documents a {
    align-items: flex-start;
    flex-direction: column;
  }
}

.detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 160px clamp(24px, 6vw, 92px) 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(124,58,237,.22), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(216,180,106,.16), transparent 28%);
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 112px clamp(20px, 5vw, 76px) 36px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: 0 32px 110px rgba(0,0,0,.38);
  backdrop-filter: blur(18px);
}

.detail-hero .eyebrow {
  margin-bottom: 18px;
}

.detail-hero h1 {
  max-width: 780px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .94;
  font-weight: 900;
  color: #ffffff;
  text-wrap: balance;
}

.detail-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #dbeafe;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.7;
}

.detail-hero .button {
  margin-top: 34px;
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 28px 84px rgba(0,0,0,.40);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 24px;
  padding: 34px clamp(24px, 6vw, 92px) 34px;
  background: transparent;
}

.rich-content {
  padding: clamp(26px, 4vw, 46px);
}

.rich-content .service-info-block + .service-info-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.rich-content h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.rich-content p {
  font-size: 17px;
  line-height: 1.82;
}

.side-panel {
  position: sticky;
  top: 118px;
  align-self: start;
  padding: 24px;
}

.side-panel h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 22px;
}

.side-panel h2:not(:first-child) {
  margin-top: 28px;
}

.side-panel p {
  position: relative;
  margin: 10px 0;
  padding: 12px 12px 12px 38px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  color: #dbeafe;
  line-height: 1.48;
}

.side-panel p::first-letter {
  color: transparent;
}

.side-panel p::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: #f1d28a;
  box-shadow: 0 0 0 5px rgba(241,210,138,.12);
}

.detail-extra {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px clamp(24px, 6vw, 92px) 90px;
}

.detail-extra article {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 18px 52px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
}

.detail-extra h2 {
  color: #ffffff;
  font-size: 24px;
}

.detail-extra p {
  color: #b8c2d3;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .detail-hero,
  .detail-layout,
  .detail-extra {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

  .detail-hero img {
    max-height: 420px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 860px) {
  .detail-hero {
    padding: 128px 14px 44px;
  }

  .detail-hero::before {
    inset: 96px 10px 20px;
    border-radius: 22px;
  }

  .detail-hero h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .detail-layout {
    padding: 20px 14px;
  }

  .detail-extra {
    padding: 8px 14px 74px;
  }
}

@media (max-width: 860px) {
  .site-header {
    left: 12px;
    right: 12px;
    top: 12px;
    border-radius: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stats-band {
    width: calc(100% - 28px);
    border-radius: 18px;
  }

  .studio-stack article {
    padding-left: 78px;
  }

  .sector-strip,
  .cta-wide {
    margin-left: 14px;
    margin-right: 14px;
  }
}
.wysiwyg-editor strong,
.wysiwyg-editor b {
  font-weight: 800;
}
.wysiwyg-source.enhanced { display: none; }
@media (max-width: 860px) {
  .whatsapp-float { left: 12px; right: 12px; bottom: 12px; display: flex; justify-content: center; align-items: center; gap: 8px; border-radius: 12px; }
  .whatsapp-float span::after { content: ':'; }
  .pro-advisor-card,
  .advisor-profile-top,
  .advisor-profile-meta,
  .emukellef-hero,
  .emukellef-content {
    grid-template-columns: 1fr;
  }
  .advisor-logo-badge {
    width: 112px;
    height: 112px;
  }
  .advisor-logo-badge img {
    width: 78px;
    height: 78px;
  }
  .advisor-actions .button,
  .emukellef-actions .button {
    width: 100%;
  }
  .advisor-visual {
    min-height: 170px;
  }
  .emukellef-hero {
    padding-top: 42px;
  }
}

/* Light trust palette refresh */
:root {
  --legal-ink: #172033;
  --legal-muted: #5c6878;
  --legal-soft: #f6f8fb;
  --legal-card: #ffffff;
  --legal-line: #d9e2ec;
  --legal-navy: #10213a;
  --legal-blue: #315d86;
  --legal-gold: #b88b3d;
  --legal-burgundy: #8f2f45;
  --legal-teal: #247b73;
  --legal-shadow: 0 22px 60px rgba(23, 32, 51, .11);
}

html {
  background: var(--legal-soft);
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(49, 93, 134, .11), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(184, 139, 61, .11), transparent 24%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 42%, #eef3f8 100%);
  color: var(--legal-ink);
}

.site-header {
  border: 1px solid rgba(16, 33, 58, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(23, 32, 51, .12);
}

.brand,
.main-nav a,
.mega-trigger,
.mobile-menu-toggle,
.topbar,
.topbar a {
  color: var(--legal-ink);
}

.brand img {
  background: #f7fafc;
  box-shadow: inset 0 0 0 1px rgba(16, 33, 58, .08);
}

.main-nav a:hover,
.mega-trigger:hover {
  background: #eef4fa;
  color: var(--legal-blue);
}

.nav-pill,
.button,
.form-card .button,
.cta-wide .button,
.whatsapp-float {
  background: linear-gradient(135deg, var(--legal-navy), #274d72);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(16, 33, 58, .22);
}

.button.secondary,
.hero-actions .button.secondary {
  background: #ffffff;
  color: var(--legal-navy);
  border: 1px solid rgba(16, 33, 58, .18);
  box-shadow: 0 12px 28px rgba(23, 32, 51, .10);
}

.mega-panel {
  border: 1px solid rgba(16, 33, 58, .10);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 28px 70px rgba(23, 32, 51, .16);
}

.mega-panel h3,
.mega-panel a,
.mega-panel p,
.mega-panel strong,
.mega-panel span {
  color: var(--legal-ink);
}

.mega-panel a:hover {
  background: #eef4fa;
  color: var(--legal-blue);
}

.eyebrow,
.contact-kicker,
.blog-meta span,
.service-card span {
  color: var(--legal-burgundy);
  letter-spacing: .08em;
}

.hero-slider {
  padding-top: 132px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(244, 247, 251, .96)),
    radial-gradient(circle at 82% 26%, rgba(36, 123, 115, .14), transparent 32%);
}

.hero-slide {
  background: transparent;
}

.hero-copy {
  color: var(--legal-ink);
}

.hero-copy h1,
.section-intro h2,
.studio-copy h2,
.trust-panel h2,
.case-method-section h2,
.document-flow h2,
.faq-band h2,
.page-hero h1,
.contact-intro h1,
.detail-roadmap h2,
.service-assurance h2 {
  color: var(--legal-ink);
}

.hero-copy p,
.section-intro p,
.studio-copy p,
.trust-panel p,
.case-method-section p,
.document-flow p,
.faq-band p,
.page-hero p,
.contact-intro p,
.service-assurance p,
.detail-roadmap p {
  color: var(--legal-muted);
}

.hero-slide img {
  border: 10px solid #ffffff;
  background: #e8eef5;
  box-shadow: var(--legal-shadow);
}

.slider-controls button {
  background: rgba(16, 33, 58, .22);
}

.slider-controls button.active {
  background: var(--legal-navy);
}

.stats-band,
.section-intro,
.studio-showcase,
.trust-panel,
.case-method-section,
.document-flow,
.faq-band,
.page-hero,
.contact-intro,
.contact-layout,
.map-section,
.service-assurance,
.detail-roadmap {
  background: transparent;
}

.stats-band {
  border: 1px solid var(--legal-line);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--legal-shadow);
}

.stats-band strong {
  color: var(--legal-navy);
}

.stats-band span {
  color: var(--legal-muted);
}

.studio-showcase,
.trust-panel,
.case-method-section,
.document-flow,
.faq-band,
.service-assurance,
.detail-roadmap,
.contact-prep {
  width: min(1180px, calc(100% - 48px));
  margin: 28px auto;
  padding: clamp(28px, 4.5vw, 56px);
  border: 1px solid var(--legal-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--legal-shadow);
}

.trust-panel,
.document-flow,
.service-assurance,
.contact-prep {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.trust-grid,
.case-method-grid,
.faq-grid,
.assurance-steps,
.roadmap-track,
.prep-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-method-grid,
.assurance-steps,
.prep-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.document-flow-list {
  display: grid;
  gap: 12px;
}

.trust-grid article,
.case-method-grid article,
.faq-grid article,
.document-flow-list article,
.assurance-steps article,
.roadmap-track article,
.prep-list article,
.studio-stack article,
.service-card,
.blog-card,
.detail-extra article,
.rich-content,
.side-panel,
.form-card,
.contact-card,
.case-card,
.panel-card,
.panel-dashboard-card,
.matter-card,
.hearing-card,
.document-card {
  border: 1px solid var(--legal-line);
  background: var(--legal-card);
  color: var(--legal-ink);
  box-shadow: 0 16px 42px rgba(23, 32, 51, .09);
}

.trust-grid article,
.case-method-grid article,
.faq-grid article,
.assurance-steps article,
.roadmap-track article,
.prep-list article {
  padding: 22px;
  border-radius: 18px;
}

.trust-grid strong,
.assurance-steps b,
.roadmap-track b,
.prep-list strong,
.process-steps b {
  color: var(--legal-gold);
}

.case-method-grid span,
.document-flow-list b {
  display: inline-flex;
  width: max-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf5f4;
  color: var(--legal-teal);
  font-size: 12px;
  font-weight: 800;
}

.document-flow-list article,
.prep-list article {
  display: flex;
  gap: 14px;
  align-items: center;
}

.document-flow-list span,
.prep-list span {
  color: var(--legal-ink);
  font-weight: 750;
}

.value-band,
.process-band,
.cta-wide {
  border: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(184, 139, 61, .18), transparent 28%),
    linear-gradient(135deg, #10213a 0%, #183659 58%, #11213a 100%);
  color: #ffffff;
  box-shadow: 0 28px 72px rgba(16, 33, 58, .24);
}

.value-band h2,
.value-band h3,
.process-band h2,
.process-band h3,
.cta-wide h2,
.cta-wide h3,
.value-band .eyebrow,
.process-band .eyebrow,
.cta-wide .eyebrow {
  color: #ffffff;
}

.value-band p,
.process-band p,
.cta-wide p {
  color: #dce7f2;
}

.value-grid article,
.process-steps article {
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  color: #ffffff;
}

.sector-strip span,
.blog-categories a,
.pagination a {
  border: 1px solid var(--legal-line);
  background: #ffffff;
  color: var(--legal-ink);
}

.blog-categories a.active,
.pagination a.active {
  background: var(--legal-navy);
  color: #ffffff;
}

.page-hero,
.contact-intro,
.detail-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 118px auto 28px;
  padding: clamp(38px, 6vw, 74px);
  border: 1px solid var(--legal-line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(241, 246, 251, .92)),
    radial-gradient(circle at 82% 22%, rgba(49, 93, 134, .12), transparent 28%);
  color: var(--legal-ink);
  box-shadow: var(--legal-shadow);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.detail-hero::before {
  content: none;
}

.detail-hero h1,
.detail-hero p {
  color: var(--legal-ink);
}

.detail-hero p {
  color: var(--legal-muted);
}

.detail-hero img {
  border: 8px solid #ffffff;
  box-shadow: var(--legal-shadow);
}

.detail-layout,
.detail-extra {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.rich-content .service-info-block + .service-info-block {
  border-top-color: var(--legal-line);
}

.rich-content h2,
.side-panel h2,
.detail-extra h2,
.service-card h3,
.blog-card h2,
.contact-card h2,
.form-card label,
.map-section h2 {
  color: var(--legal-ink);
}

.rich-content p,
.side-panel p,
.detail-extra p,
.service-card p,
.blog-card p,
.contact-card p,
.map-section p,
.form-card input,
.form-card textarea {
  color: var(--legal-muted);
}

.side-panel p {
  background: #f6f9fc;
  border-color: var(--legal-line);
}

.contact-layout {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 28px;
  padding: 0;
}

.contact-card,
.form-card,
.map-section {
  border-radius: 24px;
}

.contact-mail,
.contact-address a,
.service-card a,
.blog-card strong {
  color: var(--legal-blue);
}

.form-card input,
.form-card textarea {
  border: 1px solid var(--legal-line);
  background: #ffffff;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--legal-blue);
  box-shadow: 0 0 0 4px rgba(49, 93, 134, .13);
}

.modern-contact-card {
  background:
    linear-gradient(180deg, #ffffff, #f7fafc);
}

.map-section {
  width: min(1180px, calc(100% - 48px));
  margin: 28px auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--legal-line);
  background: #ffffff;
  box-shadow: var(--legal-shadow);
}

.client-login-hero,
.panel-dashboard-hero {
  background:
    radial-gradient(circle at 80% 15%, rgba(184, 139, 61, .19), transparent 28%),
    linear-gradient(135deg, #10213a 0%, #183659 62%, #10213a 100%);
}

.panel-dashboard-hero h1,
.panel-dashboard-hero p,
.client-login-hero h1,
.client-login-hero p {
  color: #ffffff;
}

.legal-process-panel,
.panel-dashboard-grid,
.panel-section {
  background: transparent;
}

.case-card h3,
.matter-card h3,
.hearing-card h4,
.document-card h4,
.panel-card h3,
.panel-dashboard-card h3 {
  color: var(--legal-ink);
}

.case-card p,
.matter-card p,
.hearing-card p,
.document-card p,
.panel-card p,
.panel-dashboard-card p {
  color: var(--legal-muted);
}

.mega-feature {
  background:
    radial-gradient(circle at 88% 12%, rgba(184, 139, 61, .22), transparent 30%),
    linear-gradient(135deg, #10213a, #24486d);
  color: #ffffff;
}

.mega-feature h3,
.mega-feature p,
.mega-feature span,
.mega-feature strong {
  color: #ffffff;
}

.mega-feature .button {
  background: #ffffff;
  color: var(--legal-navy);
}

.studio-stack h3,
.studio-stack p,
.studio-stack strong {
  color: var(--legal-ink);
}

.studio-stack p {
  color: var(--legal-muted);
}

.contact-address {
  border-color: var(--legal-line);
  background: #f6f9fc;
}

.contact-address small {
  color: var(--legal-burgundy);
}

.contact-address strong {
  color: var(--legal-ink);
}

.client-login-card,
.login-hint,
.credential-row {
  color: var(--legal-ink);
}

.credential-row {
  background: #f6f9fc;
}

.credential-row span {
  color: var(--legal-ink);
}

@media (max-width: 1100px) {
  .trust-panel,
  .document-flow,
  .service-assurance,
  .contact-prep,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .case-method-grid,
  .faq-grid,
  .assurance-steps,
  .roadmap-track,
  .prep-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-slider {
    padding-top: 112px;
  }

  .studio-showcase,
  .trust-panel,
  .case-method-section,
  .document-flow,
  .faq-band,
  .service-assurance,
  .detail-roadmap,
  .contact-prep,
  .page-hero,
  .contact-intro,
  .detail-hero,
  .map-section,
  .contact-layout,
  .detail-layout,
  .detail-extra {
    width: calc(100% - 28px);
  }

  .trust-grid,
  .case-method-grid,
  .faq-grid,
  .assurance-steps,
  .roadmap-track,
  .prep-list {
    grid-template-columns: 1fr;
  }
}

/* Readability and module expansion pass */
.brand-text strong {
  color: var(--legal-navy);
}

.brand-text small {
  color: #526174;
}

.site-header .brand,
.site-header .brand * {
  text-shadow: none;
}

.button,
.nav-pill,
.whatsapp-float,
.form-card button.button,
.advisor-actions .button {
  background-color: var(--legal-navy);
  color: #ffffff;
}

.button *,
.nav-pill *,
.whatsapp-float * {
  color: inherit;
}

.case-intake-module,
.attorney-profile-module,
.legal-modules-section {
  width: min(1180px, calc(100% - 48px));
  margin: 28px auto;
  padding: clamp(28px, 4.5vw, 56px);
  border: 1px solid var(--legal-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--legal-shadow);
}

.case-intake-module,
.attorney-profile-module {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

.module-copy h2,
.profile-card h2,
.legal-modules-section h2,
.case-intake-module h3,
.attorney-profile-module h3,
.legal-modules-section h3 {
  color: var(--legal-ink);
}

.module-copy p,
.profile-card p,
.legal-modules-section p,
.case-intake-module span,
.attorney-profile-module span {
  color: var(--legal-muted);
}

.intake-board,
.profile-metrics,
.legal-module-grid {
  display: grid;
  gap: 16px;
}

.intake-board,
.legal-module-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.intake-board article,
.profile-metrics article,
.legal-module-grid article {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--legal-line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(23, 32, 51, .08);
}

.intake-board strong,
.profile-metrics strong,
.legal-module-grid b {
  display: inline-flex;
  margin-bottom: 12px;
  color: #6d4c12;
  font-weight: 900;
}

.legal-module-grid b {
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f8eedb;
}

.value-band,
.process-band,
.cta-wide,
.client-login-hero,
.panel-dashboard-hero {
  background-color: var(--legal-navy);
}

.value-band *,
.process-band *,
.cta-wide *,
.client-login-hero *,
.panel-dashboard-hero * {
  text-shadow: none;
}

.value-band h2,
.value-band h3,
.process-band h2,
.process-band h3,
.cta-wide h2,
.client-login-hero h1,
.panel-dashboard-hero h1 {
  color: #ffffff;
}

.value-band p,
.process-band p,
.cta-wide p,
.client-login-hero p,
.panel-dashboard-hero p {
  color: #e7edf5;
}

.value-band .eyebrow,
.process-band .eyebrow,
.cta-wide .eyebrow,
.client-login-hero .eyebrow,
.panel-dashboard-hero .eyebrow {
  color: #f4d58d;
}

.trust-grid strong,
.assurance-steps b,
.roadmap-track b,
.prep-list strong,
.legal-module-grid b,
.intake-board strong,
.profile-metrics strong {
  color: #6d4c12;
}

.contact-kicker,
.modern-contact-card > span:not(.eyebrow),
.contact-card > span {
  color: #41536a;
}

.client-login-card h2,
.client-login-card p,
.client-login-card label,
.client-login-card span,
.login-hint,
.login-hint a {
  color: var(--legal-ink);
}

.login-demo-note {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .10);
}

.login-demo-note strong {
  color: #f4d58d;
}

.login-demo-note span {
  color: #ffffff;
}

.side-panel strong,
.rich-content strong,
.detail-extra strong,
.service-card strong,
.blog-card strong {
  color: var(--legal-ink);
}

.form-card .flash {
  background: #eaf7f4;
  color: #135e56;
  border-color: #b8ddd7;
}

@media (max-width: 1100px) {
  .case-intake-module,
  .attorney-profile-module {
    grid-template-columns: 1fr;
  }

  .intake-board,
  .legal-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .case-intake-module,
  .attorney-profile-module,
  .legal-modules-section {
    width: calc(100% - 28px);
  }

  .intake-board,
  .profile-metrics,
  .legal-module-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium hero slider controls */
.hero-slider {
  isolation: isolate;
}

.hero-slide {
  transform: translateX(18px) scale(.985);
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform .72s cubic-bezier(.22, 1, .36, 1);
}

.hero-slide.active {
  transform: translateX(0) scale(1);
}

.hero-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
}

.hero-media {
  position: relative;
  display: grid;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  line-height: 0;
  min-height: 420px;
  box-shadow:
    0 34px 90px rgba(16, 33, 58, .22),
    inset 0 0 0 1px rgba(255, 255, 255, .55);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(0, 0, 0, .20) 0 1.05px, transparent 1.45px),
    linear-gradient(135deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .03) 48%),
    linear-gradient(0deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, 0) 54%);
  background-size: 7px 7px, 100% 100%, 100% 100%;
}

.hero-media img {
  display: block;
  grid-area: 1 / 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto clamp(16px, 3vw, 42px) clamp(38px, 5vw, 72px) auto;
  z-index: -1;
  width: min(360px, 34vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(184, 139, 61, .18);
  filter: blur(44px);
}

.slider-controls {
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(16, 33, 58, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 42px rgba(23, 32, 51, .12);
  backdrop-filter: blur(16px);
}

.slider-controls button {
  cursor: pointer;
}

.slider-controls button:not(.slider-arrow) {
  width: 32px;
  height: 6px;
  background: rgba(16, 33, 58, .24);
  transition: width .25s ease, background-color .25s ease;
}

.slider-controls button:not(.slider-arrow).active {
  width: 54px;
  background: var(--legal-navy);
}

.slider-arrow {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--legal-navy);
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
}

.slider-progress {
  position: absolute;
  left: clamp(18px, 5vw, 70px);
  right: clamp(18px, 5vw, 70px);
  bottom: 18px;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(16, 33, 58, .12);
}

.slider-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--legal-navy), var(--legal-gold));
}

@media (max-width: 860px) {
  .hero-media {
    min-height: 300px;
  }

  .hero-slide img {
    min-height: 300px;
    aspect-ratio: 16 / 10;
  }

  .slider-controls {
    left: 18px;
    right: 18px;
    justify-content: center;
  }

  .slider-progress {
    left: 18px;
    right: 18px;
  }
}

/* Premium image treatment */
.hero-slide {
  grid-template-columns: minmax(0, .9fr) minmax(360px, 520px);
  align-items: start;
  gap: clamp(28px, 4vw, 58px);
}

.hero-copy {
  min-width: 0;
}

.hero-media {
  width: 100%;
  align-self: start;
  justify-self: end;
  margin-top: 6px;
}

.hero-slide img,
.detail-hero img,
.visual-page-hero img,
.about-split img,
.service-card img,
.blog-card img {
  background:
    linear-gradient(135deg, rgba(16, 33, 58, .08), rgba(184, 139, 61, .08)),
    #edf2f7;
  filter: saturate(.88) contrast(1.08) brightness(.96);
}

.hero-slide img,
.detail-hero img,
.visual-page-hero img,
.about-split img {
  border: 1px solid rgba(255, 255, 255, .92);
  box-shadow:
    0 34px 90px rgba(16, 33, 58, .22),
    inset 0 0 0 1px rgba(255, 255, 255, .55);
}

.hero-slide img {
  object-position: 50% 42%;
  filter: saturate(.82) contrast(1.12) brightness(.92);
}

.service-card,
.blog-card {
  overflow: hidden;
}

.service-card img,
.blog-card img {
  transform: scale(1.01);
  transition: transform .5s cubic-bezier(.22, 1, .36, 1), filter .5s ease;
}

.service-card:hover img,
.blog-card:hover img {
  transform: scale(1.055);
  filter: saturate(.95) contrast(1.12) brightness(.98);
}

.service-card::before,
.blog-card figure::after,
.visual-page-hero::after,
.about-split::after {
  content: "";
  pointer-events: none;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 33, 58, 0) 36%, rgba(16, 33, 58, .06));
}

.service-card > *:not(img) {
  position: relative;
  z-index: 2;
}

.blog-card figure {
  position: relative;
}

.blog-card figure::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(16, 33, 58, .16), rgba(16, 33, 58, 0) 48%),
    linear-gradient(0deg, rgba(184, 139, 61, .10), rgba(184, 139, 61, 0) 45%);
}

.visual-page-hero,
.about-split {
  position: relative;
}

.visual-page-hero img,
.about-split img,
.detail-hero img {
  filter: saturate(.86) contrast(1.1) brightness(.95);
}

.visual-page-hero::after,
.about-split::after {
  position: absolute;
  width: 160px;
  height: 160px;
  right: clamp(12px, 4vw, 46px);
  bottom: clamp(12px, 4vw, 46px);
  border-radius: 999px;
  background: rgba(184, 139, 61, .13);
  filter: blur(28px);
  z-index: 0;
}

.visual-page-hero > *,
.about-split > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-self: stretch;
  }
}

/* Full-screen photographic hero */
.site-header {
  position: fixed;
  top: 16px;
  left: clamp(12px, 3vw, 34px);
  right: clamp(12px, 3vw, 34px);
}

.hero-slider {
  position: relative;
  height: 100svh;
  min-height: 720px;
  margin-top: -105px;
  padding: 0;
  overflow: hidden;
  background: var(--legal-navy);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  height: 100%;
  min-height: 100%;
  padding: clamp(132px, 18vh, 188px) clamp(24px, 7vw, 96px) 122px;
  transform: scale(1.025);
}

.hero-slide.active {
  transform: scale(1);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: min(780px, 62vw);
  color: #ffffff;
}

.hero-copy .eyebrow {
  color: #f4d58d;
}

.hero-copy h1 {
  color: #ffffff;
  text-shadow: 0 3px 28px rgba(0, 0, 0, .30);
}

.hero-copy p {
  color: #edf2f7;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .34);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-media img,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center center;
  box-shadow: none;
  filter: saturate(.76) contrast(1.08) brightness(.64);
}

.hero-media::after {
  background:
    radial-gradient(circle, rgba(0, 0, 0, .18) 0 1.05px, transparent 1.45px),
    linear-gradient(90deg, rgba(4, 11, 21, .78) 0%, rgba(4, 11, 21, .54) 40%, rgba(4, 11, 21, .24) 70%, rgba(4, 11, 21, .36) 100%),
    linear-gradient(0deg, rgba(4, 11, 21, .58), rgba(4, 11, 21, .12) 55%);
  background-size: 7px 7px, 100% 100%, 100% 100%;
}

.hero-slide::after {
  content: none;
}

.hero-actions .button.secondary {
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .13);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.slider-controls,
.slider-progress {
  z-index: 5;
}

.slider-controls {
  background: rgba(7, 17, 30, .44);
  border-color: rgba(255, 255, 255, .18);
}

.slider-controls button:not(.slider-arrow) {
  background: rgba(255, 255, 255, .34);
}

.slider-controls button:not(.slider-arrow).active {
  background: #ffffff;
}

.slider-arrow {
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .24);
}

.slider-progress {
  background: rgba(255, 255, 255, .2);
}

.slider-progress span {
  background: linear-gradient(90deg, #ffffff, #d7b76d);
}

@media (max-width: 860px) {
  .hero-slider {
    min-height: 700px;
    margin-top: -92px;
  }

  .hero-slide {
    display: block;
    padding: 122px 20px 120px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media img,
  .hero-slide img {
    min-height: 0;
    aspect-ratio: auto;
    object-position: 64% center;
  }

  .hero-media::after {
    background:
      radial-gradient(circle, rgba(0, 0, 0, .17) 0 1px, transparent 1.4px),
      linear-gradient(0deg, rgba(4, 11, 21, .74), rgba(4, 11, 21, .35)),
      linear-gradient(90deg, rgba(4, 11, 21, .56), rgba(4, 11, 21, .24));
    background-size: 7px 7px, 100% 100%, 100% 100%;
  }
}

/* Readability and layout corrections */
.hero-slider + .stats-band {
  margin: 26px auto 0;
}

.hero-copy {
  padding-bottom: 48px;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.06;
}

.hero-copy p {
  margin-top: 18px;
  font-size: clamp(17px, 1.6vw, 19px);
}

.slider-controls {
  left: auto;
  right: clamp(18px, 5vw, 70px);
}

.slider-controls .slider-arrow {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .24);
  color: #ffffff;
}

.case-intake-module h2,
.attorney-profile-module h2,
.case-method-section h2,
.legal-modules-section h2,
.trust-panel h2,
.studio-showcase h2,
.document-flow h2,
.faq-band h2 {
  line-height: 1.14;
  margin-bottom: 14px;
}

.case-intake-module h3,
.attorney-profile-module h3,
.case-method-section h3,
.legal-modules-section h3,
.trust-panel h3,
.studio-showcase h3,
.faq-band h3 {
  line-height: 1.3;
  margin-bottom: 10px;
}

.page-content {
  width: min(1180px, calc(100% - 48px));
  margin: 28px auto 44px;
  padding: clamp(24px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid var(--legal-line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--legal-shadow);
}

.page-content .about-split {
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 40px);
  margin-bottom: clamp(30px, 5vw, 50px);
}

.page-content .about-split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
}

.page-content .about-split img {
  width: 100%;
  height: clamp(230px, 25vw, 290px);
  object-fit: cover;
}

.page-content .about-split h2 {
  margin-bottom: 14px;
  color: var(--legal-ink);
  line-height: 1.16;
}

.page-content .about-split p {
  margin: 0;
  color: var(--legal-muted);
  line-height: 1.75;
}

.page-content .team-section {
  margin: 12px 0 0;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid var(--legal-line);
  border-radius: 20px;
  background: #f4f7fb;
}

.service-grid,
.service-grid.wide {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: 14px 14px 22px;
  gap: 0;
}

.service-card img {
  height: 214px;
  border-radius: 12px;
}

.service-card span {
  margin-top: 18px;
}

.service-card h3 {
  margin: 10px 0 12px;
  font-size: clamp(20px, 2vw, 23px);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.service-card p {
  margin: 0 0 18px;
  overflow-wrap: anywhere;
}

.service-card a {
  margin-top: auto;
  overflow-wrap: anywhere;
}

.blog-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 118px auto 28px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--legal-line);
  border-radius: 28px;
  background: #f3f7fb;
  box-shadow: var(--legal-shadow);
}

.blog-hero-copy {
  border-color: var(--legal-line);
  background: #ffffff;
}

.blog-hero h1 {
  color: var(--legal-ink);
}

.blog-hero p,
.breadcrumb {
  color: var(--legal-muted);
}

.breadcrumb a,
.breadcrumb strong {
  color: var(--legal-blue);
}

.blog-hero-meta span {
  border-color: var(--legal-line);
  background: #f4f7fb;
  color: var(--legal-ink);
}

.blog-detail-layout {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0 72px;
  background: transparent;
}

.blog-content,
.blog-sidebar section {
  border-color: var(--legal-line);
  background: #ffffff;
  color: var(--legal-ink);
  box-shadow: 0 15px 38px rgba(23, 32, 51, .08);
}

.blog-sidebar h2,
.blog-recent strong {
  color: var(--legal-ink);
}

.blog-sidebar p {
  color: var(--legal-muted);
}

.blog-side-tags a,
.blog-recent a {
  border-color: var(--legal-line);
  color: var(--legal-ink);
}

.blog-side-tags a {
  background: #f4f7fb;
}

.blog-recent span {
  color: var(--legal-burgundy);
}

.blog-contact-box,
.blog-contact-box h2,
.blog-contact-box p {
  color: #ffffff;
}

.map-section > div {
  height: auto;
  min-height: 100%;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--legal-line);
  border-radius: 18px;
  background: #f3f7fb;
  color: var(--legal-ink);
}

.map-section > div .eyebrow {
  color: var(--legal-burgundy);
}

.map-section > div h2 {
  margin-bottom: 14px;
  color: var(--legal-ink);
  line-height: 1.2;
  height: auto;
  overflow: visible;
}

.map-section > div p {
  margin: 0;
  color: var(--legal-muted);
}

@media (max-width: 980px) {
  .service-grid,
  .service-grid.wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-content .about-split,
  .page-content .about-split.reverse {
    grid-template-columns: 1fr;
  }

  .page-content .about-split.reverse img {
    order: 0;
  }
}

@media (max-width: 680px) {
  .hero-slider + .stats-band {
    margin-top: 18px;
  }

  .hero-copy {
    padding-bottom: 82px;
  }

  .slider-controls {
    left: 18px;
    right: 18px;
  }

  .page-content,
  .blog-hero,
  .blog-detail-layout {
    width: calc(100% - 28px);
  }

  .service-grid,
  .service-grid.wide {
    grid-template-columns: 1fr;
  }
}

.detail-feature-media {
  width: min(1180px, calc(100% - 48px));
  margin: 8px auto 28px;
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--legal-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--legal-shadow);
}

.detail-feature-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  filter: saturate(.9) contrast(1.05);
}

.detail-feature-media h2 {
  margin: 0 0 12px;
  color: var(--legal-ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
}

.detail-feature-media p {
  margin: 0;
  color: var(--legal-muted);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .detail-feature-media {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .detail-feature-media img {
    height: 240px;
  }
}

.intake-board article span,
.profile-metrics article span {
  display: block;
  margin-top: 2px;
  line-height: 1.58;
}

.content-media-gallery {
  width: min(1180px, calc(100% - 48px));
  margin: 16px auto 38px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--legal-line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--legal-shadow);
}

.content-media-head {
  max-width: 720px;
  margin-bottom: 22px;
}

.content-media-head h2 {
  margin: 10px 0 0;
  color: var(--legal-ink);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.2;
}

.content-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.content-media-grid.single {
  grid-template-columns: minmax(0, 1fr);
}

.content-media-grid figure {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--legal-navy);
}

.content-media-grid.single figure {
  min-height: clamp(300px, 38vw, 410px);
}

.content-media-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.content-media-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 52px 20px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 17, 31, .86) 58%, rgba(9, 17, 31, .96) 100%);
}

.content-media-grid figcaption strong,
.content-media-grid figcaption span {
  display: block;
  color: #ffffff;
}

.content-media-grid figcaption strong {
  margin-bottom: 6px;
  font-size: 20px;
}

.content-media-grid figcaption span {
  max-width: 620px;
  color: #e8eef6;
  line-height: 1.55;
}

.rich-content h3,
.blog-content h3 {
  margin: 28px 0 10px;
  color: var(--legal-ink);
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.3;
}

.rich-content ul,
.blog-content ul {
  margin: 16px 0 24px;
  padding: 0;
  list-style: none;
}

.rich-content li,
.blog-content li {
  position: relative;
  margin: 9px 0;
  padding-left: 24px;
  color: var(--legal-muted);
  line-height: 1.65;
}

.rich-content li::before,
.blog-content li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--legal-gold);
}

.content-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--legal-gold);
  border-radius: 0 12px 12px 0;
  background: #f5f8fc;
  color: var(--legal-muted);
}

@media (max-width: 700px) {
  .content-media-gallery {
    width: calc(100% - 28px);
  }

  .content-media-grid {
    grid-template-columns: 1fr;
  }

  .content-media-grid figure,
  .content-media-grid.single figure,
  .content-media-grid img {
    min-height: 248px;
  }
}

.service-journey {
  width: min(1180px, calc(100% - 48px));
  margin: 18px auto 52px;
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(420px, 1.22fr);
  gap: clamp(28px, 4vw, 52px);
  padding: clamp(28px, 5vw, 52px);
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 8%, rgba(191, 147, 66, .18), transparent 33%),
    linear-gradient(126deg, #0b1526 0%, #10213a 53%, #08111e 100%);
  box-shadow: 0 30px 74px rgba(10, 18, 33, .23);
}

.service-journey .eyebrow {
  color: #e0b667;
}

.service-journey-intro h2 {
  margin: 14px 0 16px;
  color: #ffffff;
  font-size: clamp(29px, 3.2vw, 42px);
  line-height: 1.14;
}

.service-journey-intro p {
  margin: 0;
  color: #c8d3e3;
  line-height: 1.7;
}

.journey-progress {
  width: 100%;
  height: 4px;
  margin-top: 32px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, .14);
}

.journey-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: #d6a951;
  transition: width .42s ease;
}

.journey-workspace {
  display: grid;
  gap: 18px;
}

.journey-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.journey-tabs button {
  display: grid;
  gap: 9px;
  min-height: 92px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  color: #bfcddd;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.journey-tabs b {
  color: #d6a951;
  font-size: 12px;
  font-weight: 800;
}

.journey-tabs span {
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28;
}

.journey-tabs button:is(:hover, :focus-visible, .active) {
  border-color: rgba(214, 169, 81, .56);
  background: rgba(214, 169, 81, .12);
  color: #ffffff;
}

.journey-panels {
  min-height: 258px;
}

.journey-panels article {
  height: 100%;
  min-height: 258px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
  animation: journeyReveal .34s ease;
}

.journey-panels article > span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(214, 169, 81, .14);
  color: #e7bd6a;
  font-size: 12px;
  font-weight: 800;
}

.journey-panels h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(23px, 2.5vw, 29px);
  line-height: 1.22;
}

.journey-panels p {
  margin: 0 0 22px;
  color: #c7d3e2;
  line-height: 1.68;
}

.journey-panels strong {
  display: block;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #ffffff;
  font-size: 14px;
}

@keyframes journeyReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .service-journey {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .service-journey {
    width: calc(100% - 28px);
    margin-bottom: 32px;
    padding: 22px 18px;
    border-radius: 20px;
  }

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

  .journey-tabs button {
    min-height: 76px;
  }

  .journey-panels,
  .journey-panels article {
    min-height: 0;
  }
}

.hero-slider .slider-controls .slider-arrow {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
}

.hero-slider .slider-controls .slider-arrow:hover,
.hero-slider .slider-controls .slider-arrow:focus-visible {
  border-color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .3);
}

.studio-stack .studio-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border: 1px solid rgba(184, 139, 61, .22);
  border-radius: 14px;
  background: #fbf4e8;
  color: #8b651c;
}

.studio-stack .studio-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-intake-module {
  grid-template-columns: minmax(260px, .82fr) minmax(430px, 1.18fr);
  gap: clamp(30px, 4vw, 54px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(184, 139, 61, .08), transparent 32%),
    #ffffff;
}

.case-intake-module .module-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(31px, 3.5vw, 44px);
  line-height: 1.13;
}

.case-intake-module .module-copy > p {
  margin: 0;
  line-height: 1.7;
}

.intake-assurances {
  display: grid;
  gap: 11px;
  margin-top: 29px;
}

.case-intake-module .intake-assurances span {
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--legal-ink);
  font-weight: 700;
}

.intake-assurances b {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #edf5f4;
  color: var(--legal-teal);
  font-size: 12px;
}

.intake-console {
  min-height: 464px;
  padding: clamp(18px, 3vw, 25px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 6%, rgba(207, 164, 82, .18), transparent 29%),
    linear-gradient(135deg, #0d192d 0%, #11253e 100%);
  box-shadow: 0 28px 70px rgba(13, 25, 45, .22);
}

.intake-console-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 19px;
}

.intake-console-head div {
  display: grid;
  gap: 5px;
}

.case-intake-module .intake-console-head small {
  color: #a9bbcf;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.case-intake-module .intake-console-head strong {
  color: #ffffff;
  font-size: 22px;
}

.case-intake-module .intake-status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(119, 214, 175, .25);
  border-radius: 999px;
  background: rgba(52, 138, 114, .15);
  color: #b5ead3;
  font-size: 13px;
  font-weight: 750;
}

.intake-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #53d9a4;
  box-shadow: 0 0 0 6px rgba(83, 217, 164, .12);
}

.intake-meter {
  height: 3px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .14);
}

.intake-meter span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d3a451, #f3d28d);
  transition: width .38s ease;
}

.intake-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.intake-tabs button {
  display: grid;
  place-items: center;
  gap: 7px;
  min-height: 76px;
  padding: 10px 6px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  color: #aebdd1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.intake-tabs svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-intake-module .intake-tabs span {
  display: block;
  color: inherit;
  font-size: 13px;
  font-weight: 750;
}

.intake-tabs button:is(.active, :hover, :focus-visible) {
  border-color: rgba(214, 169, 81, .48);
  background: rgba(214, 169, 81, .13);
  color: #f4d58d;
}

.intake-panels article {
  min-height: 206px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 15px;
  background: rgba(255, 255, 255, .05);
  animation: intakeReveal .32s ease;
}

.case-intake-module .intake-panel-tag {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(214, 169, 81, .13);
  color: #eecb83;
  font-size: 12px;
  font-weight: 800;
}

.case-intake-module .intake-panel-tag.urgent {
  background: rgba(188, 77, 70, .2);
  color: #ffc6bf;
}

.intake-panels h3 {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: clamp(22px, 2.2vw, 26px);
  line-height: 1.25;
}

.case-intake-module .intake-panels p {
  margin: 0 0 17px;
  color: #c7d4e3;
  font-size: 15px;
  line-height: 1.57;
}

.intake-panels footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.case-intake-module .intake-panels footer span {
  color: #a9bbcf;
  font-size: 13px;
}

.intake-panels footer strong {
  color: #ffffff;
  font-size: 14px;
}

@keyframes intakeReveal {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .case-intake-module {
    grid-template-columns: 1fr;
  }

  .intake-console {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .case-intake-module {
    padding: 22px 18px;
  }

  .intake-console {
    padding: 16px;
    border-radius: 18px;
  }

  .intake-console-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .intake-panels article {
    min-height: 0;
  }
}

.attorney-spotlight {
  width: min(1180px, calc(100% - 48px));
  margin: 28px auto;
  display: grid;
  grid-template-columns: minmax(320px, .93fr) minmax(390px, 1.07fr);
  gap: clamp(28px, 4.5vw, 52px);
  align-items: stretch;
  padding: clamp(18px, 2.4vw, 25px);
  border: 1px solid var(--legal-line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--legal-shadow);
}

.page-content .attorney-spotlight {
  width: 100%;
  margin: 34px 0 0;
  padding: clamp(14px, 2vw, 20px);
  box-shadow: 0 15px 38px rgba(23, 32, 51, .08);
}

.page-content .about-attorney-spotlight .attorney-portrait {
  min-height: 500px;
}

.attorney-portrait {
  --portrait-x: 0px;
  --portrait-y: 0px;
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #e7edee;
}

.attorney-portrait img {
  display: block;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  margin: -8px;
  object-fit: cover;
  object-position: 64% center;
  transform: translate(var(--portrait-x), var(--portrait-y)) scale(1.025);
  transition: transform .34s ease-out;
}

.attorney-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(10, 18, 32, .2) 65%, rgba(10, 18, 32, .9) 100%);
}

.attorney-portrait figcaption {
  position: absolute;
  z-index: 1;
  right: 25px;
  bottom: 25px;
  left: 25px;
}

.attorney-portrait figcaption small,
.attorney-portrait figcaption strong,
.attorney-portrait figcaption span {
  display: block;
  color: #ffffff;
}

.attorney-portrait figcaption small {
  margin-bottom: 9px;
  color: #e9c778;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.attorney-portrait figcaption strong {
  margin-bottom: 5px;
  font-size: clamp(29px, 3vw, 36px);
  line-height: 1.12;
}

.attorney-portrait figcaption span {
  color: #d8e2ef;
  font-size: 14px;
}

.attorney-profile-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(8px, 2vw, 22px) clamp(4px, 2vw, 14px);
}

.attorney-profile-content h2 {
  margin: 13px 0 15px;
  color: var(--legal-ink);
  font-size: clamp(31px, 3.6vw, 45px);
  line-height: 1.12;
}

.attorney-profile-content > p {
  margin: 0 0 25px;
  color: var(--legal-muted);
  line-height: 1.68;
}

.profile-specialty-tabs {
  display: flex;
  gap: 7px;
  padding: 5px;
  width: max-content;
  max-width: 100%;
  margin-bottom: 17px;
  border-radius: 999px;
  background: #f1f5f9;
}

.profile-specialty-tabs button {
  min-height: 39px;
  padding: 8px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--legal-muted);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.profile-specialty-tabs button:is(.active, :hover, :focus-visible) {
  background: var(--legal-navy);
  color: #ffffff;
  box-shadow: 0 8px 19px rgba(16, 33, 58, .18);
}

.profile-specialty-panels {
  min-height: 190px;
}

.profile-specialty-panels article {
  min-height: 190px;
  padding: 21px 22px;
  border: 1px solid var(--legal-line);
  border-radius: 16px;
  background: #f6f9fc;
  animation: profileReveal .32s ease;
}

.profile-specialty-panels article > span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f4e8d0;
  color: #795817;
  font-size: 12px;
  font-weight: 800;
}

.profile-specialty-panels h3 {
  margin: 0 0 8px;
  color: var(--legal-ink);
  font-size: clamp(21px, 2.2vw, 25px);
  line-height: 1.28;
}

.profile-specialty-panels p {
  margin: 0 0 15px;
  color: var(--legal-muted);
  line-height: 1.56;
}

.profile-specialty-panels strong {
  color: var(--legal-blue);
  font-size: 13px;
  font-weight: 800;
}

.profile-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 23px;
}

.profile-actions .button {
  min-height: 48px;
}

.profile-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--legal-ink);
  font-weight: 750;
}

.profile-link span {
  font-size: 20px;
  transition: transform .18s ease;
}

.profile-link:hover span {
  transform: translateX(4px);
}

@keyframes profileReveal {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  .attorney-spotlight {
    grid-template-columns: 1fr;
  }

  .attorney-portrait {
    min-height: clamp(360px, 76vw, 540px);
  }

  .page-content .about-attorney-spotlight .attorney-portrait {
    min-height: clamp(350px, 72vw, 470px);
  }
}

@media (max-width: 560px) {
  .attorney-spotlight {
    width: calc(100% - 28px);
    padding: 12px;
    border-radius: 20px;
  }

  .attorney-portrait {
    min-height: 360px;
    border-radius: 14px;
  }

  .page-content .about-attorney-spotlight .attorney-portrait {
    min-height: 330px;
  }

  .attorney-portrait figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .attorney-profile-content {
    padding: 12px 6px 8px;
  }

  .profile-specialty-tabs {
    width: 100%;
  }

  .profile-specialty-tabs button {
    flex: 1;
    padding-inline: 8px;
  }

  .profile-specialty-panels,
  .profile-specialty-panels article {
    min-height: 0;
  }

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

  .profile-link {
    justify-content: center;
  }
}

/* Homepage interactive module language */
.home-experience [data-hover-surface] {
  --hover-x: 50%;
  --hover-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.home-experience [data-hover-surface] > *:not(.module-hover-glow) {
  position: relative;
  z-index: 1;
}

.home-experience .module-hover-glow {
  position: absolute;
  z-index: 0;
  top: var(--hover-y);
  left: var(--hover-x);
  width: 360px;
  height: 360px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 139, 61, .12), rgba(184, 139, 61, 0) 68%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity .22s ease;
}

.home-experience .value-band .module-hover-glow,
.home-experience .process-band .module-hover-glow,
.home-experience .cta-wide .module-hover-glow {
  background: radial-gradient(circle, rgba(239, 203, 127, .17), rgba(239, 203, 127, 0) 68%);
}

.home-experience [data-hover-surface].is-pointer-over {
  transform: translateY(-3px);
  border-color: rgba(184, 139, 61, .28);
  box-shadow: 0 28px 62px rgba(16, 33, 58, .15);
}

.home-experience [data-hover-surface].is-pointer-over .module-hover-glow {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .home-experience [data-hover-surface] {
    transition: border-color .26s ease, box-shadow .3s ease, transform .28s ease;
  }

  .home-experience [data-hover-surface]:is(:hover, :focus-within) {
    transform: translateY(-3px);
    border-color: rgba(184, 139, 61, .28);
    box-shadow: 0 28px 62px rgba(16, 33, 58, .15);
  }

  .home-experience [data-hover-surface].is-pointer-over .module-hover-glow {
    opacity: 1;
  }

  .home-experience .stats-band div,
  .home-experience .trust-grid article,
  .home-experience .studio-stack article,
  .home-experience .case-method-grid article,
  .home-experience .value-grid article,
  .home-experience .service-card,
  .home-experience .document-flow-list article,
  .home-experience .process-steps article,
  .home-experience .faq-grid article {
    transition: transform .25s ease, box-shadow .28s ease, border-color .25s ease, background-color .25s ease;
  }

  .home-experience .stats-band div:hover {
    background: #f6f9fc;
  }

  .home-experience .stats-band div:hover strong {
    color: var(--legal-burgundy);
  }

  .home-experience .trust-grid article:hover,
  .home-experience .studio-stack article:hover,
  .home-experience .case-method-grid article:hover,
  .home-experience .service-card:hover,
  .home-experience .document-flow-list article:hover,
  .home-experience .faq-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 139, 61, .34);
    box-shadow: 0 25px 54px rgba(16, 33, 58, .14);
  }

  .home-experience .studio-stack article:hover .studio-icon {
    border-color: rgba(184, 139, 61, .42);
    background: #f2e4c8;
    transform: translateY(-2px);
  }

  .home-experience .studio-icon {
    transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
  }

  .home-experience .case-method-grid article:hover span,
  .home-experience .document-flow-list article:hover b {
    background: #e2f1ee;
    color: #11695f;
  }

  .home-experience .case-method-grid span,
  .home-experience .document-flow-list b {
    transition: background-color .24s ease, color .24s ease;
  }

  .home-experience .value-grid article:hover,
  .home-experience .process-steps article:hover {
    transform: translateY(-5px);
    border-color: rgba(238, 204, 132, .46);
    background: rgba(255, 255, 255, .13);
    box-shadow: 0 23px 48px rgba(5, 14, 27, .2);
  }

  .home-experience .sector-strip span {
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  }

  .home-experience .sector-strip span:hover {
    transform: translateY(-3px);
    border-color: rgba(49, 93, 134, .3);
    box-shadow: 0 10px 22px rgba(16, 33, 58, .09);
  }

  .home-experience .intake-console {
    transition: transform .3s ease, box-shadow .3s ease;
  }

  .home-experience .case-intake-module:hover .intake-console {
    transform: translateY(-3px);
    box-shadow: 0 38px 78px rgba(13, 25, 45, .28);
  }

  .home-experience .attorney-portrait {
    transition: box-shadow .3s ease;
  }

  .home-experience .attorney-spotlight:hover .attorney-portrait {
    box-shadow: 0 25px 56px rgba(16, 33, 58, .18);
  }

  .home-experience .profile-specialty-panels article {
    transition: border-color .24s ease, background-color .24s ease;
  }

  .home-experience .attorney-spotlight:hover .profile-specialty-panels article {
    border-color: rgba(184, 139, 61, .25);
    background: #f3f7fb;
  }

  .home-experience .service-card:hover a,
  .home-experience .profile-link:hover {
    color: var(--legal-burgundy);
  }

  .home-experience .cta-wide .button {
    transition: transform .22s ease, box-shadow .25s ease, background-color .22s ease;
  }

  .home-experience .cta-wide:hover .button {
    transform: translateX(4px);
    box-shadow: 0 16px 30px rgba(5, 14, 27, .22);
  }
}

.home-experience .stats-band div.is-card-hovered {
  background: #f6f9fc;
}

.home-experience .stats-band div.is-card-hovered strong {
  color: var(--legal-burgundy);
}

.home-experience .trust-grid article.is-card-hovered,
.home-experience .studio-stack article.is-card-hovered,
.home-experience .case-method-grid article.is-card-hovered,
.home-experience .service-card.is-card-hovered,
.home-experience .document-flow-list article.is-card-hovered,
.home-experience .faq-grid article.is-card-hovered {
  transform: translateY(-6px);
  border-color: rgba(184, 139, 61, .34);
  box-shadow: 0 25px 54px rgba(16, 33, 58, .14);
}

.home-experience .studio-stack article.is-card-hovered .studio-icon {
  border-color: rgba(184, 139, 61, .42);
  background: #f2e4c8;
  transform: translateY(-2px);
}

.home-experience .case-method-grid article.is-card-hovered span,
.home-experience .document-flow-list article.is-card-hovered b {
  background: #e2f1ee;
  color: #11695f;
}

.home-experience .value-grid article.is-card-hovered,
.home-experience .process-steps article.is-card-hovered {
  transform: translateY(-5px);
  border-color: rgba(238, 204, 132, .46);
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 23px 48px rgba(5, 14, 27, .2);
}

.home-experience .sector-strip span.is-card-hovered {
  transform: translateY(-3px);
  border-color: rgba(49, 93, 134, .3);
  box-shadow: 0 10px 22px rgba(16, 33, 58, .09);
}

.home-experience .case-intake-module.is-pointer-over .intake-console {
  transform: translateY(-3px);
  box-shadow: 0 38px 78px rgba(13, 25, 45, .28);
}

.home-experience .attorney-spotlight.is-pointer-over .attorney-portrait {
  box-shadow: 0 25px 56px rgba(16, 33, 58, .18);
}

.home-experience .attorney-spotlight.is-pointer-over .profile-specialty-panels article {
  border-color: rgba(184, 139, 61, .25);
  background: #f3f7fb;
}

.home-experience .service-card.is-card-hovered a {
  color: var(--legal-burgundy);
}

.home-experience .cta-wide.is-pointer-over .button {
  transform: translateX(4px);
  box-shadow: 0 16px 30px rgba(5, 14, 27, .22);
}

/* Interactive document vault */
.document-flow.document-vault {
  grid-template-columns: minmax(280px, .88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 2% 90%, rgba(184, 139, 61, .13), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f6f9fc 100%);
}

.document-vault-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.12;
}

.document-vault-copy p {
  max-width: 450px;
  margin-bottom: 28px;
}

.vault-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vault-metric {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 12px;
  border: 1px solid #dae4ee;
  border-radius: 8px;
  background: #ffffff;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.vault-metric svg {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 8px;
  background: #edf5f4;
  fill: none;
  stroke: var(--legal-teal);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vault-metric strong,
.vault-metric span {
  display: block;
}

.vault-metric strong {
  margin-bottom: 3px;
  color: var(--legal-ink);
  font-size: 14px;
}

.vault-metric span {
  color: var(--legal-muted);
  font-size: 12px;
}

.document-vault-console {
  min-width: 0;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(204, 220, 235, .16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(184, 139, 61, .2), transparent 32%),
    #10213a;
  box-shadow: 0 28px 62px rgba(16, 33, 58, .2);
  color: #ffffff;
}

.vault-console-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.vault-console-head strong {
  display: block;
  margin-top: 9px;
  color: #ffffff;
  font-size: 18px;
}

.vault-live,
.vault-secure {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c6d6e7;
  font-size: 12px;
  font-weight: 700;
}

.vault-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3fc299;
  box-shadow: 0 0 0 5px rgba(63, 194, 153, .14);
}

.vault-secure {
  padding: 7px 10px;
  border: 1px solid rgba(239, 203, 127, .3);
  border-radius: 999px;
  color: #efcb7f;
  white-space: nowrap;
}

.vault-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  padding: 5px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.vault-tabs button {
  min-height: 43px;
  padding: 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #c9d5e3;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.vault-tabs button:is(:hover, :focus-visible),
.vault-tabs button.active {
  background: #ffffff;
  color: var(--legal-navy);
}

.vault-tabs button:focus-visible {
  outline: 2px solid var(--legal-gold);
  outline-offset: 1px;
}

.vault-panel {
  animation: vaultPanelIn .28s ease both;
}

@keyframes vaultPanelIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.vault-panel-summary {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 14px;
}

.vault-panel-summary span {
  color: #b8c9da;
  font-size: 12px;
  white-space: nowrap;
}

.vault-doc-list {
  display: grid;
  gap: 9px;
}

.vault-doc {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 10px 12px;
  border: 1px solid rgba(215, 228, 241, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
  transition: transform .24s ease, background-color .24s ease, border-color .24s ease;
}

.vault-doc b {
  padding: 7px 8px;
  border-radius: 6px;
  background: rgba(239, 203, 127, .15);
  color: #efcb7f;
  font-size: 11px;
}

.vault-doc strong,
.vault-doc small {
  display: block;
}

.vault-doc strong {
  color: #ffffff;
  font-size: 14px;
}

.vault-doc small {
  margin-top: 4px;
  color: #a8bbce;
  font-size: 12px;
}

.vault-doc span {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.status-filed {
  background: rgba(63, 194, 153, .14);
  color: #69ddbb;
}

.status-review {
  background: rgba(104, 164, 226, .16);
  color: #a4cef5;
}

.status-draft {
  background: rgba(239, 203, 127, .14);
  color: #efcb7f;
}

.vault-console-foot {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-top: 19px;
}

.vault-progress {
  flex: 1 1 auto;
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .13);
}

.vault-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: #efcb7f;
  transition: width .3s ease;
}

.vault-console-foot a {
  flex: 0 0 auto;
  color: #efcb7f;
  font-size: 13px;
  font-weight: 700;
}

.vault-console-foot a span {
  display: inline-block;
  transition: transform .18s ease;
}

.vault-console-foot a:hover span {
  transform: translateX(3px);
}

.home-experience .vault-metric.is-card-hovered {
  transform: translateY(-4px);
  border-color: rgba(184, 139, 61, .32);
  box-shadow: 0 18px 32px rgba(16, 33, 58, .1);
}

.home-experience .vault-doc.is-card-hovered {
  transform: translateX(4px);
  border-color: rgba(239, 203, 127, .32);
  background: rgba(255, 255, 255, .09);
}

@media (max-width: 1100px) {
  .document-flow.document-vault {
    grid-template-columns: 1fr;
  }

  .document-vault-copy p {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .document-vault-copy h2 {
    font-size: 29px;
  }

  .vault-metrics {
    grid-template-columns: 1fr;
  }

  .vault-console-head,
  .vault-panel-summary,
  .vault-console-foot {
    flex-direction: column;
  }

  .vault-tabs button {
    min-height: 48px;
    font-size: 12px;
  }

  .vault-doc {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .vault-doc span {
    grid-column: 2;
  }

  .vault-progress {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-experience *,
  .home-experience *::before,
  .home-experience *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* Client matter hub */
.client-hub-hero {
  width: min(1240px, calc(100% - 48px));
  margin: 112px auto 24px;
  padding: clamp(28px, 4vw, 46px);
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  align-items: end;
  gap: clamp(22px, 4vw, 48px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 14%, rgba(239, 203, 127, .17), transparent 26%),
    linear-gradient(132deg, #10213a, #193758 68%, #10213a);
  color: #fff;
  box-shadow: 0 28px 72px rgba(16, 33, 58, .22);
}

.client-hub-heading .eyebrow {
  color: #efcb7f;
}

.client-hub-heading h1 {
  max-width: 680px;
  margin: 12px 0;
  color: #fff;
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.08;
}

.client-hub-heading p {
  max-width: 650px;
  margin: 0 0 24px;
  color: #d6e1ed;
}

.client-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-hub-actions .secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
}

.client-hub-actions .secondary:is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .62);
  color: #fff;
}

.client-hub-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(105px, 1fr));
  gap: 9px;
}

.client-hub-metrics article {
  min-height: 104px;
  padding: 18px 15px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.client-hub-metrics strong,
.client-hub-metrics span {
  display: block;
}

.client-hub-metrics strong {
  color: #fff;
  font-size: 30px;
}

.client-hub-metrics span {
  margin-top: 5px;
  color: #c7d5e4;
  font-size: 13px;
  font-weight: 700;
}

.client-workspace {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: 302px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.client-case-switcher,
.client-case-detail,
.client-support-strip article {
  border: 1px solid var(--legal-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 33, 58, .07);
}

.client-case-switcher {
  position: sticky;
  top: 104px;
  padding: 12px;
}

.case-switcher-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 16px;
}

.case-switcher-head span {
  color: var(--legal-ink);
  font-weight: 800;
}

.case-switcher-head strong {
  color: var(--legal-muted);
  font-size: 12px;
}

.client-case-switcher > a {
  display: block;
  margin-bottom: 8px;
  padding: 15px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f5f8fb;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.client-case-switcher > a:is(:hover, .active) {
  border-color: rgba(184, 139, 61, .32);
  background: #fff;
  box-shadow: 0 10px 22px rgba(16, 33, 58, .08);
}

.client-case-switcher small,
.client-case-switcher p,
.client-case-switcher span {
  display: block;
}

.client-case-switcher small {
  color: var(--legal-burgundy);
  font-size: 11px;
  font-weight: 750;
}

.client-case-switcher h2 {
  margin: 8px 0 4px;
  color: var(--legal-ink);
  font-size: 16px;
  line-height: 1.3;
}

.client-case-switcher p,
.client-case-switcher span {
  margin: 0;
  color: var(--legal-muted);
  font-size: 12px;
}

.switcher-progress {
  height: 4px;
  margin: 13px 0 10px;
  overflow: hidden;
  border-radius: 99px;
  background: #e6edf4;
}

.switcher-progress i {
  display: block;
  height: 100%;
  background: var(--legal-gold);
}

.client-case-detail {
  min-width: 0;
  padding: clamp(18px, 3vw, 30px);
}

.client-case-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 22px;
}

.client-case-header span,
.client-case-section span,
.case-next-step > span,
.next-hearing-card > span,
.client-support-strip span {
  color: var(--legal-burgundy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.client-case-header h2 {
  margin: 8px 0 6px;
  color: var(--legal-ink);
  font-size: clamp(25px, 3vw, 32px);
}

.client-case-header p {
  margin: 0;
  color: var(--legal-muted);
}

.client-case-header > strong {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 999px;
  background: #edf5f4;
  color: var(--legal-teal);
  font-size: 13px;
}

.case-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(210px, .82fr);
  gap: 12px;
  margin-bottom: 18px;
}

.case-next-step,
.next-hearing-card {
  padding: 20px;
  border-radius: 8px;
  background: #f5f8fb;
}

.case-next-step h3,
.next-hearing-card h3 {
  margin: 11px 0 16px;
  color: var(--legal-ink);
  font-size: 18px;
  line-height: 1.45;
}

.case-stage-progress div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--legal-muted);
  font-size: 12px;
}

.case-stage-progress b {
  color: var(--legal-navy);
}

.case-stage-progress i {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: #dbe6f0;
}

.case-stage-progress i span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--legal-teal), var(--legal-gold));
}

.next-hearing-card {
  background: #10213a;
}

.next-hearing-card > span {
  color: #efcb7f;
}

.next-hearing-card time {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 29px;
  font-weight: 800;
}

.next-hearing-card h3 {
  margin: 5px 0 7px;
  color: #fff;
}

.next-hearing-card p {
  margin: 0;
  color: #cad7e5;
  font-size: 13px;
}

.client-case-summary {
  margin: 0 0 28px;
  padding: 17px 19px;
  border-left: 3px solid var(--legal-gold);
  background: #fbfaf7;
  color: var(--legal-muted);
}

.client-case-section + .client-case-section {
  margin-top: 30px;
}

.client-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 17px;
}

.client-section-heading h2 {
  margin: 6px 0 0;
  color: var(--legal-ink);
  font-size: 22px;
}

.client-section-heading > strong {
  color: var(--legal-muted);
  font-size: 13px;
}

.client-hearing-list {
  display: grid;
  gap: 9px;
}

.client-hearing-list article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: start;
  gap: 15px;
  padding: 15px;
  border: 1px solid var(--legal-line);
  border-radius: 8px;
}

.hearing-index {
  padding: 9px 5px;
  border-radius: 8px;
  background: #f2f6fa;
  text-align: center;
}

.hearing-index strong {
  display: block;
  color: var(--legal-navy);
  font-size: 24px;
}

.hearing-index span {
  color: var(--legal-muted);
  font-size: 10px;
}

.client-hearing-list time {
  color: var(--legal-muted);
  font-size: 12px;
  font-weight: 700;
}

.client-hearing-list h3 {
  margin: 5px 0;
  color: var(--legal-ink);
  font-size: 16px;
}

.client-hearing-list p {
  margin: 0;
  color: var(--legal-muted);
  font-size: 13px;
}

.client-hearing-list article > b {
  padding: 6px 9px;
  border-radius: 99px;
  background: #edf5f4;
  color: var(--legal-teal);
  font-size: 11px;
}

.client-hearing-list .planned > b {
  background: #f8f1e4;
  color: #916b28;
}

.document-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.document-filters button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--legal-line);
  border-radius: 99px;
  background: #fff;
  color: var(--legal-muted);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.document-filters button.active {
  border-color: var(--legal-navy);
  background: var(--legal-navy);
  color: #fff;
}

.client-document-list {
  display: grid;
  gap: 8px;
}

.client-document-list > a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 13px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--legal-line);
  border-radius: 8px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.client-document-list > a[hidden] {
  display: none;
}

.client-document-list > a:hover {
  border-color: rgba(184, 139, 61, .4);
  box-shadow: 0 9px 22px rgba(16, 33, 58, .08);
}

.doc-type {
  padding: 8px;
  border-radius: 6px;
  background: #f8f1e4;
  color: #916b28;
  font-size: 11px;
  font-weight: 800;
}

.client-document-list strong,
.client-document-list small {
  display: block;
}

.client-document-list strong {
  color: var(--legal-ink);
  font-size: 14px;
}

.client-document-list small,
.client-document-list time {
  margin-top: 3px;
  color: var(--legal-muted);
  font-size: 12px;
}

.client-document-list b {
  color: var(--legal-blue);
  font-size: 13px;
}

.panel-empty {
  padding: 18px;
  border: 1px dashed #d4dfe9;
  border-radius: 8px;
  color: var(--legal-muted);
}

.panel-empty.prominent {
  padding: clamp(34px, 6vw, 72px);
  text-align: center;
}

.panel-empty.prominent h2 {
  color: var(--legal-ink);
}

.client-support-strip {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.client-support-strip article {
  padding: 22px;
}

.client-support-strip h2 {
  margin: 10px 0 8px;
  color: var(--legal-ink);
  font-size: 18px;
}

.client-support-strip p {
  margin: 0 0 12px;
  color: var(--legal-muted);
  font-size: 13px;
}

.client-support-strip a {
  color: var(--legal-blue);
  font-weight: 700;
}

/* Case administration */
.admin-case-row {
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 20px !important;
}

.admin-case-row strong,
.admin-case-row span,
.admin-case-row small {
  display: block;
}

.admin-case-row small {
  margin-bottom: 5px;
  color: var(--muted);
}

.admin-case-row span {
  margin-top: 5px;
  color: var(--blue);
  font-size: 13px;
}

.admin-case-counts {
  display: flex;
  gap: 8px;
  align-items: center;
}

.admin-case-counts span,
.admin-case-counts b {
  padding: 7px 10px;
  border-radius: 6px;
  background: #f2f6fa;
  font-size: 12px;
  white-space: nowrap;
}

.admin-case-counts b {
  background: #edf5f4;
  color: #11695f;
}

.admin-case-editor {
  display: grid;
  gap: 18px;
}

.admin-case-form {
  max-width: none;
}

.admin-case-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-case-fields .wide,
.compact-admin-form .wide {
  grid-column: 1 / -1;
}

.admin-case-tools,
.admin-case-records {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compact-admin-form {
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.compact-admin-form > div,
.compact-admin-form > button {
  grid-column: 1 / -1;
}

.admin-case-records article {
  padding: 22px;
  border: 1px solid #e4e8ee;
  border-radius: 8px;
  background: #fff;
}

.admin-case-records h2 {
  margin: 0 0 15px;
}

.admin-case-records article > div {
  padding: 12px 0;
  border-top: 1px solid #eef1f5;
}

.admin-case-records article > div:first-of-type {
  border-top: 0;
}

.admin-case-records span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.admin-case-records p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.admin-document-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.admin-document-row button {
  padding: 7px 10px;
  border: 1px solid #e6bcbc;
  border-radius: 6px;
  background: #fff4f4;
  color: #a33737;
  cursor: pointer;
}

@media (max-width: 1050px) {
  .client-hub-hero,
  .client-workspace,
  .client-support-strip,
  .admin-case-tools,
  .admin-case-records {
    grid-template-columns: 1fr;
  }

  .client-case-switcher {
    position: static;
  }
}

@media (max-width: 700px) {
  .client-hub-hero,
  .client-workspace,
  .client-support-strip {
    width: calc(100% - 28px);
  }

  .client-hub-hero {
    margin-top: 98px;
  }

  .client-hub-metrics,
  .case-overview-grid,
  .admin-case-fields,
  .compact-admin-form {
    grid-template-columns: 1fr;
  }

  .client-case-header,
  .client-section-heading {
    display: block;
  }

  .client-case-header > strong,
  .client-section-heading > strong {
    display: inline-block;
    margin-top: 13px;
  }

  .client-hearing-list article {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .client-hearing-list article > b {
    grid-column: 2;
  }

  .client-document-list > a {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .client-document-list time,
  .client-document-list b {
    grid-column: 2;
  }

  .admin-case-row {
    grid-template-columns: 1fr !important;
  }

  .admin-case-counts {
    flex-wrap: wrap;
  }
}
