:root {
  --navy-950: #04152f;
  --navy-900: #06234f;
  --navy-800: #082f6a;
  --blue-700: #0d4b9f;
  --blue-600: #1767ce;
  --blue-100: #dbeafe;
  --blue-50: #eef6ff;
  --ink: #0c1b2d;
  --muted: #5e6c7c;
  --line: #dce5ef;
  --paper: #ffffff;
  --warm: #f7f5f1;
  --red: #c8172d;
  --shadow-sm: 0 14px 34px rgba(4, 34, 76, 0.08);
  --shadow-lg: 0 30px 80px rgba(2, 21, 48, 0.18);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; user-select: none; -webkit-user-drag: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }

::selection { background: var(--blue-100); color: var(--navy-950); }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section { padding: 118px 0; }

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy-900);
  font-weight: 700;
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--blue-700);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light { color: #a9cdfd; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; }

h2 {
  margin-bottom: 0;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: clamp(2.55rem, 5vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .primary-nav a:focus-visible, .brand:focus-visible { outline: 3px solid rgba(70, 155, 255, 0.55); outline-offset: 4px; }

.button-light { background: var(--paper); color: var(--navy-900); box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16); }
.button-light:hover { background: #eaf4ff; }
.button-primary { background: var(--blue-700); color: var(--paper); }
.button-primary:hover { background: var(--navy-900); box-shadow: 0 12px 30px rgba(8, 47, 106, 0.22); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(13, 75, 159, 0.34);
  color: var(--blue-700);
  font-size: 0.84rem;
  font-weight: 800;
  padding-bottom: 3px;
}

.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.light-link { border-color: rgba(255, 255, 255, 0.28); color: var(--paper); }

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--paper);
  transition: background 250ms ease, box-shadow 250ms ease, color 250ms ease, transform 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(4, 25, 56, 0.09);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand img { width: 58px; height: 54px; object-fit: contain; border-radius: 9px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 1.65rem; letter-spacing: 0.08em; }
.brand-copy small { margin-top: 6px; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; gap: 29px; }
.primary-nav a { position: relative; font-size: 0.78rem; font-weight: 700; }
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.primary-nav a:hover::after, .primary-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 18px; border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 100px; }
.site-header.is-scrolled .nav-cta { border-color: var(--line); color: var(--blue-700); }
.nav-cta:hover { background: var(--paper); color: var(--navy-900); }
.site-header.is-scrolled .nav-cta:hover { background: var(--navy-900); color: var(--paper); }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px 0 72px;
  background:
    radial-gradient(circle at 15% 85%, rgba(27, 108, 214, 0.58), transparent 36%),
    linear-gradient(125deg, #03142d 0%, #06285c 55%, #0d56ad 100%);
  color: var(--paper);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.085;
  background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to right, #000, transparent 80%);
}

.hero-orb { position: absolute; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 50%; }
.hero-orb-one { width: 650px; aspect-ratio: 1; right: -250px; top: 40px; }
.hero-orb-two { width: 440px; aspect-ratio: 1; right: -90px; bottom: -290px; }

.hero-layout { position: relative; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.62fr); align-items: center; gap: 72px; }
.hero-copy { position: relative; z-index: 2; max-width: 720px; }
.hero h1 { margin: 0 0 30px; font-family: var(--serif); font-size: clamp(4rem, 7.2vw, 7.5rem); font-weight: 400; letter-spacing: -0.06em; }
.hero h1 em { color: #8fc2ff; font-weight: 400; }
.hero-lead { max-width: 650px; margin-bottom: 36px; color: rgba(255, 255, 255, 0.76); font-size: clamp(1.03rem, 1.5vw, 1.22rem); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 760px;
  margin-top: 74px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}
.trust-row div { display: grid; grid-template-columns: auto 1fr; gap: 12px; padding-right: 24px; }
.trust-row span { color: #78b3ff; font-family: var(--serif); font-size: 0.78rem; }
.trust-row p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 0.72rem; font-weight: 700; line-height: 1.5; }

.hero-visual { position: relative; z-index: 1; width: min(100%, 360px); justify-self: end; isolation: isolate; }
.hero-logo-card { position: relative; z-index: 2; display: grid; width: 100%; aspect-ratio: 1; place-items: center; padding: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.55); border-radius: 30px; background: rgba(255,255,255,.97); box-shadow: 0 38px 90px rgba(1,18,43,.38); color: var(--navy-950); background: #fff url("../images/yael-logo-hd.png") center / 82% auto no-repeat; }
.hero-logo-card::before { content: ""; position: absolute; top: 0; left: 50%; width: 74%; height: 4px; background: linear-gradient(90deg, transparent, var(--blue-600), transparent); transform: translateX(-50%); }
.hero-logo-card img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.logo-orbit { position: absolute; z-index: 1; border: 1px solid rgba(144,195,255,.24); border-radius: 50%; }
.logo-orbit-one { width: 240px; aspect-ratio: 1; top: -54px; right: -74px; }
.logo-orbit-two { width: 160px; aspect-ratio: 1; bottom: -42px; left: -62px; }
.js .hero [data-reveal] { opacity: 1; transform: none; transition: none; }
.scroll-cue { position: absolute; bottom: 28px; left: 34px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.58); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transform: rotate(-90deg); transform-origin: left center; }
.scroll-cue span { width: 36px; height: 1px; background: currentColor; }

