:root {
  --bg: #0E1C34;
  --surface: #ffffff;
  --ink: #0E1C34;
  --ink-soft: #0E1C34;
  --line: #F1D8B2;
  --radius: 8px;
  --nav-height-desktop: 92px;
  --logo-height-desktop: 36px;
  --logo-height-tablet: 34px;
  --logo-height-mobile: 28px;
  --logo-height-sticky: 32px;
  --logo-height-landing: 36px;
  --nav-side-padding: clamp(64px, 4.8vw, 80px);
  --hero-background-image: url("assets/images/hero/oskar-kadaksoo-corporate-hero.jpg");
  --ohl-navy: #0E1C34;
  --ohl-ivory: #F1D8B2;
  --ohl-warm: #F1D8B2;
  --ohl-bronze: #F1D8B2;
  --ohl-slate: #0E1C34;
  --ohl-border: #F1D8B2;
  --ohl-heading: #0E1C34;
  --ohl-section-space: clamp(56px, 8vw, 112px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: #F1D8B2;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html.disclaimer-pending body,
.has-disclaimer {
  overflow: hidden;
}

.disclaimer-gate {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  animation: disclaimerFadeIn 0.75s ease both;
}

html.disclaimer-pending .disclaimer-gate,
.has-disclaimer .disclaimer-gate {
  display: grid;
}

html.disclaimer-accepted .disclaimer-gate {
  display: none;
}

.disclaimer-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.disclaimer-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(241, 216, 178, 0.12), transparent 34%),
    rgba(14, 28, 52, 0.62);
  backdrop-filter: blur(22px) saturate(1.04);
  -webkit-backdrop-filter: blur(22px) saturate(1.04);
  transition: opacity 0.55s ease, backdrop-filter 0.55s ease;
}

.disclaimer-gate.is-hidden .disclaimer-backdrop {
  opacity: 0;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}

.disclaimer-card {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
    rgba(14, 28, 52, 0.62);
  backdrop-filter: blur(28px) saturate(1.12);
  -webkit-backdrop-filter: blur(28px) saturate(1.12);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: clamp(26px, 4vw, 46px);
  box-shadow:
    0 36px 110px rgba(14, 28, 52, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: translateY(0) scale(1);
  transition: opacity 0.48s ease, transform 0.48s ease;
}

.disclaimer-gate.is-hidden .disclaimer-card {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}

.disclaimer-card h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  font-weight: 500;
  line-height: 1.1;
  color: #F1D8B2;
  margin: 0 0 20px;
}

.disclaimer-card p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.76;
  color: rgba(241, 216, 178, 0.84);
  margin: 0 0 14px;
}

.disclaimer-card p:last-of-type {
  margin-bottom: 0;
}

.disclaimer-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn-disclaimer {
  border-radius: 4px;
  min-width: 144px;
  height: 48px;
  padding: 0 22px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.btn-disclaimer-primary {
  background: var(--theme-navy, #0E1C34);
  color: #ffffff;
  border: 1px solid rgba(241, 216, 178, 0.72);
  box-shadow: 0 16px 36px rgba(14, 28, 52, 0.24);
}

.btn-disclaimer-outline {
  background: transparent;
  color: rgba(241, 216, 178, 0.86);
  border: 1px solid rgba(241, 216, 178, 0.42);
}

.btn-disclaimer:hover {
  transform: translateY(-2px);
}

.btn-disclaimer-primary:hover {
  background: #0E1C34;
  border-color: var(--theme-warm, #F1D8B2);
}

.btn-disclaimer-outline:hover {
  border-color: var(--theme-warm, #F1D8B2);
  color: #ffffff;
}

.site-shell {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, filter 0.55s ease, transform 0.55s ease;
  transform-origin: center top;
}

html.disclaimer-accepted .site-shell,
.pre-entry .site-shell {
  opacity: 1;
  visibility: visible;
  max-height: none;
  overflow: visible;
}

.disclaimer-pending .site-shell,
.has-disclaimer .site-shell {
  filter: blur(12px);
  transform: scale(1.012);
  pointer-events: none;
  user-select: none;
}

body.entry-accepted .site-shell {
  filter: none;
  transform: none;
  transition: none;
}

@keyframes disclaimerFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

p {
  margin: 0;
  color: #F1D8B2;
  line-height: 1.58;
  font-size: 1.06rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.16;
  font-weight: 600;
}

.container {
  width: min(1900px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1200;
  padding: 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(241, 216, 178, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 28, 52, 0.12);
  opacity: 1;
  transition: opacity 0.35s ease, backdrop-filter 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

body.scrolled .site-header::before {
  opacity: 1;
  backdrop-filter: blur(12px);
}

.nav-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: var(--nav-height-desktop);
  padding-inline: var(--nav-side-padding);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: var(--logo-height-desktop);
  width: auto;
  max-width: 100%;
  -webkit-filter: none !important;
  filter: none !important;
  transform: translateZ(0);
  backface-visibility: hidden;
  image-rendering: auto;
  vertical-align: middle;
}

body.scrolled .site-header .brand-logo {
  height: var(--logo-height-sticky);
}

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

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-line {
  width: 28px;
  height: 2px;
  background: #0E1C34;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(14, 28, 52, 0.9);
  transition: color 0.25s ease;
}

.site-nav a:hover {
  color: #0E1C34;
}

.nav-cta {
  padding: 9px 14px;
  border: 1px solid rgba(14, 28, 52, 0.35);
  border-radius: 999px;
}

main {
  padding-top: 86px;
  padding-bottom: 40px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  padding: 42px 0 44px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 8% 14%, rgba(241, 216, 178, 0.3), transparent 45%),
    radial-gradient(110% 100% at 82% 18%, rgba(14, 28, 52, 0.28), transparent 48%),
    linear-gradient(122deg, #0E1C34 0%, #0E1C34 38%, #0E1C34 58%, #0E1C34 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(241, 216, 178, 0.22) 0,
      rgba(241, 216, 178, 0.22) 1px,
      rgba(14, 28, 52, 0) 1px,
      rgba(14, 28, 52, 0) 10px
    ),
    linear-gradient(180deg, rgba(14, 28, 52, 0.05), rgba(14, 28, 52, 0.16));
  opacity: 0.6;
  mix-blend-mode: screen;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 16% 16%, rgba(241, 216, 178, 0.16), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(14, 28, 52, 0.78), transparent 50%),
    linear-gradient(112deg, rgba(14, 28, 52, 0.78), rgba(14, 28, 52, 0.48));
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  display: grid;
  gap: 18px;
}

.hero-kicker {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(241, 216, 178, 0.3);
  color: #F1D8B2;
  background: rgba(255, 255, 255, 0.04);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #F1D8B2;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(2.4rem, 6.3vw, 5rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.04em;
  max-width: 10.5ch;
}

.hero-intro {
  margin: 0;
  color: rgba(241, 216, 178, 0.9);
  max-width: 54ch;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-cta {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 16px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: #F1D8B2;
  border-color: #F1D8B2;
  color: #0E1C34;
  box-shadow: 0 8px 28px rgba(241, 216, 178, 0.22);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #F1D8B2;
  border-color: rgba(241, 216, 178, 0.45);
}

.hero-highlights {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-highlights article {
  padding: 12px 10px;
  border-radius: 12px;
  border: 1px solid rgba(241, 216, 178, 0.16);
  background: rgba(255, 255, 255, 0.03);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F1D8B2;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  will-change: transform;
}

.hero-highlights article:hover {
  transform: translateY(-3px);
  border-color: rgba(241, 216, 178, 0.38);
  background: rgba(255, 255, 255, 0.07);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #0E1C34;
  border: 1px solid #F1D8B2;
  background: #F1D8B2;
}

.section {
  padding: 52px 0;
}

.stats {
  background: #0E1C34;
  padding: 34px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stats-grid article {
  background: rgba(14, 28, 52, 0.1);
  border: 1px solid rgba(14, 28, 52, 0.2);
  border-radius: 14px;
  padding: 18px;
}

.stats-grid h3 {
  color: #F1D8B2;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.stats-grid p {
  color: #F1D8B2;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.62;
}

#services {
  background: #F1D8B2;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  color: #0E1C34;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.015em;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  max-width: 23ch;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  border: 1px solid #F1D8B2;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(14, 28, 52, 0.04);
  padding: 18px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #F1D8B2;
  box-shadow: 0 18px 38px rgba(14, 28, 52, 0.1);
}

.clickable-card {
  cursor: pointer;
}

.clickable-card:focus-visible {
  outline: 2px solid #F1D8B2;
  outline-offset: 2px;
}

.service-card h3 {
  color: #0E1C34;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.38;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.service-card p {
  color: #0E1C34;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.91rem;
  line-height: 1.64;
  margin-bottom: 14px;
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0E1C34;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.service-more::after {
  content: "→";
  transform: translateX(0);
  transition: transform 0.22s ease;
}

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

#expertise {
  background: #ffffff;
}

.expertise-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.expertise-copy h2,
.contact-copy h2 {
  color: #0E1C34;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.02em;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  margin-bottom: 12px;
}

.expertise-copy p,
.contact-copy p {
  color: #0E1C34;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.96rem;
  line-height: 1.72;
}

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

.expertise-list div {
  border: 1px solid #F1D8B2;
  border-radius: 12px;
  background: #F1D8B2;
  padding: 14px;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.expertise-list div:hover {
  transform: translateY(-2px);
  border-color: #F1D8B2;
}

.expertise-list h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #0E1C34;
  font-size: 1rem;
  margin-bottom: 8px;
}

.expertise-list p {
  color: #0E1C34;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.64;
}

#process {
  background:
    radial-gradient(circle at 12% 16%, rgba(14, 28, 52, 0.15), transparent 30%),
    #0E1C34;
}

#process .eyebrow {
  color: #F1D8B2;
  border-color: rgba(241, 216, 178, 0.25);
  background: rgba(255, 255, 255, 0.03);
}

#process .section-head h2 {
  color: #F1D8B2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step {
  border: 1px solid rgba(14, 28, 52, 0.22);
  background: rgba(14, 28, 52, 0.06);
  border-radius: 14px;
  padding: 16px;
  transition: transform 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 28, 52, 0.45);
}

.step::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(14, 28, 52, 0), rgba(241, 216, 178, 0.8), rgba(14, 28, 52, 0));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.step:hover::after {
  opacity: 1;
}

.step span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #F1D8B2;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #F1D8B2;
  font-size: 1rem;
  margin-bottom: 8px;
}

.step p {
  color: #F1D8B2;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
}

#contact {
  background:
    linear-gradient(160deg, rgba(14, 28, 52, 0.98), rgba(14, 28, 52, 0.98)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 36px
    );
}

#contact .eyebrow {
  color: #F1D8B2;
  border-color: rgba(241, 216, 178, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

#contact .contact-copy h2 {
  color: #F1D8B2;
}

#contact .contact-copy p,
#contact .contact-copy li {
  color: #F1D8B2;
}