/* About */
.intro-section { position: relative; overflow: hidden; background: var(--paper); }
.intro-section::after { content: "§"; position: absolute; right: -30px; bottom: -210px; color: var(--blue-50); font-family: var(--serif); font-size: 480px; line-height: 1; pointer-events: none; }
.split-intro { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr); gap: 100px; }
.display-heading span { color: var(--blue-700); font-style: italic; }
.intro-copy { padding-top: 34px; }
.intro-copy p { color: var(--muted); }
.intro-copy .lead-paragraph { color: var(--ink); font-family: var(--serif); font-size: 1.38rem; line-height: 1.55; }
.intro-copy .text-link { margin-top: 14px; }

/* Expertise */
.expertise-section { background: #f4f7fb; }
.section-heading-row { display: grid; grid-template-columns: 1.2fr .6fr; align-items: end; gap: 80px; margin-bottom: 60px; }
.section-heading-row > p { max-width: 470px; margin: 0 0 6px; color: var(--muted); }
.practice-list { border-top: 1px solid #cdd8e6; }
.practice-item { border-bottom: 1px solid #cdd8e6; }
.practice-item summary { display: grid; grid-template-columns: 54px 1fr 30px; align-items: center; gap: 24px; padding: 29px 8px; cursor: pointer; list-style: none; }
.practice-item summary::-webkit-details-marker { display: none; }
.practice-number { color: var(--blue-700); font-family: var(--serif); font-size: .82rem; }
.practice-item h3 { margin: 0; color: var(--navy-950); font-family: var(--serif); font-size: clamp(1.45rem, 2.6vw, 2.35rem); font-weight: 400; letter-spacing: -.025em; transition: color 180ms ease, transform 180ms ease; }
.practice-item summary:hover h3 { color: var(--blue-700); transform: translateX(5px); }
.practice-toggle { position: relative; width: 28px; height: 28px; border: 1px solid #b8c6d8; border-radius: 50%; }
.practice-toggle::before, .practice-toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--navy-800); transform: translate(-50%, -50%); transition: transform 180ms ease; }
.practice-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.practice-item[open] .practice-toggle { background: var(--navy-800); border-color: var(--navy-800); }
.practice-item[open] .practice-toggle::before, .practice-item[open] .practice-toggle::after { background: white; }
.practice-item[open] .practice-toggle::after { transform: translate(-50%, -50%) rotate(0); }
.practice-body { max-width: 830px; margin: -4px 0 0 78px; padding: 0 0 34px; color: var(--muted); animation: revealBody 200ms ease both; }
.practice-body p:last-child { margin-bottom: 0; }
@keyframes revealBody { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* Team */
.team-section { padding-bottom: 150px; }
.team-heading { align-items: start; }
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px; max-width: 960px; margin-inline: auto; }
.lawyer-card { position: relative; }
.offset-card { transform: translateY(72px); }
.lawyer-image { overflow: hidden; aspect-ratio: .92; border-radius: var(--radius-md); background: var(--blue-50); box-shadow: var(--shadow-sm); }
.lawyer-image.tall-image { aspect-ratio: .92; }
.lawyer-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.83); transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 300ms ease; }
.lawyer-image.tall-image img { object-position: 50% 26%; }
.lawyer-card:hover .lawyer-image img { transform: scale(1.025); filter: saturate(1); }
.lawyer-info { position: relative; max-width: calc(100% - 28px); margin: -42px 0 0 28px; padding: 23px 26px 21px; border-left: 3px solid var(--blue-600); background: var(--paper); box-shadow: var(--shadow-sm); }
.lawyer-info p { margin-bottom: 6px; color: var(--blue-700); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.lawyer-info h3 { margin-bottom: 7px; color: var(--navy-950); font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 2rem); font-weight: 400; }
.lawyer-info span { color: var(--muted); font-size: .86rem; }

/* Experience */
.case-section { overflow: hidden; padding: 110px 0; background: var(--navy-950); color: white; }
.case-layout { display: grid; grid-template-columns: .82fr 1fr; align-items: center; gap: 100px; }
.case-image { position: relative; max-width: 470px; }
.case-image::before { content: ""; position: absolute; z-index: 0; top: -30px; right: -30px; width: 76%; height: 70%; border: 1px solid rgba(111, 175, 255, .38); border-radius: var(--radius-md); }
.case-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: .79; object-fit: cover; object-position: center 30%; border-radius: var(--radius-md); }
.case-image-label { position: absolute; z-index: 2; right: -48px; bottom: 34px; min-width: 250px; padding: 20px 23px; border-radius: var(--radius-sm); background: var(--paper); color: var(--navy-950); box-shadow: var(--shadow-lg); }
.case-image-label span { display: block; margin-bottom: 4px; color: var(--blue-700); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.case-image-label strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.case-copy h2 { margin-bottom: 30px; color: white; font-size: clamp(2.6rem, 4.5vw, 4.5rem); }
.case-copy > p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.68); font-size: 1.02rem; }
.case-principles { display: grid; gap: 20px; margin-top: 44px; }
.case-principles > div { display: grid; grid-template-columns: 34px 1fr; column-gap: 16px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); }
.case-principles span { grid-row: 1 / 3; color: #86bbff; font-family: var(--serif); font-size: .78rem; }
.case-principles strong { font-family: var(--serif); font-size: 1.16rem; font-weight: 400; }
.case-principles p { margin: 3px 0 0; color: rgba(255,255,255,.54); font-size: .82rem; }
.kppu-gallery-wrap { margin-top: 92px; padding-top: 42px; border-top: 1px solid rgba(255,255,255,.13); }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.gallery-heading > div { display: grid; }
.gallery-heading span { color: #87baff; font-size: .64rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.gallery-heading strong { margin-top: 4px; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; }
.gallery-heading p { margin: 0; color: rgba(255,255,255,.5); font-size: .78rem; }
.kppu-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.gallery-item { position: relative; grid-column: span 6; height: 300px; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: #071b38; color: white; cursor: zoom-in; }
.gallery-item:nth-child(1) { grid-column: span 7; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 5; height: 390px; }
.gallery-item:nth-child(4) { grid-column: span 7; height: 390px; }
.gallery-item::after { content: "↗"; position: absolute; top: 16px; right: 16px; display: grid; width: 38px; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: rgba(3,21,47,.54); opacity: 0; transform: translateY(5px); transition: opacity 180ms ease, transform 180ms ease; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 240ms ease; }
.gallery-item:nth-child(4) img { object-position: center 42%; }
.gallery-item > span { position: absolute; z-index: 2; left: 18px; bottom: 16px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 100px; background: rgba(3,21,47,.76); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.gallery-item:hover img, .gallery-item:focus-visible img { filter: brightness(.82); transform: scale(1.035); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; transform: translateY(0); }
.gallery-item:focus-visible { outline: 3px solid #80b8ff; outline-offset: 4px; }

.gallery-lightbox { position: fixed; z-index: 2500; inset: 0; display: grid; place-items: center; padding: 28px; }
.gallery-lightbox[hidden] { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(1,10,24,.9); cursor: zoom-out; backdrop-filter: blur(12px); }
.lightbox-dialog { position: relative; z-index: 1; display: grid; max-width: min(1120px, 94vw); max-height: 92vh; justify-items: center; }
.lightbox-dialog img { max-width: 100%; max-height: 84vh; border-radius: 14px; box-shadow: 0 30px 100px rgba(0,0,0,.5); object-fit: contain; }
.lightbox-dialog p { margin: 13px 0 0; color: rgba(255,255,255,.74); font-size: .78rem; font-weight: 700; }
.lightbox-close { position: absolute; z-index: 2; top: -18px; right: -18px; display: grid; width: 46px; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: var(--paper); color: var(--navy-950); font-family: var(--serif); font-size: 1.8rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow-lg); }
body.lightbox-open { overflow: hidden; }

/* Client */
.client-section { background: var(--warm); }
.client-layout { display: grid; grid-template-columns: 1fr .82fr; align-items: center; gap: 110px; }
.client-layout h2 { margin-bottom: 28px; }
.client-layout > div:first-child > p:last-child { max-width: 600px; color: var(--muted); }
.client-card { position: relative; display: grid; min-height: 410px; place-items: center; padding: 54px; overflow: hidden; border: 1px solid #e3ded4; border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-sm); }
.client-card::before { content: ""; position: absolute; width: 320px; aspect-ratio: 1; border: 1px solid var(--blue-100); border-radius: 50%; }
.client-card::after { content: ""; position: absolute; width: 240px; aspect-ratio: 1; border: 1px solid var(--blue-100); border-radius: 50%; }
.client-label { position: absolute; top: 24px; left: 26px; color: var(--blue-700); font-size: .64rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.client-card img { position: relative; z-index: 1; width: 230px; height: 155px; object-fit: contain; }
.client-card > div { position: relative; z-index: 1; display: grid; margin-top: -26px; text-align: center; }
.client-card strong { color: var(--navy-950); font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.client-card > div span { color: var(--muted); font-size: .72rem; }

/* Insights */
.insights-section { background: var(--paper); }
.article-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; transition: transform 240ms ease, box-shadow 240ms ease; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.article-visual { position: relative; display: block; height: 330px; overflow: hidden; }
.independence-visual { background: linear-gradient(135deg, #b20d22 0 48%, #e52d42 48% 50%, #f8f8f6 50% 100%); }
.flag-mark { position: absolute; top: 36px; right: 42px; width: 92px; height: 60px; border-radius: 7px; box-shadow: 0 14px 35px rgba(0,0,0,.16); overflow: hidden; transform: rotate(4deg); }
.flag-mark i { display: block; width: 100%; height: 50%; }
.flag-mark i:first-child { background: #e3152d; }
.flag-mark i:last-child { background: white; }
.article-year { position: absolute; left: 34px; bottom: -24px; color: rgba(255,255,255,.16); font-family: var(--serif); font-size: 15rem; line-height: 1; letter-spacing: -.1em; }
.article-visual-copy { position: absolute; right: 38px; bottom: 34px; max-width: 230px; color: var(--navy-950); font-family: var(--serif); font-size: 1.2rem; line-height: 1.22; }
.article-visual-copy strong { font-size: 1.8rem; font-weight: 400; }
.privacy-visual { background: linear-gradient(135deg, #08285b, #1268ce); }
.privacy-visual .article-visual-copy { left: 38px; right: auto; color: white; }
.id-card-graphic { position: absolute; top: 50px; right: -12px; width: 295px; height: 175px; padding: 32px 28px 20px 105px; border: 1px solid rgba(255,255,255,.5); border-radius: 16px; background: rgba(255,255,255,.9); box-shadow: 0 24px 55px rgba(0,0,0,.25); transform: rotate(8deg); }
.id-avatar { position: absolute; left: 25px; top: 32px; width: 58px; height: 66px; border-radius: 30px 30px 12px 12px; background: #9ec9f6; }
.id-card-graphic i { display: block; width: 100%; height: 7px; margin-bottom: 10px; border-radius: 5px; background: #c3d5e8; }
.id-card-graphic i:nth-of-type(2) { width: 78%; }
.id-card-graphic i:nth-of-type(3) { width: 58%; }
.id-card-graphic b { position: absolute; left: 25px; bottom: 23px; color: var(--navy-800); font-family: monospace; font-size: .82rem; letter-spacing: .05em; }
.privacy-ring { position: absolute; width: 200px; aspect-ratio: 1; top: -92px; left: -52px; border: 30px solid rgba(255,255,255,.06); border-radius: 50%; }
.fyi-article-card { grid-column: 1 / -1; display: grid; grid-template-columns: .82fr 1.18fr; }
.fyi-article-card .article-visual { height: 100%; min-height: 330px; }
.fyi-article-card .article-content { display: flex; flex-direction: column; justify-content: center; padding: 42px 48px; }
.gambling-visual { background: linear-gradient(135deg, #05295e, #0b5bc0); }
.gambling-visual::after { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px); background-size: 40px 40px; mask-image: linear-gradient(135deg, #000, transparent 75%); }
.gambling-visual .article-visual-copy { z-index: 2; right: auto; left: 38px; color: white; }
.gambling-visual .article-visual-copy small { display: block; margin-bottom: 8px; color: #ffd339; font-family: var(--sans); font-size: .7rem; font-weight: 900; letter-spacing: .18em; }
.gambling-mark { position: absolute; z-index: 2; top: 38px; right: 42px; display: grid; width: 82px; aspect-ratio: 1; place-items: center; border-radius: 50%; background: #ffd339; color: var(--navy-950); font-family: var(--serif); font-size: 3.2rem; box-shadow: 0 18px 40px rgba(0,0,0,.2); }
.gambling-orbit { position: absolute; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.gambling-orbit.orbit-one { width: 230px; aspect-ratio: 1; top: -125px; left: -75px; }
.gambling-orbit.orbit-two { width: 160px; aspect-ratio: 1; right: -45px; bottom: -80px; }
.article-content { padding: 30px 32px 34px; }
.article-meta { margin-bottom: 16px; color: #7c8795; font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.article-meta span { margin-right: 8px; color: var(--blue-700); }
.article-content h3 { margin-bottom: 16px; font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 1.9rem); font-weight: 400; }
.article-content h3 a:hover { color: var(--blue-700); }
.article-content > p:not(.article-meta) { color: var(--muted); font-size: .9rem; }
.article-content .text-link { margin-top: 7px; }

/* Contact */
.contact-section { padding: 120px 0 70px; background: linear-gradient(135deg, #061d41, #082f6c); color: white; }
.contact-layout { display: grid; grid-template-columns: .82fr 1fr; align-items: start; gap: 90px; }
.contact-copy h2 { margin-bottom: 25px; color: white; }
.contact-copy > p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.65); }
.contact-list { display: grid; gap: 2px; margin-top: 48px; }
.contact-list a { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-icon { display: grid; width: 38px; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: #a8ceff; font-family: var(--serif); }
.pin-icon { font-size: .65rem; }
.contact-list span:last-child { display: grid; min-width: 0; }
.contact-list small { color: #91bdf5; font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-list strong { overflow-wrap: anywhere; color: rgba(255,255,255,.88); font-family: var(--serif); font-size: 1rem; font-weight: 400; line-height: 1.45; }
.contact-panel { padding: 42px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-md); background: rgba(255,255,255,.97); box-shadow: var(--shadow-lg); color: var(--ink); }
.contact-panel-kicker { color: var(--blue-700); font-size: .64rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.contact-actions-panel h3 { max-width: 430px; margin: 12px 0 16px; color: var(--navy-950); font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 400; letter-spacing: -.035em; }
.contact-actions-panel > p { color: var(--muted); font-size: .88rem; }
.direct-contact-actions { display: grid; gap: 13px; margin: 30px 0 18px; }
.direct-contact-button { display: grid; grid-template-columns: 48px 1fr 30px; align-items: center; gap: 15px; min-height: 82px; padding: 15px 18px; border: 1px solid var(--line); border-radius: 14px; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.direct-contact-button:hover { border-color: #a8c4e6; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.direct-icon { display: grid; width: 46px; aspect-ratio: 1; place-items: center; border-radius: 50%; color: white; font-family: var(--serif); font-size: .82rem; font-weight: 700; }
.email-button .direct-icon { background: var(--blue-700); }
.whatsapp-button .direct-icon { background: #128c7e; }
.direct-contact-button > span:nth-child(2) { display: grid; }
.direct-contact-button small { color: var(--muted); font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.direct-contact-button strong { color: var(--navy-950); font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.direct-contact-button b { color: var(--blue-700); font-size: 1rem; }
.privacy-note { display: block; color: #788596; font-size: .67rem; }

.map-shell { position: relative; margin-top: 70px; }
.office-map { width: 100%; height: 420px; overflow: hidden; border-radius: var(--radius-md); background: #c7d6e8; box-shadow: 0 20px 50px rgba(0,0,0,.2); }
.map-card { position: absolute; z-index: 500; left: 26px; bottom: 26px; width: min(330px, calc(100% - 52px)); padding: 24px 26px; border-radius: 16px; background: rgba(255,255,255,.96); color: var(--ink); box-shadow: var(--shadow-lg); backdrop-filter: blur(10px); }
.map-card > span { color: var(--blue-700); font-size: .63rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.map-card strong { display: block; margin: 4px 0 7px; color: var(--navy-950); font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.map-card p { margin-bottom: 12px; color: var(--muted); font-size: .77rem; line-height: 1.55; }
.map-card .text-link { font-size: .72rem; }
.map-fallback { display: block; padding: 20px; text-align: center; background: white; color: var(--blue-700); }
.leaflet-control-attribution { font-size: 9px !important; }
.yael-map-marker { border: 0; background: transparent; }
.yael-marker-core { display: grid; width: 38px; height: 38px; place-items: center; border: 4px solid white; border-radius: 50% 50% 50% 8px; background: var(--blue-700); box-shadow: 0 8px 20px rgba(4,30,70,.35); transform: rotate(-45deg); }
.yael-marker-core::after { content: "Y"; color: white; font-family: var(--serif); font-size: 14px; transform: rotate(45deg); }

/* Footer */
.site-footer { padding: 54px 0 26px; background: #031225; color: white; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 58px; height: 54px; object-fit: contain; border-radius: 8px; background: white; }
.footer-brand > span { display: grid; line-height: 1; }
.footer-brand strong { font-family: var(--serif); font-size: 1.7rem; letter-spacing: .08em; }
.footer-brand small { margin-top: 6px; color: rgba(255,255,255,.58); font-size: .61rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; gap: 26px; }
.footer-links a { color: rgba(255,255,255,.63); font-size: .72rem; font-weight: 700; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.4); font-size: .66rem; }
.footer-bottom p:last-child { text-align: right; }

/* Article pages */
.article-page { background: #f7f9fc; }
.article-page .site-header { color: var(--ink); background: rgba(255,255,255,.96); box-shadow: 0 8px 30px rgba(4,25,56,.08); }
.article-page .nav-cta { border-color: var(--line); color: var(--blue-700); }
.article-page-main { padding-top: 88px; }
.article-hero { position: relative; overflow: hidden; padding: 100px 0 88px; background: var(--navy-950); color: white; }
.article-hero.independence-hero { background: linear-gradient(125deg, #8c0a1c, #d21e35 60%, #a90e22); }
.article-hero.privacy-hero { background: linear-gradient(125deg, #04162f, #0a3a7f 60%, #0e5fbd); }
.article-hero.gambling-hero { background: linear-gradient(125deg, #041b40, #0a4da4 62%, #1268ce); }
.article-hero::after { content: ""; position: absolute; width: 520px; aspect-ratio: 1; right: -160px; top: -250px; border: 70px solid rgba(255,255,255,.06); border-radius: 50%; }
.article-hero-inner { position: relative; z-index: 1; max-width: 950px; }
.back-link { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 46px; color: rgba(255,255,255,.75); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-hero h1 { max-width: 930px; margin: 0 0 28px; font-family: var(--serif); font-size: clamp(3rem, 7vw, 6.2rem); font-weight: 400; letter-spacing: -.055em; }
.article-byline { display: flex; align-items: center; gap: 14px; margin: 0; color: rgba(255,255,255,.68); font-size: .78rem; font-weight: 700; }
.author-avatar { display: grid; width: 40px; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-family: var(--serif); font-size: 1rem; }
.article-layout { display: grid; grid-template-columns: 190px minmax(0, 720px); gap: 70px; justify-content: center; padding: 80px 0 120px; }
.share-sidebar { position: sticky; top: 120px; align-self: start; }
.share-sidebar p { margin-bottom: 14px; color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.share-buttons { display: flex; gap: 9px; flex-wrap: wrap; }
.share-button { display: grid; width: 42px; aspect-ratio: 1; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--blue-700); font-size: .7rem; font-weight: 800; cursor: pointer; transition: background 160ms ease, color 160ms ease, transform 160ms ease; }
.share-button:hover { background: var(--blue-700); color: white; transform: translateY(-2px); }
.share-status { margin-top: 12px; color: #0d6e51; font-size: .68rem; }
.article-body { padding: 0 46px 50px; background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.article-body::before { content: ""; display: block; width: 74px; height: 4px; margin-bottom: 46px; background: var(--blue-700); }
.article-body p, .article-body li { color: #3d4d60; font-size: 1.04rem; line-height: 1.88; }
.article-body .article-intro { color: var(--navy-950); font-family: var(--serif); font-size: 1.44rem; line-height: 1.65; }
.article-body h2 { margin: 52px 0 22px; font-size: clamp(2rem, 4vw, 3rem); }
.article-body ul { display: grid; gap: 11px; padding-left: 24px; }
.article-body li::marker { color: var(--blue-700); }
.consequence-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 0 !important; list-style: none; counter-reset: consequence; }
.consequence-grid li { position: relative; min-height: 100px; padding: 20px 20px 20px 62px; border: 1px solid var(--line); border-radius: 14px; background: var(--blue-50); counter-increment: consequence; }
.consequence-grid li::before { content: counter(consequence); position: absolute; top: 22px; left: 20px; display: grid; width: 28px; aspect-ratio: 1; place-items: center; border-radius: 50%; background: #ffd339; color: var(--navy-950); font-size: .76rem; font-weight: 900; }
.law-summary-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.law-summary-card { padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: #f7f9fc; }
.law-summary-card h3 { margin-bottom: 12px; color: var(--blue-700); font-family: var(--sans); font-size: .78rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.law-summary-card p { margin-bottom: 0; font-size: .92rem; line-height: 1.72; }
.article-callout { margin: 42px 0; padding: 30px 32px; border-left: 4px solid var(--blue-700); background: var(--blue-50); color: var(--navy-900); font-family: var(--serif); font-size: 1.25rem; line-height: 1.6; }
.article-closing { margin-top: 42px; padding: 38px; border-radius: 16px; background: var(--navy-950); color: white !important; text-align: center; font-family: var(--serif); font-size: 1.3rem !important; }
.related-reading { padding: 86px 0; background: white; }
.related-reading h2 { margin-bottom: 38px; font-size: clamp(2rem, 4vw, 3.3rem); }
.related-card { display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: 30px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; }
.related-thumb { height: 120px; border-radius: 12px; background: linear-gradient(135deg, var(--navy-900), var(--blue-600)); }
.related-thumb.red { background: linear-gradient(135deg, #a80d21, #ef334a 50%, #fff 50%); }
.related-card span { color: var(--blue-700); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.related-card h3 { margin: 7px 0 0; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.related-card > b { display: grid; width: 45px; aspect-ratio: 1; place-items: center; border-radius: 50%; background: var(--blue-50); color: var(--blue-700); transition: transform 180ms ease; }
.related-card:hover > b { transform: translateX(5px); }

/* Reveal */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); transition-delay: var(--reveal-delay, 0ms); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .primary-nav { gap: 18px; }
  .hero-layout { grid-template-columns: 1fr .6fr; gap: 50px; }
  .hero h1 { font-size: clamp(4rem, 8vw, 6.4rem); }
  .hero-seal { left: -45px; width: 96px; }
  .case-layout, .client-layout, .contact-layout { gap: 58px; }
  .section-heading-row { gap: 44px; }
}

@media (max-width: 860px) {
  .section { padding: 92px 0; }
  .menu-toggle { position: relative; z-index: 1002; display: grid; gap: 5px; width: 44px; height: 44px; place-content: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; background: transparent; color: inherit; cursor: pointer; }
  .site-header.is-scrolled .menu-toggle, .article-page .menu-toggle { border-color: var(--line); }
  .menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  body.menu-open .menu-toggle { border-color: rgba(255,255,255,.32); color: white; }
  .primary-nav { position: fixed; z-index: 1001; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 24px; padding: 90px 11vw; background: var(--navy-950); color: white; opacity: 0; visibility: hidden; transform: translateY(-14px); transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease; }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav a { font-family: var(--serif); font-size: 2.3rem; font-weight: 400; }
  .primary-nav .nav-cta { margin-top: 12px; border-color: rgba(255,255,255,.3); font-family: var(--sans); font-size: .85rem; font-weight: 800; }
  .hero { min-height: auto; padding: 150px 0 90px; }
  .hero-layout { grid-template-columns: 1fr; gap: 68px; }
  .hero-copy { max-width: 680px; }
  .hero-visual { width: min(76%, 430px); justify-self: center; }
  .trust-row { margin-top: 54px; }
  .scroll-cue { display: none; }
  .split-intro, .case-layout, .client-layout, .contact-layout { grid-template-columns: 1fr; gap: 54px; }
  .section-heading-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 45px; }
  .section-heading-row > p { max-width: 620px; }
  .team-grid { gap: 34px; }
  .case-image { width: min(78%, 470px); margin-inline: auto; }
  .case-copy { max-width: 700px; }
  .kppu-gallery { gap: 13px; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item:nth-child(4) { height: 310px; }
  .client-card { min-height: 370px; }
  .contact-copy { max-width: 660px; }
  .article-layout { grid-template-columns: 1fr; gap: 26px; padding-top: 55px; }
  .share-sidebar { position: static; display: flex; align-items: center; gap: 16px; }
  .share-sidebar p { margin: 0; }
  .share-status { margin: 0; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 76px 0; }
  .nav-shell { min-height: 76px; }
  .brand img { width: 47px; height: 44px; }
  .brand-copy strong { font-size: 1.34rem; }
  .brand-copy small { font-size: .53rem; }
  .hero { padding: 126px 0 72px; }
  .hero h1 { font-size: clamp(3.5rem, 16vw, 5.3rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .trust-row { grid-template-columns: 1fr; gap: 14px; }
  .trust-row div { padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-visual { width: 82%; }
  .hero-logo-card { aspect-ratio: 1; padding: 18px; border-radius: 24px; }
  .hero-logo-card img { width: 100%;
  display: none; }
  .split-intro { gap: 34px; }
  .intro-copy { padding-top: 0; }
  .practice-item summary { grid-template-columns: 36px 1fr 28px; gap: 10px; padding: 23px 2px; }
  .practice-number { font-size: .7rem; }
  .practice-body { margin-left: 46px; padding-right: 6px; }
  .practice-body p { font-size: .9rem; }
  .team-section { padding-bottom: 76px; }
  .team-grid { grid-template-columns: 1fr; }
  .offset-card { transform: none; }
  .lawyer-info { margin-left: 18px; }
  .case-section { padding: 80px 0; }
  .case-image { width: calc(100% - 12px); margin-left: 0; }
  .case-image::before { top: -16px; right: -16px; }
  .case-image-label { right: -12px; bottom: 18px; min-width: 218px; padding: 16px 19px; }
  .kppu-gallery-wrap { margin-top: 62px; padding-top: 30px; }
  .gallery-heading { align-items: start; flex-direction: column; gap: 8px; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item:nth-child(4) { grid-column: 1 / -1; height: 270px; }
  .gallery-item:nth-child(3), .gallery-item:nth-child(4) { height: 390px; }
  .gallery-lightbox { padding: 18px; }
  .lightbox-close { top: -14px; right: -8px; width: 42px; }
  .client-card { min-height: 330px; padding: 40px 24px; }
  .article-grid { grid-template-columns: 1fr; }
  .fyi-article-card { grid-column: auto; display: block; }
  .fyi-article-card .article-visual { min-height: 285px; }
  .fyi-article-card .article-content { padding: 26px 24px 30px; }
  .article-visual { height: 285px; }
  .article-content { padding: 26px 24px 30px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-panel { padding: 27px 20px; }
  .office-map { height: 500px; }
  .map-card { left: 16px; bottom: 16px; width: calc(100% - 32px); }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-links { gap: 18px; }
  .footer-bottom p:last-child { text-align: left; }
  .article-page-main { padding-top: 76px; }
  .article-hero { padding: 68px 0 62px; }
  .back-link { margin-bottom: 34px; }
  .article-hero h1 { font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .article-layout { padding-bottom: 76px; }
  .article-body { padding: 0 22px 34px; }
  .article-body::before { margin-bottom: 30px; }
  .article-body p, .article-body li { font-size: .96rem; }
  .article-body .article-intro { font-size: 1.23rem; }
  .consequence-grid, .law-summary-grid { grid-template-columns: 1fr; }
  .article-callout { padding: 24px 22px; }
  .related-card { grid-template-columns: 86px 1fr; gap: 18px; padding: 18px; }
  .related-thumb { height: 90px; }
  .related-card > b { display: none; }
  .related-card h3 { font-size: 1.08rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