.contact-copy ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.contact-copy li {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-form {
  border: 1px solid rgba(14, 28, 52, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  backdrop-filter: blur(4px);
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #F1D8B2;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid rgba(14, 28, 52, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: #F1D8B2;
  font: 500 0.92rem "Helvetica Neue", Helvetica, Arial, sans-serif;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.contact-form select option {
  color: #0E1C34;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #F1D8B2;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #F1D8B2;
  box-shadow: 0 0 0 3px rgba(241, 216, 178, 0.2);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.form-note {
  min-height: 1.2em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.74rem;
  color: #F1D8B2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer {
  border-top: 1px solid rgba(14, 28, 52, 0.12);
  background: #F1D8B2;
  margin-top: 0;
}

.footer-wrap {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
}

.footer-logo {
  height: clamp(34px, 2.2vw, 38px);
  width: auto;
}

.footer-wrap p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0E1C34;
  text-align: center;
}

.fade-in {
  animation: fadeInUp 0.9s ease both;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.reveal {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(7px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform, filter;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.practice-main {
  padding-top: 86px;
  padding-bottom: 40px;
}

.practice-main .hero {
  min-height: 54vh;
}

.international-main .hero {
  background-size: cover;
  background-repeat: no-repeat;
}

.hero.intl-foreign-entry-hero {
  background-image:
    linear-gradient(90deg, rgba(14, 28, 52, 0.82), rgba(14, 28, 52, 0.5) 48%, rgba(14, 28, 52, 0.18)),
    url("assets/images/sections/onehorizon-legal-reception.png");
  background-position: center;
}

.hero.intl-overseas-operations-hero {
  background-image:
    linear-gradient(90deg, rgba(14, 28, 52, 0.82), rgba(14, 28, 52, 0.5) 48%, rgba(14, 28, 52, 0.18)),
    url("assets/images/cities/dubai-skyline-ocean.png");
  background-position: center;
}

.hero.intl-nri-private-hero {
  background-image:
    linear-gradient(90deg, rgba(14, 28, 52, 0.82), rgba(14, 28, 52, 0.48) 48%, rgba(14, 28, 52, 0.12)),
    url("assets/images/sections/oceanfront-glass-residence.png");
  background-position: center;
}

.hero.intl-startups-founders-hero {
  background-image:
    linear-gradient(90deg, rgba(14, 28, 52, 0.82), rgba(14, 28, 52, 0.5) 48%, rgba(14, 28, 52, 0.18)),
    url("assets/images/sections/curved-staircase-courtyard.png");
  background-position: center;
}

.hero.intl-law-firms-hero {
  background-image:
    linear-gradient(90deg, rgba(14, 28, 52, 0.82), rgba(14, 28, 52, 0.5) 48%, rgba(14, 28, 52, 0.18)),
    url("assets/images/cities/london-skyline-river.png");
  background-position: center;
}

.hero.intl-investors-hero {
  background-image:
    linear-gradient(90deg, rgba(14, 28, 52, 0.82), rgba(14, 28, 52, 0.5) 48%, rgba(14, 28, 52, 0.18)),
    url("assets/images/cities/miami-skyline-ocean.png");
  background-position: center;
}

.jurisdiction-main .jurisdiction-hero {
  min-height: 520px;
  background:
    radial-gradient(circle at 82% 28%, rgba(241, 216, 178, 0.2), transparent 28%),
    linear-gradient(135deg, #0E1C34 0%, #0E1C34 58%, #0E1C34 100%);
}

.jurisdiction-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.42fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.jurisdiction-main .hero-inner {
  max-width: 720px;
}

.jurisdiction-main .hero h1 {
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  max-width: 10ch;
  margin-bottom: 20px;
}

.jurisdiction-main .hero-intro {
  max-width: 48ch;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.86);
}

.jurisdiction-visual {
  justify-self: end;
  width: clamp(170px, 20vw, 280px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 216, 178, 0.32);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(241, 216, 178, 0.13), transparent 62%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.018), 0 32px 90px rgba(14, 28, 52, 0.18);
}

.jurisdiction-visual span {
  color: #F1D8B2;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: 0.08em;
}

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

.jurisdiction-detail .practice-detail-card p {
  color: #0E1C34;
  line-height: 1.72;
  margin: 0;
}

.practice-detail {
  background: #F1D8B2;
}

.practice-detail-wrap {
  display: grid;
  gap: 20px;
}

.practice-detail .lead {
  color: #0E1C34;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  max-width: 84ch;
}

.practice-detail-card {
  border: 1px solid #F1D8B2;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(14, 28, 52, 0.04);
  padding: 18px;
}

.practice-detail-card h3 {
  color: #0E1C34;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.38;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.practice-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.practice-list li {
  color: #0E1C34;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.6;
}

.international-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.international-page-cta {
  margin-top: 34px;
  padding: 38px 40px;
  background: var(--theme-navy-deep, #0E1C34);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.international-page-cta h3 {
  max-width: 720px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.18;
  font-weight: 500;
  margin: 0;
}

.practice-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0E1C34;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.practice-back::before {
  content: "←";
}

@media (max-width: 1180px) {
  .brand-logo {
    height: clamp(31px, 3.1vw, 34px);
  }

  body.scrolled .site-header .brand-logo {
    height: 30px;
  }

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

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

  .stats-grid,
  .process-grid,
  .expertise-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .reveal {
    transform: translateY(10px);
    filter: blur(4px);
    transition-duration: 0.7s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .menu-btn {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(280px, 92vw);
    padding: 14px;
    border-radius: 12px;
    background: rgba(241, 216, 178, 0.98);
    border: 1px solid rgba(14, 28, 52, 0.15);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .site-nav a {
    color: rgba(14, 28, 52, 0.9);
  }

  .site-nav a:hover {
    color: #0E1C34;
  }

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

  .nav-cta {
    text-align: center;
  }
}

@media (max-width: 860px) {
  .disclaimer-gate {
    padding: 14px;
    align-items: center;
  }

  .disclaimer-card {
    max-height: calc(100vh - 28px);
    overflow: auto;
    border-radius: 20px;
    padding: 22px;
  }

  .disclaimer-card h2 {
    font-size: 1.45rem;
  }

  .disclaimer-card p {
    font-size: 0.9rem;
    line-height: 1.66;
  }

  .disclaimer-actions {
    justify-content: stretch;
  }

  .btn-disclaimer {
    width: 100%;
    min-width: 0;
  }

  .brand-logo {
    height: clamp(26px, 7.6vw, 30px);
  }

  body.scrolled .site-header .brand-logo {
    height: clamp(26px, 7.2vw, 28px);
  }

  main {
    padding-top: 80px;
  }

  .hero {
    min-height: 82vh;
    padding: 34px 0 36px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .hero-intro {
    font-size: 0.95rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 42px 0;
  }

  .footer-logo {
    height: 30px;
  }
}

/* Reference-theme visual refresh. Keeps existing structure and behavior intact. */
:root {
  --nav-height-desktop: 90px;
  --logo-height-desktop: 64px;
  --logo-height-sticky: 58px;
  --logo-height-mobile: 46px;
  --nav-side-padding: clamp(28px, 6vw, 88px);
  --theme-navy: #0E1C34;
  --theme-navy-deep: #0E1C34;
  --theme-ink: #0E1C34;
  --theme-muted: #0E1C34;
  --theme-line: #F1D8B2;
  --theme-warm: #F1D8B2;
  --theme-paper: #F1D8B2;
}

body {
  background: var(--theme-paper);
  color: var(--theme-ink);
}

p {
  color: var(--theme-muted);
  font-size: 1rem;
  line-height: 1.7;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.container {
  width: min(1180px, calc(100% - 48px));
}

.site-header::before {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(14, 28, 52, 0.08);
  backdrop-filter: none;
  box-shadow: 0 10px 32px rgba(14, 28, 52, 0.05);
}

body.scrolled .site-header::before {
  backdrop-filter: none;
}

.nav-wrap {
  min-height: var(--nav-height-desktop);
}

.brand-logo {
  height: var(--logo-height-desktop);
  filter: none !important;
}

body.scrolled .site-header .brand-logo {
  height: var(--logo-height-sticky);
}

.site-nav {
  gap: clamp(20px, 3vw, 48px);
}

.site-nav a {
  color: var(--theme-ink);
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}

.nav-cta {
  border-radius: 0;
  padding: 16px 24px;
  background: var(--theme-navy);
  border-color: var(--theme-navy);
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(14, 28, 52, 0.12);
}

main {
  padding-top: var(--nav-height-desktop);
  padding-bottom: 0;
}

.hero {
  min-height: calc(100vh - var(--nav-height-desktop));
  align-items: center;
  justify-content: center;
  padding: clamp(72px, 10vh, 110px) 0 42px;
  background-image: var(--hero-background-image);
  background-size: cover;
  background-position: center center;
  border-bottom: 42px solid #ffffff;
}

.hero::before {
  display: none;
}

.hero-overlay {
  display: none;
}

main:not(.practice-main) .hero::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 46%, rgba(14, 28, 52, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(14, 28, 52, 0.1) 0%, rgba(14, 28, 52, 0.18) 100%);
}

.hero-inner {
  max-width: min(760px, calc(100% - 40px));
  gap: 0;
  text-align: center;
  top: -7vh;
  transform: none;
}

main:not(.practice-main) .hero-inner {
  margin-left: auto;
  margin-right: auto;
}

.hero-kicker {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.hero h1 {
  color: #ffffff;
  font-family: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  font-size: clamp(38px, 4.25vw, 58px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.006em;
  max-width: 760px;
  margin-bottom: 0;
  text-shadow: 0 3px 24px rgba(14, 28, 52, 0.46);
}

.hero h1 span {
  color: #F1D8B2;
}

.hero-divider {
  display: none;
}

.hero-intro {
  display: block;
  max-width: 660px;
  margin: 82px auto 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.45;
  text-shadow: 0 2px 20px rgba(14, 28, 52, 0.48);
}

.hero-proof {
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(14, 28, 52, 0.46);
}

.hero-discover {
  position: absolute;
  left: 50%;
  bottom: 132px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  margin-top: 0;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  color: #ffffff;
  background: transparent;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: none;
  text-shadow: none;
  transform: translateX(-50%);
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.hero-discover:hover {
  color: var(--theme-navy);
  background: #ffffff;
  border-color: #ffffff;
  transform: translate(-50%, -2px);
}

.hero-discover span {
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.75rem;
  line-height: 1;
  text-decoration: none;
  transform: translateX(-50%);
  animation: heroChevronBounce 1.9s ease-in-out infinite;
}

@keyframes heroChevronBounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

.btn {
  border-radius: 0;
  padding: 16px 24px;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.92rem;
}

.btn-primary {
  background: var(--theme-navy);
  border-color: var(--theme-navy);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(14, 28, 52, 0.16);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.76);
  color: var(--theme-navy);
  border-color: rgba(14, 28, 52, 0.2);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 32px;
}

.hero-highlights article {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  padding: 0 16px;
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
  position: relative;
}

.hero-highlights article:first-child {
  padding-left: 0;
}

.hero-highlights article + article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.35em;
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.eyebrow {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--theme-warm);
  letter-spacing: 0.08em;
  position: relative;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--theme-warm);
}

.section {
  padding: 76px 0;
}

.section-head {
  margin-bottom: 32px;
}

.section-head h2,
.expertise-copy h2,
.contact-copy h2 {
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--theme-ink);
  font-size: 2.5rem;
  line-height: 1.14;
  font-weight: 500;
  letter-spacing: 0;
}

.stats {
  background: #ffffff;
  padding: 14px 0 52px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--theme-line);
  border-bottom: 1px solid var(--theme-line);
  gap: 0;
  align-items: stretch;
}

.stats-grid article {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 28px 28px 28px 0;
}

.stats-grid article + article {
  border-left: 1px solid var(--theme-line);
  padding-left: 28px;
}

.stats-grid h3 {
  color: var(--theme-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 500;
  font-size: 1.28rem;
}

.stats-grid p {
  color: var(--theme-muted);
}

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

  .stats-grid article {
    padding: 24px 24px 24px 0;
  }

  .stats-grid article:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .stats-grid article:nth-child(even) {
    border-left: 1px solid var(--theme-line);
    padding-left: 24px;
  }

  .stats-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--theme-line);
  }
}

#services {
  background: #F1D8B2;
  padding-top: 46px;
}

.core-expertise {
  margin-bottom: 42px;
}

.core-expertise-copy {
  max-width: 860px;
  margin-bottom: 30px;
}

.core-expertise-copy h2 {
  color: var(--theme-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.core-expertise-copy > p:last-child {
  max-width: 780px;
  color: var(--theme-muted);
  font-size: 1rem;
  line-height: 1.76;
  margin: 0;
}

.core-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.core-card {
  min-height: 330px;
  background: #ffffff;
  border: 1px solid rgba(14, 28, 52, 0.08);
  box-shadow: 0 28px 58px rgba(14, 28, 52, 0.055);
  padding: 34px 30px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.core-card:hover {
  transform: translateY(-5px);
  border-color: rgba(241, 216, 178, 0.36);
  box-shadow: 0 34px 70px rgba(14, 28, 52, 0.085);
}

.core-card h3 {
  color: var(--theme-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.18;
  font-weight: 500;
  margin: 0 0 24px;
}

.core-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.core-card li {
  position: relative;
  color: var(--theme-muted);
  font-size: 0.94rem;
  line-height: 1.52;
  padding-left: 18px;
}

.core-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 1px;
  background: var(--theme-warm);
}

.representative-experience {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 42px;
  align-items: start;
  margin: 0 0 58px;
  padding: 44px 46px;
  background:
    linear-gradient(135deg, rgba(241, 216, 178, 0.98), rgba(241, 216, 178, 0.78)),
    #F1D8B2;
  border: 1px solid rgba(241, 216, 178, 0.16);
  box-shadow: 0 30px 70px rgba(14, 28, 52, 0.045);
}

.representative-experience h2 {
  max-width: 12ch;
  color: var(--theme-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.9rem, 2.7vw, 2.75rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}

.experience-points {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(241, 216, 178, 0.2);
  border-bottom: 1px solid rgba(241, 216, 178, 0.2);
}

.experience-points article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 20px 0;
}

.experience-points article + article {
  border-top: 1px solid rgba(241, 216, 178, 0.16);
}

.experience-points span {
  color: var(--theme-warm);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.experience-points p {
  color: var(--theme-muted);
  font-size: 0.98rem;
  line-height: 1.68;
  margin: 0;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(241, 216, 178, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(241, 216, 178, 0.96)),
    #F1D8B2;
  border-radius: 0;
  box-shadow: 0 24px 52px rgba(14, 28, 52, 0.045);
  padding: 34px 32px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(241, 216, 178, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(241, 216, 178, 0.48);
  box-shadow: 0 36px 78px rgba(14, 28, 52, 0.095);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--theme-warm);
}

.service-icon svg {
  width: 52px;
  height: 52px;
  display: block;
}

.service-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  color: var(--theme-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.48rem;
  line-height: 1.18;
  font-weight: 500;
  margin: 0;
}

.service-card p {
  display: block;
  color: var(--theme-muted);
  font-size: 0.94rem;
  line-height: 1.64;
  margin: 16px 0 24px;
}

.service-more {
  margin-top: auto;
  color: var(--theme-warm);
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 600;
  gap: 12px;
}

.service-more::after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.24s ease;
}

.service-card:hover .service-more::after {
  transform: translateX(8px);
}

#expertise {
  background: #ffffff;
  color: var(--theme-ink);
}

.expertise-grid {
  min-height: 520px;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(42px, 6vw, 86px);
}

#expertise .eyebrow {
  color: var(--theme-warm);
}

.expertise-copy h2 {
  max-width: none;
  color: var(--theme-ink);
  white-space: nowrap;
  margin-bottom: 24px;
}

.expertise-copy p {
  max-width: 60ch;
  color: var(--theme-muted);
  text-align: left;
  line-height: 1.82;
  margin-bottom: 18px;
}

.expertise-copy p:last-child {
  margin-bottom: 0;
}

.expertise-image-frame {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(241, 216, 178, 0.18);
  background: #F1D8B2;
  box-shadow: 0 32px 76px rgba(14, 28, 52, 0.08);
}

.expertise-image-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  z-index: 1;
  pointer-events: none;
}

.expertise-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  display: block;
  object-fit: cover;
  object-position: center;
}

#process {
  background: #ffffff;
}

#process .eyebrow,
#process .section-head h2 {
  color: var(--theme-ink);
}

#process .section-head p {
  color: var(--theme-muted);
}

.process-grid,
.international-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.international-grid {
  display: grid;
}

.international-card {
  min-height: 330px;
  justify-content: flex-start;
  padding: 34px 32px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(241, 216, 178, 0.96)),
    #F1D8B2;
  border-color: rgba(241, 216, 178, 0.14);
  box-shadow: 0 24px 52px rgba(14, 28, 52, 0.045);
  color: var(--theme-ink);
}

.international-card::before {
  z-index: 0;
  background: linear-gradient(135deg, rgba(241, 216, 178, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.international-card:hover {
  border-color: rgba(241, 216, 178, 0.48);
  box-shadow: 0 36px 78px rgba(14, 28, 52, 0.095);
}

.international-card:hover::before {
  opacity: 1;
}

.international-card .international-icon,
.international-card h3,
.international-card p,
.international-card .service-more {
  position: relative;
  z-index: 1;
}

.international-card .international-icon {
  transform: translateY(0) scale(1);
  transition: transform 0.28s ease, color 0.28s ease;
}

.international-card:hover .international-icon {
  color: #F1D8B2;
  transform: translateY(-3px) scale(1.04);
}

.international-card h3 {
  color: var(--theme-ink);
  text-shadow: none;
}

.international-card p {
  color: var(--theme-muted);
  max-width: 34ch;
}

.international-card .service-more {
  color: var(--theme-warm);
}

.jurisdictions-block {
  position: relative;
  overflow: hidden;
  margin-top: 62px;
  padding: clamp(36px, 5vw, 54px);
  background:
    radial-gradient(circle at 12% 18%, rgba(241, 216, 178, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(241, 216, 178, 0.98), rgba(241, 216, 178, 0.82)),
    #F1D8B2;
  border: 1px solid rgba(241, 216, 178, 0.16);
  box-shadow: 0 32px 76px rgba(14, 28, 52, 0.055);
}

.jurisdictions-block::after {
  content: "";
  position: absolute;
  right: clamp(24px, 5vw, 58px);
  top: 36px;
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 216, 178, 0.6));
}

.compact-head {
  max-width: 790px;
  margin-bottom: 34px;
}

.jurisdiction-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.jurisdiction-grid a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--theme-ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(241, 216, 178, 0.18);
  box-shadow: 0 14px 30px rgba(14, 28, 52, 0.035);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  padding: 14px 20px;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease, background 0.26s ease, color 0.26s ease;
}

.jurisdiction-grid a:hover {
  color: var(--theme-navy);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(241, 216, 178, 0.5);
  box-shadow: 0 22px 42px rgba(14, 28, 52, 0.075);
  transform: translateY(-3px);
}

.jurisdiction-mark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 216, 178, 0.38);
  border-radius: 999px;
  color: var(--theme-warm);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: border-color 0.26s ease, color 0.26s ease, transform 0.26s ease;
}

.jurisdiction-grid a:hover .jurisdiction-mark {
  border-color: rgba(241, 216, 178, 0.72);
  color: #F1D8B2;
  transform: scale(1.06);
}

.international-cta {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: clamp(32px, 4vw, 46px);
  background:
    radial-gradient(circle at 86% 16%, rgba(241, 216, 178, 0.18), transparent 30%),
    linear-gradient(135deg, #0E1C34, #0E1C34 62%, #0E1C34);
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  border: 1px solid rgba(241, 216, 178, 0.2);
  box-shadow: 0 34px 84px rgba(14, 28, 52, 0.16);
}

.international-cta h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  line-height: 1.12;
  font-weight: 500;
  max-width: 13ch;
  margin: 0;
}

.international-cta-action {
  display: grid;
  justify-items: start;
  gap: 20px;
}

.international-cta p {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin: 0;
}

.international-cta .btn {
  white-space: nowrap;
  padding: 14px 22px;
  min-width: auto;
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.international-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(14, 28, 52, 0.2);
}

.step {
  min-height: 280px;
  border: 0;
  border-radius: 0;
  padding: 26px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 28, 52, 0.04), rgba(14, 28, 52, 0.82));
}

.step:nth-child(1) {
  background-image: url("assets/images/cities/dubai-skyline-ocean.png");
}

.step:nth-child(2) {
  background-image: url("assets/images/cities/london-skyline-river.png");
}

.step:nth-child(3) {
  background-image: url("assets/images/cities/miami-skyline-ocean.png");
}

.step span {
  display: none;
}

.step h3,
.step p {
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.45rem;
}

.step p {
  color: rgba(255, 255, 255, 0.82);
}

#contact {
  background: #F1D8B2;
}

#contact .eyebrow,
#contact .contact-copy h2 {
  color: var(--theme-ink);
}

#contact .contact-copy p,
#contact .contact-copy li {
  color: var(--theme-muted);
}

.contact-form {
  border-radius: 0;
  border: 1px solid var(--theme-line);
  background: #ffffff;
  backdrop-filter: none;
  padding: 28px;
}

.contact-form label {
  color: var(--theme-ink);
  letter-spacing: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 0;
  background: #ffffff;
  border-color: var(--theme-line);
  color: var(--theme-ink);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #F1D8B2;
}

.site-footer {
  background: var(--theme-navy-deep);
  border-top: 0;
  margin-top: 0;
}

.footer-wrap {
  min-height: 260px;
  padding: 62px 0;
  align-items: flex-start;
  gap: 24px;
}

.footer-logo {
  height: 66px;
}

.footer-wrap p {
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
  max-width: 720px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.8;
}

.practice-main .hero {
  min-height: 430px;
}

@media (max-width: 1180px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-logo {
    height: 56px;
  }
}

@media (max-width: 980px) {
  .site-nav {
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 22px 42px rgba(14, 28, 52, 0.1);
  }

  .cards-grid,
  .core-cards,
  .international-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .international-detail-grid {
    grid-template-columns: 1fr;
  }

  .jurisdiction-hero-grid,
  .jurisdiction-detail-grid {
    grid-template-columns: 1fr;
  }

  .jurisdiction-visual {
    justify-self: start;
    width: 180px;
  }

  .international-cta {
    grid-template-columns: 1fr;
  }

  .international-page-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .representative-experience {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .core-card {
    min-height: auto;
  }

  .service-card {
    min-height: 300px;
  }

  .hero-inner {
    max-width: min(680px, calc(100% - 48px));
  }

  .hero h1 {
    font-size: clamp(2.5rem, 6.2vw, 3.7rem);
  }

  .hero-intro {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .nav-wrap {
    min-height: 78px;
    padding-inline: 0;
  }

  .brand-logo,
  body.scrolled .site-header .brand-logo {
    height: var(--logo-height-mobile);
  }

  main {
    padding-top: 78px;
  }

  .hero {
    min-height: 78vh;
    padding: 78px 0 58px;
    align-items: center;
    justify-content: center;
    background-image: var(--hero-background-image);
    background-position: center center;
    border-bottom-width: 30px;
  }

  main:not(.practice-main) .hero-inner {
    max-width: min(420px, calc(100vw - 48px));
    margin-left: auto;
    margin-right: auto;
    top: -3vh;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9.8vw, 3.05rem);
    max-width: 11ch;
    margin-inline: auto;
  }

  .hero-intro {
    margin-top: 58px;
    font-size: 1.1rem;
    line-height: 1.42;
  }

  .hero-proof {
    margin-top: 28px;
    font-size: 0.72rem;
  }

  .hero-discover {
    bottom: 82px;
    margin-top: 0;
    gap: 10px;
    min-height: 46px;
    padding: 0 20px;
    font-size: 0.78rem;
  }

  .hero-scroll-indicator {
    bottom: 14px;
  }

  .hero-highlights {
    row-gap: 10px;
  }

  .hero-highlights article {
    padding: 0 12px;
  }

  .cards-grid,
  .core-cards,
  .international-grid,
  .process-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .jurisdictions-block,
  .international-cta,
  .international-page-cta {
    padding: 32px 24px;
  }

  .jurisdiction-grid {
    gap: 10px;
  }

  .jurisdiction-grid a {
    width: 100%;
    justify-content: flex-start;
  }

  .jurisdiction-main .hero h1 {
    font-size: 3.2rem;
  }

  .jurisdiction-main .hero-intro {
    font-size: 1.14rem;
  }

  .core-expertise {
    margin-bottom: 42px;
  }

  .representative-experience {
    margin-bottom: 46px;
    padding: 34px 26px;
  }

  .experience-points article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .core-card {
    padding: 28px 24px;
  }

  .service-card {
    min-height: auto;
    padding: 30px 24px 28px;
  }

  .international-card {
    min-height: 340px;
  }

  .stats-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--theme-line);
    padding-left: 0;
  }

  .stats-grid article:nth-child(even),
  .stats-grid article:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .stats-grid article:nth-child(n + 2) {
    border-top: 1px solid var(--theme-line);
  }

  .section {
    padding: 56px 0;
  }

  .contact-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    gap: 34px;
  }

  .expertise-copy h2 {
    white-space: normal;
  }

  .expertise-image-frame,
  .expertise-image-frame img {
    min-height: 360px;
  }

  .footer-logo {
    height: 52px;
  }
}

/* Contact and footer polish: premium consultation panel with restrained footer branding. */
#contact {
  scroll-margin-top: calc(var(--nav-height-desktop) + 22px);
  background:
    radial-gradient(circle at 18% 18%, rgba(241, 216, 178, 0.08), transparent 28%),
    linear-gradient(180deg, #F1D8B2 0%, #F1D8B2 100%);
  border-top: 1px solid rgba(241, 216, 178, 0.12);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: start;
}

.contact-copy {
  max-width: 580px;
  padding-top: 18px;
}

#contact .eyebrow {
  color: var(--theme-warm);
}

#contact .contact-copy h2 {
  max-width: 12ch;
  color: var(--theme-ink);
  font-size: clamp(2.55rem, 4vw, 4.05rem);
  line-height: 1.04;
  margin-bottom: 24px;
}

#contact .contact-copy p {
  max-width: 48ch;
  color: var(--theme-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.contact-copy ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  position: relative;
  margin: 0;
  padding: 16px 18px 16px 44px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(241, 216, 178, 0.14);
  box-shadow: 0 16px 36px rgba(14, 28, 52, 0.035);
  color: var(--theme-ink);
  font-size: 0.94rem;
  line-height: 1.55;
}

.contact-copy li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid var(--theme-warm);
  border-radius: 999px;
  transform: translateY(-50%);
}

.contact-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(241, 216, 178, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 216, 178, 0.98)),
    #ffffff;
  box-shadow: 0 34px 84px rgba(14, 28, 52, 0.08);
  padding: clamp(28px, 4vw, 42px);
  gap: 16px;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(241, 216, 178, 0), rgba(241, 216, 178, 0.72), rgba(241, 216, 178, 0));
}

.contact-form label {
  gap: 8px;
  color: var(--theme-ink);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 54px;
  border: 1px solid rgba(14, 28, 52, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--theme-ink);
  padding: 14px 16px;
  font-size: 0.94rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-form textarea {
  min-height: 132px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(241, 216, 178, 0.58);
  box-shadow: 0 0 0 4px rgba(241, 216, 178, 0.12);
  background: #ffffff;
  transform: none;
}

.contact-form .btn {
  margin-top: 6px;
  min-height: 58px;
  box-shadow: 0 24px 48px rgba(14, 28, 52, 0.14);
}

.contact-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px rgba(14, 28, 52, 0.18);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 18%, rgba(241, 216, 178, 0.12), transparent 24%),
    linear-gradient(135deg, #0E1C34 0%, #0E1C34 100%);
}

.footer-wrap {
  min-height: 260px;
  padding: 58px 0 42px;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}

.footer-brand-block {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.footer-logo {
  height: var(--logo-height-desktop);
  width: auto;
}

.footer-wrap .footer-tagline {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.75;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
}

.footer-wrap .footer-meta {
  width: 100%;
  max-width: none;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  line-height: 1.7;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  #contact .contact-copy h2 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  #contact {
    scroll-margin-top: 96px;
  }

  .contact-copy {
    padding-top: 0;
  }

  .contact-form {
    padding: 26px 22px;
  }

  .footer-logo {
    height: var(--logo-height-mobile);
  }

  .footer-wrap {
    min-height: 240px;
    padding: 46px 0 34px;
  }
}

/* Navbar-only refinement: compact, left-aligned branding with right-aligned navigation. */
:root {
  --nav-height-desktop: 80px;
  --logo-height-desktop: 40px;
  --logo-height-sticky: 38px;
  --logo-height-tablet: 36px;
  --logo-height-mobile: 31px;
}

.site-header::before {
  background: #ffffff;
  border-bottom: 1px solid #F1D8B2;
  box-shadow: none;
}

body.scrolled .site-header::before {
  background: #ffffff;
  border-bottom-color: #F1D8B2;
  box-shadow: 0 8px 24px rgba(14, 28, 52, 0.04);
}

.site-header .nav-wrap {
  width: 100%;
  min-height: var(--nav-height-desktop);
  margin: 0 auto;
  padding-inline: clamp(56px, 5vw, 96px);
  justify-content: space-between;
  gap: 36px;
}

.site-header .brand {
  flex: 0 0 auto;
  justify-content: flex-start;
}

.site-header .brand-logo,
body.scrolled .site-header .brand-logo {
  height: var(--logo-height-desktop);
  width: auto;
  max-width: 230px;
}

.site-header .site-nav {
  margin-left: auto;
  justify-content: flex-end;
  gap: 28px;
}

.site-header .site-nav a {
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #0E1C34;
  white-space: nowrap;
}

.site-header .nav-cta {
  padding: 14px 22px;
  border-radius: 3px;
  background: #0E1C34;
  border-color: #0E1C34;
  color: #ffffff !important;
  box-shadow: none;
}

main {
  padding-top: var(--nav-height-desktop);
}

@media (max-width: 1180px) {
  .site-header .nav-wrap {
    width: 100%;
    padding-inline: 32px;
    gap: 28px;
  }

  .site-header .brand-logo,
  body.scrolled .site-header .brand-logo {
    height: var(--logo-height-tablet);
    max-width: 210px;
  }

  .site-header .site-nav {
    gap: 20px;
  }
}

@media (max-width: 980px) {
  .site-header .nav-wrap {
    width: 100%;
    padding-inline: 32px;
  }

  .site-header .menu-btn {
    margin-left: auto;
  }

  .site-header .site-nav {
    gap: 0;
    justify-content: flex-start;
  }

  .site-header .site-nav a {
    font-size: 13px;
    line-height: 1.25;
  }

  .site-header .nav-cta {
    width: fit-content;
    padding: 13px 20px;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height-desktop: 76px;
  }

  .site-header .nav-wrap {
    width: 100%;
    min-height: var(--nav-height-desktop);
    padding-inline: 20px;
  }

  .site-header .brand-logo,
  body.scrolled .site-header .brand-logo {
    height: var(--logo-height-mobile);
    max-width: 180px;
  }

  main {
    padding-top: var(--nav-height-desktop);
  }
}

/* Final lower-homepage polish: jurisdiction cards, trust sections, insights, contact details, and footer columns. */

/* GIFT City practice detail page: light editorial treatment matching practice areas. */
.gift-practice-main {
  background: #F1D8B2;
}

.gift-practice-hero {
  background:
    radial-gradient(circle at 86% 14%, rgba(241, 216, 178, 0.12), transparent 28%),
    linear-gradient(180deg, #F1D8B2 0%, #F1D8B2 100%);
  border-bottom: 1px solid rgba(241, 216, 178, 0.12);
}

.gift-practice-hero-wrap {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.gift-practice-hero h1 {
  color: var(--theme-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
  max-width: 840px;
}

.gift-practice-hero .lead {
  max-width: 790px;
  color: var(--theme-muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.82;
}

.gift-practice-detail {
  background: #F1D8B2;
}

.gift-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gift-detail-card {
  position: relative;
  min-height: 285px;
  padding: 30px;
  border: 1px solid rgba(241, 216, 178, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(241, 216, 178, 0.96)),
    #F1D8B2;
  box-shadow: 0 24px 52px rgba(14, 28, 52, 0.045);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gift-detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(241, 216, 178, 0.48);
  box-shadow: 0 34px 70px rgba(14, 28, 52, 0.085);
}

.gift-detail-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border: 1px solid rgba(241, 216, 178, 0.38);
  color: var(--theme-warm);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.gift-detail-card h3 {
  color: var(--theme-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.38rem;
  line-height: 1.18;
  font-weight: 500;
  margin-bottom: 18px;
}

.gift-detail-card .practice-list {
  padding-left: 0;
  list-style: none;
}

.gift-detail-card .practice-list li {
  position: relative;
  padding-left: 18px;
  color: var(--theme-muted);
}

.gift-detail-card .practice-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--theme-warm);
}

.gift-detail-industries {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(241, 216, 178, 0.14);
  background: #F1D8B2;
}

.gift-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gift-detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(241, 216, 178, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--theme-ink);
  font-size: 0.82rem;
  line-height: 1.3;
}

.gift-detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(241, 216, 178, 0.16);
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(14, 28, 52, 0.055);
}

.gift-detail-cta h2 {
  color: var(--theme-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 12px;
}

.gift-detail-cta p {
  max-width: 680px;
  color: var(--theme-muted);
  line-height: 1.72;
}

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

@media (max-width: 900px) {
  .gift-detail-cta {
    grid-template-columns: 1fr;
  }

  .gift-detail-cta .btn {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .gift-detail-grid {
    grid-template-columns: 1fr;
  }

  .gift-detail-card {
    min-height: auto;
    padding: 24px;
  }
}

.jurisdictions-block {
  margin-top: clamp(52px, 7vw, 86px);
  padding: clamp(34px, 5vw, 56px);
  background:
    radial-gradient(circle at 8% 0%, rgba(241, 216, 178, 0.08), transparent 30%),
    linear-gradient(180deg, #F1D8B2 0%, #F1D8B2 100%);
  border: 1px solid rgba(241, 216, 178, 0.16);
  box-shadow: 0 28px 70px rgba(14, 28, 52, 0.055);
}

.jurisdictions-block::after {
  display: none;
}

.jurisdictions-block .compact-head {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin: 0 0 28px;
  text-align: left;
}

.jurisdictions-block .compact-head .eyebrow {
  color: var(--theme-warm);
}

.jurisdictions-block .compact-head h2 {
  color: var(--theme-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.jurisdictions-block .compact-head p {
  max-width: 62ch;
  color: var(--theme-muted);
}

.jurisdiction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.jurisdiction-grid .jurisdiction-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 16px;
  width: auto;
  min-height: 168px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(14, 28, 52, 0.09);
  color: var(--theme-ink);
  box-shadow: 0 16px 38px rgba(14, 28, 52, 0.035);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.jurisdiction-grid .jurisdiction-card:hover {
  transform: translateY(-5px);
  border-color: rgba(241, 216, 178, 0.58);
  background: #ffffff;
  box-shadow: 0 26px 62px rgba(14, 28, 52, 0.08);
}

.jurisdiction-grid .jurisdiction-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 50px;
  height: 58px;
  border-radius: 3px;
  border: 1px solid rgba(241, 216, 178, 0.58);
  background: rgba(241, 216, 178, 0.08);
  color: var(--theme-warm);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.jurisdiction-flag {
  display: block;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0;
  filter: saturate(0.92);
}

.jurisdiction-content {
  display: grid;
  gap: 9px;
}

.jurisdiction-content strong {
  color: var(--theme-ink);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.25;
}

.jurisdiction-content em {
  color: var(--theme-muted);
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.58;
}

.jurisdiction-arrow {
  color: var(--theme-warm);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.28s ease;
}

.jurisdiction-card:hover .jurisdiction-arrow {
  transform: translateX(5px);
}

.international-cta {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  background:
    radial-gradient(circle at 86% 0%, rgba(241, 216, 178, 0.14), transparent 28%),
    linear-gradient(135deg, #0E1C34 0%, #0E1C34 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 72px rgba(14, 28, 52, 0.16);
}

.international-cta-copy {
  display: grid;
  gap: 18px;
}

.cta-rule {
  display: block;
  width: 58px;
  height: 1px;
  background: var(--theme-warm);
}

.international-cta h3 {
  max-width: 680px;
  color: #F1D8B2;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 500;
  line-height: 1.04;
}

.international-cta p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.78;
}

.international-cta-action {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.cta-checklist {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cta-checklist li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.4;
}

.cta-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--theme-warm);
  border-radius: 999px;
}

.international-cta .btn {
  width: auto;
  min-width: 0;
  padding: 15px 26px;
  background: #F1D8B2;
  border-color: #F1D8B2;
  color: var(--theme-navy) !important;
  box-shadow: none;
}

.international-cta .btn:hover {
  transform: translateY(-3px);
  background: var(--theme-warm);
  border-color: var(--theme-warm);
  color: #ffffff !important;
}

.why-section,
.industries-section {
  background: #F1D8B2;
}

.support-section,
.insights-section {
  background: linear-gradient(180deg, #F1D8B2 0%, #F1D8B2 100%);
  border-top: 1px solid rgba(241, 216, 178, 0.1);
  border-bottom: 1px solid rgba(241, 216, 178, 0.08);
}

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

.trust-card,
.support-card,
.insight-card {
  position: relative;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(14, 28, 52, 0.09);
  padding: 28px;
  box-shadow: 0 18px 42px rgba(14, 28, 52, 0.035);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.trust-card:hover,
.support-card:hover,
.insight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(241, 216, 178, 0.54);
  background: #ffffff;
  box-shadow: 0 28px 64px rgba(14, 28, 52, 0.075);
}

.trust-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--theme-warm);
}

.trust-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card h3,
.support-card h3,
.insight-card h3 {
  color: var(--theme-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 12px;
}

.trust-card p,
.support-card p,
.insight-card p {
  color: var(--theme-muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.support-card {
  min-height: 160px;
}

.support-card::before,
.insight-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 42px;
  height: 2px;
  background: var(--theme-warm);
}

.insight-card--featured::before {
  inset: var(--insight-image-height) auto auto 28px;
  z-index: 2;
}

.industries-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(32px, 5vw, 52px);
  border: 1px solid rgba(241, 216, 178, 0.14);
  background: #F1D8B2;
}

.industries-copy h2 {
  color: var(--theme-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.8rem, 2.7vw, 2.7rem);
  font-weight: 500;
  line-height: 1.12;
}

.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(241, 216, 178, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--theme-ink);
  font-size: 0.84rem;
  line-height: 1.3;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.industry-pills span:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 216, 178, 0.58);
  background: #ffffff;
}

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

.insight-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.insight-card--featured {
  --insight-image-height: clamp(220px, 17vw, 260px);
  min-height: 470px;
  overflow: hidden;
  padding: 0;
}

.insight-card-media {
  width: 100%;
  height: var(--insight-image-height);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0E1C34;
}

.insight-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.36s ease;
}

.insight-card--featured:hover .insight-card-media img {
  transform: scale(1.045);
}

.insight-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 28px;
}

.insight-meta {
  margin: 0 0 18px;
  color: var(--theme-warm) !important;
  font-size: 0.72rem !important;
  line-height: 1.2 !important;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
}

.insight-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--theme-ink);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.insight-card a span {
  color: var(--theme-warm);
  transition: transform 0.24s ease;
}

.insight-card:hover a span {
  transform: translateX(5px);
}

.contact-copy li:nth-child(3),
.contact-copy li:nth-child(4) {
  background: rgba(241, 216, 178, 0.86);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 18%, rgba(241, 216, 178, 0.13), transparent 24%),
    linear-gradient(135deg, #0E1C34 0%, #0E1C34 100%);
}

.footer-wrap {
  display: grid;
  min-height: auto;
  padding: clamp(54px, 7vw, 82px) 0 34px;
  gap: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  width: 100%;
}

.footer-brand-block {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.footer-logo {
  height: var(--logo-height-desktop);
  width: auto;
}

.footer-column {
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer-column h3 {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-column a,
.footer-column p,
.footer-wrap .footer-tagline {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.62;
  text-align: left;
  margin: 0;
}

.footer-column a {
  transition: color 0.24s ease, transform 0.24s ease;
}

.footer-column a:hover {
  color: #F1D8B2;
  transform: translateX(3px);
}

.footer-wrap .footer-tagline {
  max-width: 340px;
}

.footer-wrap .footer-meta {
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  line-height: 1.7;
  text-align: left;
  margin: 0;
}

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

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

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

@media (max-width: 900px) {
  .international-cta,
  .industries-wrap {
    grid-template-columns: 1fr;
  }

  .international-cta-action {
    justify-items: start;
  }

}

@media (max-width: 760px) {
  .jurisdictions-block,
  .international-cta,
  .industries-wrap {
    padding: 28px 22px;
  }

  .jurisdiction-grid,
  .why-grid,
  .support-grid,
  .insights-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .jurisdiction-grid .jurisdiction-card {
    min-height: auto;
    padding: 22px;
  }

  .jurisdiction-grid .jurisdiction-mark {
    width: 48px;
    height: 54px;
  }

  .international-cta h3 {
    font-size: 2rem;
  }

  .trust-card,
  .support-card,
  .insight-card {
    padding: 24px;
  }

  .insight-card--featured {
    padding: 0;
  }

  .insight-card--featured .insight-card-body {
    padding: 24px;
  }

  .footer-logo {
    height: var(--logo-height-mobile);
  }
}

/* Reset old jurisdiction pill rounding for the new editorial cards. */
.jurisdiction-grid .jurisdiction-card {
  border-radius: 3px;
}

/* Insight publication pages: premium law-firm publication layout. */
.insight-main {
  background: #F1D8B2;
}

.insight-hero {
  min-height: min(620px, calc(100vh - var(--nav-height-desktop)));
  padding: clamp(72px, 9vw, 118px) 0 clamp(54px, 7vw, 82px);
  background-size: cover;
  background-position: center;
}

.insight-gst-hero {
  background-image: url("assets/images/sections/onehorizon-legal-reception.png");
}

.insight-dpdp-hero {
  background-image: url("assets/images/hero/law-horizon-architecture-clean.png");
}

.insight-entry-hero {
  background-image: url("assets/images/cities/dubai-skyline-ocean.png");
}

.insight-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(241, 216, 178, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(14, 28, 52, 0.88) 0%, rgba(14, 28, 52, 0.68) 42%, rgba(14, 28, 52, 0.32) 100%);
}

.insight-hero .hero-inner {
  max-width: 820px;
}

.insight-hero h1 {
  max-width: 13ch;
  color: #F1D8B2;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.insight-hero .hero-intro {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
}

.insight-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.insight-meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(241, 216, 178, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(241, 216, 178, 0.82);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.insight-article {
  background: #F1D8B2;
  padding-top: clamp(58px, 7vw, 88px);
}

.insight-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 780px);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
  justify-content: center;
}

.insight-sidebar {
  position: sticky;
  top: calc(var(--nav-height-desktop) + 28px);
}

.insight-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--theme-ink);
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
}

.insight-back::before {
  content: "←";
  color: var(--theme-warm);
}

.insight-content {
  max-width: 780px;
  color: var(--theme-ink);
}

.insight-content .eyebrow {
  color: var(--theme-warm);
  margin-bottom: 22px;
}

.insight-content h2 {
  margin: 42px 0 16px;
  color: var(--theme-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.16;
}

.insight-content h2:first-of-type {
  margin-top: 0;
}

.insight-content p {
  color: var(--theme-muted);
  font-size: 1.05rem;
  line-height: 1.84;
}

.insight-content ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.insight-content li {
  position: relative;
  padding-left: 26px;
  color: var(--theme-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.insight-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--theme-warm);
  border-radius: 999px;
}

.related-insights {
  background: linear-gradient(180deg, #F1D8B2 0%, #F1D8B2 100%);
  border-top: 1px solid rgba(241, 216, 178, 0.1);
}

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

.insight-contact-cta {
  background: #F1D8B2;
  padding-top: 0;
}

.insight-card.clickable-card {
  cursor: pointer;
}

.insight-card:hover::before {
  width: 76px;
}

.insight-card::before {
  transition: width 0.28s ease, background 0.28s ease;
}

@media (max-width: 980px) {
  .insight-layout {
    grid-template-columns: 1fr;
  }

  .insight-sidebar {
    position: static;
  }

  .related-insights .insights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .insight-hero {
    min-height: 560px;
    background-position: center;
  }

  .insight-hero h1 {
    font-size: 2.65rem;
  }

  .insight-content p,
  .insight-content li {
    font-size: 0.96rem;
  }
}

/* Final insight hero image replacements and editorial hero tuning. */
.insight-hero {
  min-height: 75vh;
  max-height: 90vh;
  background-repeat: no-repeat;
}

.insight-gst-hero {
  background-image: url("assets/images/gst-refund-litigation-hero.png");
  background-position: 54% center;
}

.insight-dpdp-hero {
  background-image: url("assets/images/dpdp-act-hero.png");
  background-position: 62% center;
}

.insight-entry-hero {
  background-image: url("assets/images/india-entry-hero.png");
  background-position: center center;
}

.insight-gst-hero .insight-hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 28, 52, 0.72) 0%, rgba(14, 28, 52, 0.48) 46%, rgba(14, 28, 52, 0.34) 100%),
    linear-gradient(180deg, rgba(14, 28, 52, 0.22) 0%, rgba(14, 28, 52, 0.52) 100%);
}

.insight-dpdp-hero .insight-hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 28, 52, 0.44) 0%, rgba(14, 28, 52, 0.2) 44%, rgba(14, 28, 52, 0.18) 100%),
    linear-gradient(180deg, rgba(14, 28, 52, 0.18) 0%, rgba(14, 28, 52, 0.48) 100%);
}

.insight-entry-hero .insight-hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 28, 52, 0.58) 0%, rgba(14, 28, 52, 0.2) 38%, rgba(14, 28, 52, 0.12) 100%),
    linear-gradient(180deg, rgba(14, 28, 52, 0.12) 0%, rgba(14, 28, 52, 0.25) 100%);
}

.insight-hero h1 {
  font-family: "Playfair Display", "Source Serif 4", Georgia, serif;
}

.insight-hero .hero-kicker {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(241, 216, 178, 0.2);
  color: rgba(241, 216, 178, 0.86);
}

.insight-dpdp-hero .hero-inner {
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 28, 52, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.insight-entry-hero .hero-inner {
  align-self: end;
  margin-bottom: clamp(24px, 5vw, 54px);
}

.insight-entry-hero h1 {
  max-width: 15ch;
}

@media (max-width: 980px) {
  .insight-hero {
    min-height: 65vh;
    max-height: none;
  }

  .insight-gst-hero {
    background-position: 58% center;
  }

  .insight-dpdp-hero {
    background-position: 66% center;
  }
}

@media (max-width: 760px) {
  .insight-hero {
    min-height: 50vh;
    padding: 42px 0 34px;
  }

  .insight-gst-hero {
    background-position: 57% center;
  }

  .insight-dpdp-hero {
    background-position: 68% center;
  }

  .insight-entry-hero {
    background-position: center center;
  }

  .insight-dpdp-hero .hero-inner {
    padding: 18px;
  }
}

/* Premium homepage section system: clean editorial flow after the hero. */
.home-section {
  background: #ffffff;
  color: var(--ohl-slate);
  border-top: 1px solid var(--ohl-border);
  padding: var(--ohl-section-space) 0;
}

.home-section:nth-of-type(odd) {
  background: var(--ohl-warm);
}

.home-section .container {
  width: min(100% - 48px, 1160px);
}

.home-section .eyebrow,
.section-head--compact .eyebrow {
  color: var(--ohl-bronze);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.home-section h2,
.home-section h3 {
  color: var(--ohl-heading);
  font-family: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.018em;
}

.home-section h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.03;
  margin: 0;
}

.home-section h3 {
  font-size: clamp(1.35rem, 2vw, 1.62rem);
  line-height: 1.08;
  margin: 0;
}

.home-section p,
.home-section li,
.home-section a,
.home-section label,
.home-section input,
.home-section select,
.home-section textarea {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.home-section p {
  color: var(--ohl-slate);
  font-size: 1rem;
  line-height: 1.68;
  margin: 0;
}

.section-head--compact {
  max-width: 760px;
  margin: 0 0 clamp(32px, 5vw, 52px);
  text-align: left;
}

.section-head--compact p:last-child {
  max-width: 640px;
  margin-top: 18px;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(40px, 8vw, 96px);
  align-items: start;
}

.positioning-copy > p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.capability-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.capability-list li {
  border-top: 1px solid var(--ohl-border);
  color: var(--ohl-heading);
  font-size: 0.96rem;
  font-weight: 500;
  padding-top: 14px;
}

.practice-section,
.international-section,
.insights-section,
.contact-section {
  background: #ffffff;
}

.experience-section,
.sectors-section,
.expertise-section {
  background: var(--ohl-ivory);
}

.refined-card-grid,
.jurisdiction-card-grid,
.compact-support-grid,
.insights-grid {
  display: grid;
  gap: 18px;
}

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

.practice-card,
.support-card,
.jurisdiction-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 248px;
  padding: 28px;
  background: rgba(241, 216, 178, 0.82);
  border: 1px solid var(--ohl-border);
  color: inherit;
  overflow: hidden;
  text-decoration: none;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.practice-card::before,
.support-card::before,
.jurisdiction-tile::before,
.gift-feature::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 2px;
  background: var(--ohl-bronze);
  transform: scaleX(0.26);
  transform-origin: left;
  transition: transform 260ms ease;
}

.practice-card:hover,
.support-card:hover,
.jurisdiction-tile:hover,
.gift-feature:hover,
.insight-card:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 216, 178, 0.72);
  box-shadow: 0 18px 36px rgba(14, 28, 52, 0.08);
}

.practice-card:hover::before,
.support-card:hover::before,
.jurisdiction-tile:hover::before,
.gift-feature:hover::before {
  transform: scaleX(1);
}

.card-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  color: var(--ohl-bronze);
}

.card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.practice-card p,
.support-card p,
.jurisdiction-tile p {
  margin-top: 18px;
  font-size: 0.95rem;
  line-height: 1.62;
}

.practice-card a,
.gift-feature a,
.insight-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 26px;
  color: var(--ohl-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.practice-card a span,
.gift-feature a span,
.insight-card a span {
  transition: transform 260ms ease;
}

.practice-card:hover a span,
.gift-feature:hover a span,
.insight-card:hover a span {
  transform: translateX(4px);
}

.gift-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-top: 20px;
  padding: clamp(28px, 4vw, 42px);
  background: var(--ohl-navy);
  border: 1px solid rgba(241, 216, 178, 0.44);
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.gift-feature::before {
  left: clamp(28px, 4vw, 42px);
  right: clamp(28px, 4vw, 42px);
}

.gift-feature h3 {
  max-width: 860px;
  color: #F1D8B2;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
}

.gift-feature a {
  color: #F1D8B2;
  padding-top: 0;
  white-space: nowrap;
}

.experience-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ohl-border);
}

.experience-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--ohl-border);
  padding: 26px 0;
}

.experience-row span {
  color: var(--ohl-bronze);
  font-family: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.experience-row p {
  max-width: 800px;
  color: var(--ohl-heading);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
}

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

.jurisdiction-tile {
  min-height: 198px;
  padding-top: 30px;
}

.jurisdiction-tile > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border: 1px solid rgba(241, 216, 178, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

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

.support-card {
  min-height: 170px;
  background: #ffffff;
}

.sectors-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.sector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-chips span {
  border: 1px solid var(--ohl-border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ohl-heading);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.88rem;
  padding: 11px 15px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  gap: clamp(40px, 7vw, 82px);
  align-items: center;
}

.about-copy p {
  margin-top: 22px;
  max-width: 620px;
}

.about-image-frame {
  border: 1px solid var(--ohl-border);
  background: #ffffff;
  padding: 12px;
}

.about-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.contact-section {
  padding-bottom: clamp(72px, 8vw, 118px);
}

.contact-section .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.86fr);
  gap: clamp(40px, 7vw, 84px);
  align-items: start;
}

.contact-section .contact-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}

.contact-section .contact-copy p {
  margin-top: 20px;
}

.contact-section .contact-copy ul {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-section .contact-copy li {
  position: relative;
  padding-left: 18px;
  color: var(--ohl-slate);
  font-size: 0.96rem;
  line-height: 1.55;
}

.contact-section .contact-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--ohl-bronze);
}

.contact-section .contact-form {
  border: 1px solid var(--ohl-border);
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(14, 28, 52, 0.06);
}

@media (max-width: 980px) {
  .home-section .container {
    width: min(100% - 40px, 1160px);
  }

  .editorial-split,
  .sectors-wrap,
  .about-grid,
  .contact-section .contact-grid,
  .gift-feature {
    grid-template-columns: 1fr;
  }

  .refined-card-grid,
  .jurisdiction-card-grid,
  .compact-support-grid,
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gift-feature a {
    padding-top: 8px;
  }
}

@media (max-width: 640px) {
  .home-section {
    padding: 56px 0;
  }

  .home-section .container {
    width: min(100% - 32px, 1160px);
  }

  .refined-card-grid,
  .jurisdiction-card-grid,
  .compact-support-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .practice-card,
  .support-card,
  .jurisdiction-tile {
    min-height: auto;
    padding: 24px;
  }

  .experience-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gift-feature a {
    white-space: normal;
  }
}

/* Final navbar edge alignment: keep the header independent of the page content container. */
.site-header > .nav-wrap,
.site-header .nav-wrap.container {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: clamp(16px, 2vw, 32px) !important;
  padding-right: clamp(16px, 2vw, 32px) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .brand {
  margin-right: auto;
}

.site-header .site-nav {
  margin-left: auto;
  justify-content: flex-end;
}

@media (min-width: 1600px) {
  .site-header > .nav-wrap,
  .site-header .nav-wrap.container {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
}

@media (max-width: 980px) {
  .site-header > .nav-wrap,
  .site-header .nav-wrap.container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 760px) {
  .site-header > .nav-wrap,
  .site-header .nav-wrap.container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* Refined minimal palette reset: navy authority, soft stone surfaces, white cards, restrained champagne accents. */
:root {
  --theme-navy: #0E1C34;
  --theme-navy-deep: #0E1C34;
  --theme-ink: #0E1C34;
  --theme-muted: #5F6977;
  --theme-line: #E7E1D8;
  --theme-warm: #C8A66A;
  --theme-paper: #F8F6F1;
  --theme-card: #ffffff;
  --ohl-navy: #0E1C34;
  --ohl-ivory: #F8F6F1;
  --ohl-warm: #C8A66A;
  --ohl-bronze: #C8A66A;
  --ohl-slate: #5F6977;
  --ohl-border: #E7E1D8;
  --ohl-heading: #0E1C34;
}

body,
.gift-practice-main,
.gift-practice-detail,
.home-section,
.practice-section,
.international-section,
.contact-section {
  background: var(--theme-paper);
  color: var(--theme-ink);
}

p,
li,
.section-copy,
.lead,
.contact-section .contact-copy p,
.contact-section .contact-copy li,
.service-card p,
.core-card li,
.international-card p,
.jurisdiction-grid .jurisdiction-card p,
.gift-detail-card .practice-list li,
.gift-detail-cta p,
.gift-practice-hero .lead,
.footer-wrap p {
  color: var(--theme-muted);
}

h1,
h2,
h3,
.section-heading,
.contact-section h2,
.service-card h3,
.core-card h3,
.international-card h3,
.gift-detail-card h3,
.gift-practice-hero h1,
.jurisdictions-block .compact-head h2 {
  color: var(--theme-ink);
}

.eyebrow,
.section-label,
.service-more,
.international-card .service-more,
.jurisdiction-mark,
.contact-section .eyebrow,
.jurisdictions-block .compact-head .eyebrow,
.gift-detail-card > span,
.gift-detail-card .practice-list li::before {
  color: var(--theme-warm);
}

.core-card,
.service-card,
.international-card,
.jurisdiction-grid .jurisdiction-card,
.gift-detail-card,
.gift-detail-industries,
.gift-detail-tags span,
.contact-section .contact-form,
.practice-detail-card,
.support-card,
.refined-card,
.insight-card,
.compact-support-card,
.jurisdiction-tile {
  background: var(--theme-card) !important;
  border-color: var(--theme-line) !important;
  box-shadow: 0 20px 52px rgba(14, 28, 52, 0.055);
}

.core-card:hover,
.service-card:hover,
.international-card:hover,
.jurisdiction-grid .jurisdiction-card:hover,
.gift-detail-card:hover,
.support-card:hover,
.refined-card:hover,
.insight-card:hover,
.compact-support-card:hover,
.jurisdiction-tile:hover {
  border-color: rgba(200, 166, 106, 0.62) !important;
  box-shadow: 0 30px 72px rgba(14, 28, 52, 0.1);
}

.core-card li::before,
.service-card::before,
.international-card::before,
.contact-section .contact-copy li::before,
.hero h1 span,
.hero-highlight,
.accent-line,
.service-icon,
.international-icon {
  background-color: var(--theme-warm);
  color: var(--theme-warm);
}

.jurisdictions-block,
.gift-practice-hero,
.gift-detail-industries {
  background: linear-gradient(180deg, #ffffff 0%, var(--theme-paper) 100%) !important;
  border-color: var(--theme-line) !important;
}

.international-cta,
.international-page-cta,
.site-footer {
  background: var(--theme-navy) !important;
  color: #ffffff;
}

.international-cta h3,
.international-cta p,
.international-cta .btn,
.international-page-cta h3,
.site-footer h3,
.site-footer p,
.site-footer a,
.site-footer li,
.footer-wrap p,
.footer-wrap .footer-tagline,
.footer-wrap .footer-meta {
  color: #ffffff;
}

.site-footer .footer-meta,
.footer-wrap .footer-tagline,
.footer-wrap p {
  opacity: 0.78;
}

.disclaimer-card {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(231, 225, 216, 0.72) !important;
  color: var(--theme-ink);
}

.disclaimer-card h2 {
  color: var(--theme-ink) !important;
}

.disclaimer-card p {
  color: var(--theme-muted) !important;
}

.btn-disclaimer-primary,
.nav-cta,
.btn-primary,
.contact-section .btn-primary {
  background: var(--theme-navy) !important;
  border-color: var(--theme-navy) !important;
  color: #ffffff !important;
}

.btn-disclaimer-outline {
  background: rgba(14, 28, 52, 0.035) !important;
  border-color: rgba(14, 28, 52, 0.34) !important;
  color: #0E1C34 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.btn-disclaimer-primary:hover,
.nav-cta:hover,
.btn-primary:hover,
.contact-section .btn-primary:hover {
  background: #ffffff !important;
  color: var(--theme-navy) !important;
  border-color: var(--theme-navy) !important;
}

input,
select,
textarea {
  border-color: var(--theme-line) !important;
  color: var(--theme-ink) !important;
  background: #ffffff !important;
}

input::placeholder,
textarea::placeholder {
  color: #8A93A0 !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--theme-warm) !important;
  box-shadow: 0 0 0 3px rgba(200, 166, 106, 0.14) !important;
}

/* Keep accents refined: no filled highlight blocks on inline hero text or line icons. */
.hero h1 span,
.hero-highlight,
.service-icon,
.international-icon {
  background: transparent !important;
  background-color: transparent !important;
  color: inherit;
}

.service-card .service-icon,
.international-card .international-icon {
  color: var(--theme-warm) !important;
}

.hero h1 span,
.hero-highlight {
  color: #ffffff !important;
}

/* LW-inspired interior redesign: applies only after the hero and before the footer. */
:root {
  --global-navy: #07172a;
  --global-ink: #111827;
  --global-muted: #5c6673;
  --global-line: #ddd7cf;
  --global-paper: #f7f4ef;
  --global-soft: #fbfaf7;
  --global-accent: #a97d4d;
  --global-container: 1280px;
  --global-section-pad: clamp(82px, 9vw, 136px);
}

main > .home-section {
  position: relative;
  padding: var(--global-section-pad) 0;
  background: #ffffff;
  border-top: 1px solid var(--global-line);
  overflow: hidden;
}

main > .home-section > .container,
main > .home-section .container {
  width: min(var(--global-container), calc(100% - 96px));
}

main > .home-section:nth-of(odd) {
  background: var(--global-paper);
}

main > .home-section h2 {
  color: var(--global-ink);
  font-family: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

main > .home-section p,
main > .home-section li {
  color: var(--global-muted);
}

main > .home-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--global-accent);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

main > .home-section .eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section-head--compact {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1fr);
  align-items: end;
  gap: clamp(36px, 7vw, 110px);
  max-width: none;
  margin: 0 0 clamp(38px, 5vw, 72px);
  text-align: left;
}

.section-head--compact h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 5.6rem);
}

.section-head--compact .eyebrow {
  align-self: start;
}

.positioning-section {
  background: #ffffff !important;
}

.editorial-split {
  grid-template-columns: minmax(330px, 0.92fr) minmax(420px, 1fr);
  gap: clamp(48px, 9vw, 136px);
  align-items: start;
}

.editorial-split h2 {
  max-width: 680px;
  font-size: clamp(2.75rem, 5.4vw, 6.35rem);
}

.positioning-copy {
  max-width: 620px;
  padding-top: clamp(10px, 2vw, 34px);
}

.positioning-copy p {
  font-size: clamp(1.06rem, 1.4vw, 1.28rem);
  line-height: 1.75;
}

.capability-list {
  display: grid;
  gap: 0;
  margin-top: 36px;
  padding: 0;
  border-top: 1px solid var(--global-line);
  list-style: none;
}

.capability-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--global-line);
  color: var(--global-ink) !important;
  font-weight: 600;
}

.capability-list li::after {
  content: "→";
  color: var(--global-accent);
  font-weight: 400;
}

.practice-section,
.support-section,
.insights-section,
.contact-section {
  background: var(--global-paper) !important;
}

.practice-grid,
.refined-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--global-line);
  border: 1px solid var(--global-line);
}

.practice-card {
  min-height: 330px;
  padding: clamp(28px, 3vw, 42px);
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
  transition: background 0.28s ease, transform 0.28s ease;
}

.practice-card:hover {
  background: var(--global-soft) !important;
  transform: translateY(-2px);
  box-shadow: none !important;
}

.practice-card .card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  color: var(--global-accent);
}

.practice-card .card-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
}

.practice-card h3 {
  max-width: 260px;
  color: var(--global-ink) !important;
  font-family: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  font-size: clamp(1.65rem, 2.1vw, 2.2rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.practice-card p {
  max-width: 330px;
  margin-top: 22px;
  font-size: 0.94rem;
  line-height: 1.65;
}

.practice-card a,
.service-more {
  margin-top: 28px;
  color: var(--global-ink) !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.practice-card a span {
  display: inline-block;
  transition: transform 0.24s ease;
}

.practice-card:hover a span {
  transform: translateX(5px);
}

.gift-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  margin-top: 1px;
  padding: clamp(30px, 4vw, 50px);
  background: var(--global-navy) !important;
  border: 0 !important;
  color: #ffffff;
  box-shadow: none !important;
}

.gift-feature .eyebrow,
.gift-feature h3,
.gift-feature a {
  color: #ffffff !important;
}

.gift-feature .eyebrow::before {
  background: var(--global-accent);
}

.gift-feature h3 {
  max-width: 920px;
  font-family: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  font-weight: 500;
  line-height: 1.02;
}

.gift-feature a {
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 16px 20px;
  white-space: nowrap;
}

.experience-section {
  background: #ffffff !important;
}

.experience-list {
  border-top: 1px solid var(--global-line);
}

.experience-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: start;
  padding: clamp(26px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--global-line);
}

.experience-row span {
  color: var(--global-accent);
  font-family: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 3.2rem);
  line-height: 1;
}

.experience-row p {
  max-width: 860px;
  color: var(--global-ink) !important;
  font-family: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  font-size: clamp(1.55rem, 2.45vw, 2.8rem);
  line-height: 1.12;
}

.international-section {
  background: var(--global-navy) !important;
  color: #ffffff;
}

.international-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.045), transparent 42%);
  pointer-events: none;
}

.international-section .container {
  position: relative;
}

.international-section .eyebrow,
.international-section h2,
.international-section p {
  color: #ffffff !important;
}

.international-section .eyebrow {
  color: var(--global-accent) !important;
}

.jurisdiction-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.jurisdiction-tile {
  min-height: 250px;
  padding: clamp(26px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.04) !important;
  border: 0 !important;
  color: #ffffff;
  box-shadow: none !important;
  transition: background 0.28s ease, transform 0.28s ease;
}

.jurisdiction-tile:hover {
  background: rgba(255, 255, 255, 0.09) !important;
  transform: translateY(-2px);
}

.jurisdiction-tile > span {
  display: inline-flex;
  margin-bottom: 34px;
  font-size: 1.45rem;
}

.jurisdiction-tile h3 {
  color: #ffffff !important;
  font-family: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 500;
}

.jurisdiction-tile p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.92rem;
  line-height: 1.65;
}

.support-grid,
.compact-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--global-line);
  border: 1px solid var(--global-line);
}

.support-card {
  min-height: 220px;
  padding: clamp(26px, 3vw, 38px);
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.support-card h3 {
  max-width: 260px;
  color: var(--global-ink) !important;
  font-family: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  font-size: clamp(1.45rem, 1.9vw, 2.05rem);
  font-weight: 500;
  line-height: 1.05;
}

.support-card p {
  margin-top: 20px;
  font-size: 0.94rem;
  line-height: 1.65;
}

.sectors-section {
  background: #ffffff !important;
}

.sectors-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(520px, 1fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}

.sectors-wrap h2 {
  font-size: clamp(2.4rem, 4.4vw, 5.2rem);
}

.sector-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--global-line);
}

.sector-chips span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 18px 0;
  border-bottom: 1px solid var(--global-line);
  color: var(--global-ink);
  font-weight: 600;
}

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

.insight-card {
  background: #ffffff !important;
  border: 1px solid var(--global-line) !important;
  box-shadow: none !important;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
  border-color: var(--global-accent) !important;
  box-shadow: none !important;
}

.insight-card-media {
  height: clamp(210px, 17vw, 270px);
  overflow: hidden;
  background: var(--global-navy);
}

.insight-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insight-card:hover .insight-card-media img {
  transform: scale(1.035);
}

.insight-card-body {
  padding: clamp(24px, 3vw, 34px);
}

.insight-meta {
  margin-bottom: 18px;
  color: var(--global-accent) !important;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-card h3 {
  color: var(--global-ink) !important;
  font-family: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 500;
  line-height: 1.05;
}

.insight-card-body > p:not(.insight-meta) {
  margin-top: 20px;
  line-height: 1.65;
}

.insight-card a {
  display: inline-flex;
  margin-top: 28px;
  color: var(--global-ink) !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expertise-section {
  background: #ffffff !important;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(460px, 1fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: center;
}

.about-copy h2 {
  max-width: 620px;
  font-size: clamp(2.45rem, 4.5vw, 5.35rem);
}

.about-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  font-size: 1.02rem;
  line-height: 1.78;
}

.about-image-frame {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--global-line);
  overflow: hidden;
  background: var(--global-paper);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section {
  background: var(--global-paper) !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(460px, 0.9fr);
  gap: clamp(52px, 9vw, 140px);
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2.65rem, 5vw, 5.75rem);
}

.contact-copy > p {
  max-width: 620px;
  margin-top: 24px;
  font-size: 1.06rem;
  line-height: 1.75;
}

.contact-copy ul {
  margin-top: 42px;
  padding: 0;
  border-top: 1px solid var(--global-line);
  list-style: none;
}

.contact-copy li {
  padding: 15px 0 !important;
  border-bottom: 1px solid var(--global-line);
  color: var(--global-ink) !important;
}

.contact-copy li::before {
  display: none !important;
}

.contact-form {
  padding: clamp(28px, 4vw, 46px) !important;
  background: #ffffff !important;
  border: 1px solid var(--global-line) !important;
  box-shadow: none !important;
}

.contact-form label {
  color: var(--global-ink) !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 52px;
  margin-top: 8px;
  border: 1px solid var(--global-line) !important;
  border-radius: 0;
  background: #ffffff !important;
  color: var(--global-ink) !important;
}

.contact-form textarea {
  min-height: 132px;
}

.contact-form .btn,
.contact-form .btn-primary {
  width: 100%;
  min-height: 56px;
  border-radius: 0;
  background: var(--global-navy) !important;
  color: #ffffff !important;
}

@media (max-width: 1100px) {
  main > .home-section > .container,
  main > .home-section .container {
    width: min(100% - 56px, var(--global-container));
  }

  .section-head--compact,
  .editorial-split,
  .sectors-wrap,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .practice-grid,
  .refined-card-grid,
  .support-grid,
  .compact-support-grid,
  .jurisdiction-card-grid,
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gift-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  main > .home-section {
    padding: clamp(62px, 14vw, 86px) 0;
  }

  main > .home-section > .container,
  main > .home-section .container {
    width: min(100% - 32px, var(--global-container));
  }

  .section-head--compact h2,
  .editorial-split h2,
  .about-copy h2,
  .contact-copy h2,
  .sectors-wrap h2 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .practice-grid,
  .refined-card-grid,
  .support-grid,
  .compact-support-grid,
  .jurisdiction-card-grid,
  .insights-grid,
  .sector-chips {
    grid-template-columns: 1fr;
  }

  .practice-card,
  .support-card,
  .jurisdiction-tile {
    min-height: auto;
  }

  .experience-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .experience-row p {
    font-size: clamp(1.45rem, 8vw, 2.25rem);
  }

  .about-image-frame {
    aspect-ratio: 1 / 1.08;
  }
}

/* Final layout guard: prevent browser default body margins from creating horizontal overflow. */
html,
body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

/* Linked-page palette restoration: remove the over-applied beige from practice, international, GIFT City, and insight pages. */
.practice-main,
.insight-main,
.gift-practice-main {
  --theme-navy: #07172d;
  --theme-navy-deep: #031126;
  --theme-ink: #07172d;
  --theme-muted: #4b5b70;
  --theme-line: #e8edf3;
  --theme-warm: #ae7a4c;
  --theme-paper: #fbfcfd;
  --linked-card: #ffffff;
  background: var(--theme-paper) !important;
  color: var(--theme-ink);
}

.practice-main .practice-detail,
.practice-main .international-detail,
.practice-main .jurisdiction-detail,
.practice-main .gift-practice-detail,
.insight-main .insight-article,
.insight-main .related-insights,
.gift-practice-main .gift-practice-detail {
  background: var(--theme-paper) !important;
}

.practice-main .practice-detail-card,
.practice-main .jurisdiction-card,
.practice-main .gift-detail-card,
.practice-main .gift-detail-industries,
.practice-main .gift-detail-tags span,
.practice-main .gift-detail-cta,
.insight-main .insight-content,
.insight-main .related-insights .insight-card,
.gift-practice-main .gift-detail-card,
.gift-practice-main .gift-detail-industries,
.gift-practice-main .gift-detail-tags span,
.gift-practice-main .gift-detail-cta {
  background: var(--linked-card) !important;
  border-color: var(--theme-line) !important;
  color: var(--theme-ink) !important;
  box-shadow: 0 18px 46px rgba(7, 23, 45, 0.045) !important;
}

.practice-main .practice-detail-card:hover,
.practice-main .gift-detail-card:hover,
.gift-practice-main .gift-detail-card:hover,
.insight-main .related-insights .insight-card:hover {
  border-color: rgba(174, 122, 76, 0.45) !important;
  box-shadow: 0 28px 62px rgba(7, 23, 45, 0.08) !important;
}

.practice-main .section-head h2,
.practice-main .practice-detail-card h3,
.practice-main .gift-practice-hero h1,
.practice-main .gift-detail-card h3,
.practice-main .gift-detail-cta h2,
.insight-main .insight-content h2,
.insight-main .related-insights h2,
.gift-practice-main .gift-practice-hero h1,
.gift-practice-main .gift-detail-card h3,
.gift-practice-main .gift-detail-cta h2 {
  color: var(--theme-ink) !important;
}

.practice-main .lead,
.practice-main .practice-detail-card p,
.practice-main .practice-list li,
.practice-main .gift-practice-hero .lead,
.practice-main .gift-detail-card .practice-list li,
.practice-main .gift-detail-cta p,
.insight-main .insight-content p,
.insight-main .insight-content li,
.gift-practice-main .gift-practice-hero .lead,
.gift-practice-main .gift-detail-card .practice-list li,
.gift-practice-main .gift-detail-cta p {
  color: var(--theme-muted) !important;
}

.practice-main .eyebrow,
.practice-main .practice-back,
.practice-main .gift-detail-card > span,
.practice-main .gift-detail-card .practice-list li::before,
.insight-main .eyebrow,
.insight-main .insight-back,
.insight-main .insight-meta,
.gift-practice-main .eyebrow,
.gift-practice-main .gift-detail-card > span,
.gift-practice-main .gift-detail-card .practice-list li::before {
  color: var(--theme-warm) !important;
  background-color: transparent !important;
}

.practice-main .gift-detail-card .practice-list li::before,
.gift-practice-main .gift-detail-card .practice-list li::before {
  background: var(--theme-warm) !important;
}

.practice-main .gift-practice-hero,
.gift-practice-main .gift-practice-hero,
.practice-main .jurisdictions-block {
  background: linear-gradient(180deg, #ffffff 0%, var(--theme-paper) 100%) !important;
  border-color: var(--theme-line) !important;
}

.practice-main .jurisdiction-visual {
  border-color: rgba(174, 122, 76, 0.34) !important;
  background: radial-gradient(circle, rgba(174, 122, 76, 0.13), transparent 62%), rgba(255, 255, 255, 0.035) !important;
}

.practice-main .jurisdiction-visual span {
  color: #d9b17e !important;
}

/* Final linked-page color correction: restore the original understated palette on internal pages. */
body:has(.practice-main),
body:has(.insight-main),
body:has(.gift-practice-main) {
  background: #fbfcfd !important;
}

.practice-main,
.practice-main.international-main,
.practice-main.jurisdiction-main,
.insight-main,
.gift-practice-main {
  --internal-navy: #07172d;
  --internal-deep: #031126;
  --internal-ink: #07172d;
  --internal-muted: #4f5f73;
  --internal-line: #e6eaf0;
  --internal-card: #ffffff;
  --internal-paper: #fbfcfd;
  --internal-soft: #f5f7fa;
  --internal-accent: #a87548;
  background: var(--internal-paper) !important;
  color: var(--internal-ink) !important;
}

.practice-main .section,
.practice-main .practice-detail,
.practice-main .international-detail,
.practice-main .jurisdiction-detail,
.practice-main .gift-practice-detail,
.practice-main .jurisdictions-block,
.insight-main .section,
.insight-main .insight-article,
.insight-main .related-insights,
.gift-practice-main .section,
.gift-practice-main .gift-practice-detail {
  background: var(--internal-paper) !important;
}

.practice-main .practice-detail-card,
.practice-main .international-detail-grid .practice-detail-card,
.practice-main .international-page-cta,
.practice-main .jurisdiction-grid .jurisdiction-card,
.practice-main .jurisdiction-card,
.practice-main .gift-detail-card,
.practice-main .gift-detail-industries,
.practice-main .gift-detail-tags span,
.practice-main .gift-detail-cta,
.insight-main .insight-content,
.insight-main .related-insights .insight-card,
.gift-practice-main .gift-detail-card,
.gift-practice-main .gift-detail-industries,
.gift-practice-main .gift-detail-tags span,
.gift-practice-main .gift-detail-cta {
  background: var(--internal-card) !important;
  border-color: var(--internal-line) !important;
  color: var(--internal-ink) !important;
  box-shadow: 0 18px 48px rgba(7, 23, 45, 0.045) !important;
}

.practice-main .gift-practice-hero,
.gift-practice-main .gift-practice-hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--internal-soft) 100%) !important;
  border-color: var(--internal-line) !important;
}

.practice-main .practice-detail-card:hover,
.practice-main .international-page-cta:hover,
.practice-main .jurisdiction-grid .jurisdiction-card:hover,
.practice-main .gift-detail-card:hover,
.insight-main .related-insights .insight-card:hover,
.gift-practice-main .gift-detail-card:hover {
  border-color: rgba(168, 117, 72, 0.42) !important;
  box-shadow: 0 26px 64px rgba(7, 23, 45, 0.09) !important;
}

.practice-main .section-head h2,
.practice-main .practice-detail-card h3,
.practice-main .international-page-cta h3,
.practice-main .jurisdiction-grid .jurisdiction-card h3,
.practice-main .gift-practice-hero h1,
.practice-main .gift-detail-card h3,
.practice-main .gift-detail-cta h2,
.insight-main .insight-content h2,
.insight-main .related-insights h2,
.insight-main .related-insights .insight-card h3,
.gift-practice-main .gift-practice-hero h1,
.gift-practice-main .gift-detail-card h3,
.gift-practice-main .gift-detail-cta h2 {
  color: var(--internal-ink) !important;
}

.practice-main .lead,
.practice-main .practice-detail-card p,
.practice-main .practice-list li,
.practice-main .international-page-cta p,
.practice-main .jurisdiction-grid .jurisdiction-card p,
.practice-main .gift-practice-hero .lead,
.practice-main .gift-detail-card .practice-list li,
.practice-main .gift-detail-cta p,
.insight-main .insight-content p,
.insight-main .insight-content li,
.insight-main .related-insights .insight-card p,
.gift-practice-main .gift-practice-hero .lead,
.gift-practice-main .gift-detail-card .practice-list li,
.gift-practice-main .gift-detail-cta p {
  color: var(--internal-muted) !important;
}

.practice-main .eyebrow,
.practice-main .practice-back,
.practice-main .jurisdiction-mark,
.practice-main .gift-detail-card > span,
.insight-main .eyebrow,
.insight-main .insight-back,
.insight-main .insight-meta,
.insight-main .insight-meta-row span,
.gift-practice-main .eyebrow,
.gift-practice-main .gift-detail-card > span {
  color: var(--internal-accent) !important;
  background-color: transparent !important;
}

.practice-main .practice-list li::before,
.practice-main .gift-detail-card .practice-list li::before,
.insight-main .insight-content li::before,
.gift-practice-main .gift-detail-card .practice-list li::before {
  background: var(--internal-accent) !important;
}

.practice-main .jurisdiction-mark {
  border-color: rgba(168, 117, 72, 0.32) !important;
}

.practice-main .btn-primary,
.insight-main .btn-primary,
.gift-practice-main .btn-primary {
  background: var(--internal-navy) !important;
  border-color: var(--internal-navy) !important;
  color: #ffffff !important;
}

/* Premium dropdown navigation for practice areas, international advisory, and insights. */
.site-header .site-nav {
  overflow: visible;
}

.site-header .nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-header .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-header .nav-trigger::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.62;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-header .nav-dropdown:hover .nav-trigger::after,
.site-header .nav-dropdown:focus-within .nav-trigger::after {
  opacity: 1;
  transform: rotate(225deg) translateY(-1px);
}

.site-header .nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  z-index: 1600;
  display: grid;
  gap: 2px;
  min-width: 292px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(7, 23, 45, 0.12);
  box-shadow: 0 28px 70px rgba(7, 23, 45, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.site-header .nav-dropdown-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.site-header .nav-dropdown:hover > .nav-dropdown-panel,
.site-header .nav-dropdown:focus-within > .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header .nav-dropdown-panel a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 11px;
  border-bottom: 1px solid rgba(7, 23, 45, 0.06);
  color: rgba(7, 23, 45, 0.78) !important;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: none;
  white-space: normal;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.site-header .nav-dropdown-panel a:last-child {
  border-bottom: 0;
}

.site-header .nav-dropdown-panel a:hover,
.site-header .nav-dropdown-panel a:focus {
  background: #f6f3ed;
  color: #07172d !important;
  transform: translateX(4px);
}

.site-header .nav-dropdown-wide .nav-dropdown-panel {
  right: 0;
  left: auto;
  width: min(650px, calc(100vw - 48px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-header .nav-dropdown-insights .nav-dropdown-panel {
  right: 0;
  left: auto;
  min-width: 320px;
}

@media (max-width: 1180px) {
  .site-header .site-nav {
    gap: 16px;
  }

  .site-header .nav-dropdown-wide .nav-dropdown-panel {
    width: min(560px, calc(100vw - 40px));
  }
}

@media (max-width: 980px) {
  .site-header .site-nav {
    overflow-y: auto;
    max-height: calc(100vh - var(--nav-height-desktop) - 24px);
  }

  .site-header .nav-item {
    display: grid;
    width: 100%;
  }

  .site-header .nav-trigger {
    justify-content: space-between;
    width: 100%;
  }

  .site-header .nav-trigger::after {
    transform: rotate(45deg);
  }

  .site-header .nav-dropdown-panel,
  .site-header .nav-dropdown-wide .nav-dropdown-panel,
  .site-header .nav-dropdown-insights .nav-dropdown-panel {
    position: static;
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    margin-top: 6px;
    padding: 6px 0 8px 12px;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(7, 23, 45, 0.18);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-header .nav-dropdown-panel::before {
    display: none;
  }

  .site-header .nav-dropdown-panel a {
    min-height: 32px;
    padding: 7px 8px;
    border-bottom: 0;
    font-size: 0.78rem;
    color: rgba(7, 23, 45, 0.72) !important;
  }

  .site-header .nav-dropdown-panel a:hover,
  .site-header .nav-dropdown-panel a:focus {
    transform: none;
  }
}

/* Internal page hero refinement: keep homepage landing hero untouched. */
.practice-main .hero,
.insight-main .hero {
  justify-content: flex-start !important;
  align-items: center !important;
  padding-left: clamp(24px, 6vw, 92px) !important;
  padding-right: clamp(24px, 6vw, 92px) !important;
  box-sizing: border-box !important;
}

.practice-main .hero-inner,
.insight-main .hero-inner,
.jurisdiction-main .hero-inner {
  width: min(760px, calc(100% - 48px)) !important;
  max-width: 760px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
  top: auto !important;
  transform: none !important;
  gap: 16px !important;
}

.jurisdiction-hero-grid {
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: start !important;
}

.practice-main .hero h1,
.insight-main .hero h1,
.jurisdiction-main .hero h1,
.gift-practice-hero h1 {
  max-width: 760px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
  font-size: clamp(2.15rem, 4.1vw, 3.65rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.018em !important;
}

.practice-main .hero-intro,
.insight-main .hero-intro,
.jurisdiction-main .hero-intro {
  max-width: 650px !important;
  text-align: left !important;
  font-size: clamp(0.96rem, 1.15vw, 1.08rem) !important;
  line-height: 1.72 !important;
}

.practice-main .hero-cta,
.jurisdiction-main .hero-cta {
  justify-content: flex-start !important;
}

.insight-hero {
  min-height: min(620px, 68vh) !important;
  max-height: none !important;
}

.insight-entry-hero .hero-inner {
  align-self: center !important;
  margin-bottom: 0 !important;
}

.insight-dpdp-hero .hero-inner {
  justify-self: start !important;
}

.gift-practice-hero-wrap {
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
}

.gift-practice-hero {
  padding-left: clamp(24px, 6vw, 92px) !important;
  padding-right: clamp(24px, 6vw, 92px) !important;
  box-sizing: border-box !important;
}

@media (max-width: 980px) {
  .practice-main .hero-inner,
  .insight-main .hero-inner,
  .jurisdiction-main .hero-inner {
    width: min(680px, calc(100% - 40px)) !important;
  }

  .practice-main .hero h1,
  .insight-main .hero h1,
  .jurisdiction-main .hero h1,
  .gift-practice-hero h1 {
    font-size: clamp(2rem, 7vw, 3rem) !important;
  }
}

@media (max-width: 760px) {
  .practice-main .hero,
  .insight-main .hero {
    min-height: 430px !important;
  }

  .practice-main .hero-inner,
  .insight-main .hero-inner,
  .jurisdiction-main .hero-inner {
    width: min(100% - 32px, 560px) !important;
  }

  .practice-main .hero h1,
  .insight-main .hero h1,
  .jurisdiction-main .hero h1,
  .gift-practice-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.65rem) !important;
  }
}

/* About and contact refresh: scoped to the homepage sections only. */
.expertise-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f5f0 100%) !important;
  border-top: 1px solid rgba(7, 23, 42, 0.06);
}

.expertise-section .about-grid--premium {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr) !important;
  gap: clamp(44px, 7vw, 96px) !important;
  align-items: center !important;
}

.expertise-section .about-copy {
  text-align: left;
}

.expertise-section .about-copy h2 {
  max-width: 780px !important;
  font-size: clamp(2.15rem, 4vw, 4.2rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.028em !important;
}

.expertise-section .about-copy .about-lead {
  max-width: 690px !important;
  font-size: clamp(1.06rem, 1.32vw, 1.2rem) !important;
  line-height: 1.7 !important;
  color: #243149 !important;
}

.expertise-section .about-copy p:not(.eyebrow):not(.about-lead) {
  max-width: 690px !important;
  color: #5d6675 !important;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(7, 23, 42, 0.1);
  background: rgba(7, 23, 42, 0.1);
  gap: 1px;
}

.about-principles article {
  min-height: 190px;
  padding: clamp(22px, 2.8vw, 30px);
  background: rgba(255, 255, 255, 0.92);
  transition:
    transform 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease;
}

.about-principles article:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(7, 23, 42, 0.1);
}

.about-principles span {
  display: block;
  color: var(--global-bronze);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.about-principles h3 {
  margin: 0;
  color: var(--global-navy);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 1.7vw, 1.72rem);
  font-weight: 600;
  line-height: 1.12;
}

.about-principles p {
  margin-top: 14px !important;
  color: #606a78 !important;
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
}

.about-visual {
  position: relative;
}

.expertise-section .about-visual .about-image-frame {
  aspect-ratio: 4 / 5 !important;
  border: 1px solid rgba(7, 23, 42, 0.12) !important;
  background: #ffffff !important;
  box-shadow: 0 28px 80px rgba(7, 23, 42, 0.12);
}

.expertise-section .about-visual .about-image-frame img {
  object-fit: cover !important;
  object-position: center !important;
  transform: scale(1.01);
}

.about-note {
  margin-top: 18px;
  padding: 18px 22px;
  border-left: 2px solid var(--global-bronze);
  background: #ffffff;
  color: #5d6675;
  box-shadow: 0 18px 44px rgba(7, 23, 42, 0.08);
}

.about-note span {
  display: block;
  color: var(--global-navy);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-note p {
  margin: 9px 0 0;
  font-size: 0.94rem;
  line-height: 1.62;
}

.contact-section {
  background:
    radial-gradient(circle at 14% 16%, rgba(168, 117, 72, 0.18), transparent 32%),
    linear-gradient(135deg, #07172a 0%, #081426 58%, #030914 100%) !important;
  color: #ffffff;
  padding-block: clamp(76px, 9vw, 132px) !important;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: start;
}

.contact-section .contact-copy {
  text-align: left;
}

.contact-section .eyebrow {
  color: rgba(255, 255, 255, 0.7) !important;
}

.contact-section .contact-copy h2 {
  max-width: 620px;
  color: #ffffff !important;
  font-size: clamp(2.45rem, 4.8vw, 5rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.026em !important;
}

.contact-section .contact-copy > p {
  max-width: 590px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

.contact-section .contact-details {
  display: grid;
  margin: clamp(34px, 5vw, 56px) 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
  list-style: none;
}

.contact-section .contact-details li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 18px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.82) !important;
}

.contact-section .contact-details li::before {
  display: none !important;
}

.contact-section .contact-details span {
  color: rgba(255, 255, 255, 0.52);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-section .contact-details a,
.contact-section .contact-details strong {
  color: #ffffff !important;
  font-weight: 500;
  text-decoration: none;
}

.contact-section .contact-details a:hover {
  color: #d7a56f !important;
}

.contact-section .contact-form {
  position: relative;
  padding: clamp(28px, 4vw, 46px) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26) !important;
}

.contact-section .contact-form::before {
  content: "Consultation Request";
  display: block;
  margin-bottom: 28px;
  color: var(--global-navy);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.contact-section .contact-form label {
  color: #172136 !important;
}

.contact-section .contact-form input,
.contact-section .contact-form select,
.contact-section .contact-form textarea {
  border: 1px solid #dfe3ea !important;
  background: #fbfcfd !important;
  color: #111827 !important;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.contact-section .contact-form input:focus,
.contact-section .contact-form select:focus,
.contact-section .contact-form textarea:focus {
  border-color: var(--global-bronze) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(168, 117, 72, 0.12) !important;
  outline: none;
}

.contact-section .contact-form .btn,
.contact-section .contact-form .btn-primary {
  width: 100%;
  min-height: 58px;
  border-radius: 0;
  background: var(--global-navy) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.contact-section .contact-form .btn:hover,
.contact-section .contact-form .btn-primary:hover {
  transform: translateY(-2px);
  background: #0d213d !important;
}

@media (max-width: 1120px) {
  .expertise-section .about-grid--premium,
  .contact-panel {
    grid-template-columns: 1fr !important;
  }

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

  .expertise-section .about-visual {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .contact-section .contact-details li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-panel {
    gap: 34px;
  }
}

/* Eyebrow heading cleanup: remove unintended highlight bars behind section labels. */
.eyebrow,
.home-section .eyebrow,
main > .home-section .eyebrow,
.section-head--compact .eyebrow,
.international-section .eyebrow,
.practice-main .eyebrow,
.insight-main .eyebrow,
.gift-practice-main .eyebrow,
.contact-section .eyebrow,
.jurisdictions-block .compact-head .eyebrow {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: max-content !important;
  align-items: center !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  padding: 0 !important;
}

.eyebrow::after,
.home-section .eyebrow::after,
main > .home-section .eyebrow::after,
.section-head--compact .eyebrow::after,
.international-section .eyebrow::after,
.practice-main .eyebrow::after,
.insight-main .eyebrow::after,
.gift-practice-main .eyebrow::after,
.contact-section .eyebrow::after,
.jurisdictions-block .compact-head .eyebrow::after {
  content: none !important;
  display: none !important;
}

/* Contact query box refinement: softer, less boxy form presentation. */
.contact-section .contact-form {
  border-radius: 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.96)) !important;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.62) inset !important;
  overflow: hidden;
}

.contact-section .contact-form::before {
  content: "Send an Enquiry" !important;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(14, 28, 52, 0.1);
}

.contact-section .contact-form label {
  letter-spacing: 0.09em;
}

.contact-section .contact-form input,
.contact-section .contact-form select,
.contact-section .contact-form textarea {
  border-radius: 12px !important;
  border-color: #e1e6ee !important;
  background: #ffffff !important;
  box-shadow: 0 1px 0 rgba(14, 28, 52, 0.03) inset;
}

.contact-section .contact-form textarea {
  border-radius: 14px !important;
}

.contact-section .contact-form .btn,
.contact-section .contact-form .btn-primary {
  border-radius: 999px !important;
  width: auto !important;
  min-width: min(100%, 260px);
  padding-inline: 34px !important;
  justify-self: start;
  box-shadow: 0 16px 34px rgba(14, 28, 52, 0.18) !important;
}

.contact-section .contact-form .btn:hover,
.contact-section .contact-form .btn-primary:hover {
  box-shadow: 0 20px 42px rgba(14, 28, 52, 0.24) !important;
}

@media (max-width: 680px) {
  .contact-section .contact-form {
    border-radius: 18px !important;
  }

  .contact-section .contact-form .btn,
  .contact-section .contact-form .btn-primary {
    width: 100% !important;
    min-width: 0;
  }
}

/* Contact enquiry panel redesign: cleaner, more institutional form treatment. */
.contact-section .contact-form {
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  box-shadow:
    0 26px 72px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(14, 28, 52, 0.04) inset !important;
  padding: clamp(30px, 4vw, 48px) !important;
}

.contact-section .contact-form::before {
  content: "Send an Enquiry" !important;
  display: block;
  margin: 0 0 8px;
  padding: 18px 0 0;
  border-top: 3px solid var(--global-bronze);
  border-bottom: 0;
  color: var(--global-navy);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 2.7vw, 2.65rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.contact-section .contact-form::after {
  content: "Share your details and our team will review the matter with care.";
  display: block;
  order: -1;
  margin: -2px 0 26px;
  color: #667085;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.55;
}

.contact-section .contact-form label {
  color: #192336 !important;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.contact-section .contact-form input,
.contact-section .contact-form select,
.contact-section .contact-form textarea {
  min-height: 54px;
  border-radius: 8px !important;
  border: 1px solid #d8dee8 !important;
  background: #ffffff !important;
  color: #111827 !important;
  box-shadow: none !important;
}

.contact-section .contact-form input::placeholder,
.contact-section .contact-form textarea::placeholder {
  color: #98a2b3 !important;
}

.contact-section .contact-form textarea {
  min-height: 138px;
  border-radius: 10px !important;
}

.contact-section .contact-form input:focus,
.contact-section .contact-form select:focus,
.contact-section .contact-form textarea:focus {
  border-color: #a87548 !important;
  box-shadow: 0 0 0 3px rgba(168, 117, 72, 0.12) !important;
}

.contact-section .contact-form .btn,
.contact-section .contact-form .btn-primary {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 58px;
  border-radius: 8px !important;
  margin-top: 4px;
  background: var(--global-navy) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.contact-section .contact-form .btn:hover,
.contact-section .contact-form .btn-primary:hover {
  transform: translateY(-2px);
  background: #10233f !important;
  box-shadow: 0 18px 38px rgba(14, 28, 52, 0.22) !important;
}

@media (max-width: 680px) {
  .contact-section .contact-form {
    border-radius: 12px !important;
  }
}

/* Final contact enquiry form composition. */
.contact-section .contact-form::before,
.contact-section .contact-form::after {
  content: none !important;
  display: none !important;
}

.contact-section .form-heading {
  padding: 0 0 24px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(14, 28, 52, 0.1);
}

.contact-section .form-heading p {
  margin: 0 0 12px;
  color: #a87548 !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-section .form-heading h3 {
  margin: 0;
  color: var(--global-navy);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 2.9vw, 2.8rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.contact-section .form-heading span {
  display: block;
  max-width: 420px;
  margin-top: 12px;
  color: #667085;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-section .contact-form {
  gap: 16px !important;
}

/* Contact details cleanup: remove boxed outlines around contact information. */
.contact-section .contact-details {
  border-top: 0 !important;
  gap: 18px;
}

.contact-section .contact-details li {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}

/* About section image: use the reception visual at its natural wide ratio so the full image remains visible. */
.expertise-section .about-visual .about-image-frame {
  aspect-ratio: 3 / 2 !important;
}

.expertise-section .about-visual .about-image-frame img {
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
}

/* Revert homepage About section to the earlier editorial layout while keeping the current image. */
.expertise-section {
  background: #ffffff !important;
  border-top: none !important;
}

.expertise-section .about-grid {
  grid-template-columns: minmax(360px, 0.8fr) minmax(460px, 1fr) !important;
  gap: clamp(46px, 8vw, 120px) !important;
  align-items: center !important;
}

.expertise-section .about-copy {
  text-align: left !important;
}

.expertise-section .about-copy h2 {
  max-width: 620px !important;
  font-size: clamp(2.45rem, 4.5vw, 5.35rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.03em !important;
}

.expertise-section .about-copy p:not(.eyebrow) {
  max-width: 620px !important;
  margin-top: 24px !important;
  font-size: 1.02rem !important;
  line-height: 1.78 !important;
  color: #52627c !important;
}

.expertise-section .about-copy .about-lead,
.about-principles,
.about-note {
  display: none !important;
}

.expertise-section .about-visual .about-image-frame {
  border: 1px solid var(--global-line) !important;
  background: var(--global-paper) !important;
  box-shadow: none !important;
}
