/* Yilmaz Akyay Law — styles */

/* Reset & variables */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-padding-top: 56px; }
body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #ddd8d2;
  background: #1a1918;
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 0.7s var(--ease);
}
::selection { background: #8b1a1f; color: #f5f0eb; }

/* Global focus-visible — WCAG 2.4.7 AA */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.ya-btn-p:focus-visible,
.ya-btn-o:focus-visible,
.ya-practice-item:focus-visible { outline-offset: 4px; }

/* Skip-to-content — WCAG 2.4.1 Bypass Blocks */
.ya-skip {
  position: fixed; top: 8px; left: 8px; z-index: 1000;
  padding: 10px 16px;
  background: #1a1918; color: #f2ede8;
  border: 2px solid #c4a35a; border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  transform: translateY(-120%);
  transition: transform 0.2s ease;
}
.ya-skip:focus,
.ya-skip:focus-visible {
  transform: translateY(0);
  outline: 2px solid #c4a35a; outline-offset: 3px;
}

:root {
  --bg: #1a1918;
  --bg2: #201f1d;
  --bg3: #262523;
  --paper: #f2ede8;
  --cream: #ddd8d2;
  --burg: #8b1a1f;
  --burg-h: #a52228;
  --burg-b: #c4282f;
  --gold: #c4a35a;
  --gold-m: #a99050;
  --gold-d: #b08630;
  --stone: #9b9590;
  --stone-l: #b5afa9;
  --mist: rgba(232, 228, 223, 0.13);
  --mist-l: rgba(232, 228, 223, 0.22);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Light section palette — About */
  --light-bg:    #f0ebe4;
  --light-bg2:   #e8e2da;
  --light-text:  #2e2b27;
  --light-text2: #4a4540;
  --light-mute:  #6b6460;
  --light-bdr:   rgba(42, 38, 34, 0.12);
  --light-bdr-s: rgba(42, 38, 34, 0.06);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.ya-band-dark  { background: var(--bg2); }
.ya-band-light { background: var(--light-bg2); padding: 20px 0; }
.ya-band-dark.ya-band-pad { padding: 20px 0; }

/* Animations */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease),
              transform 0.9s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }

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

/* Navigation */

.ya-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.5s var(--ease);
}
.ya-nav.scrolled {
  background: rgba(26, 25, 24, 0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--mist);
}
.ya-nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px; transition: padding 0.5s;
}
.ya-nav.scrolled .ya-nav-inner { padding: 14px 48px; }

.ya-nav-brand {
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--paper); cursor: pointer; text-decoration: none;
  background: none; border: none;
  display: flex; align-items: center; gap: 6px;
  transition: opacity 0.3s;
}
.ya-nav-brand:hover { opacity: 0.75; }
.ya-nav-brand .accent { color: var(--burg-b); }
.ya-nav-brand .dash { color: var(--stone); font-weight: 400; margin: 0 4px; }
.ya-nav-brand .sub { color: var(--stone); font-weight: 400; letter-spacing: 0.14em; }

.ya-nav-links { display: flex; gap: 36px; align-items: center; }

.ya-nav-link {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--stone); background: none; border: none;
  cursor: pointer; transition: color 0.3s; padding: 0;
  position: relative; text-decoration: none;
}
.ya-nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold-d);
  transition: width 0.4s var(--ease);
}
.ya-nav-link:hover { color: var(--paper); }
.ya-nav-link:hover::after,
.ya-nav-link.active::after { width: 100%; }
.ya-nav-link.active { color: var(--paper); }

.ya-nav-cta {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper); background: var(--burg);
  border: none; padding: 13px 28px; cursor: pointer;
  transition: all 0.4s var(--ease);
  text-decoration: none;
}
.ya-nav-cta:hover {
  background: var(--burg-h);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(139, 26, 31, 0.35);
}

/* Mobile burger — 44x44 tap target; visual icon stays 28x20 via inset spans */
.ya-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 0;
  position: relative; z-index: 101; box-sizing: border-box;
}
.ya-burger span {
  display: block; height: 2px; background: var(--paper);
  position: absolute; left: 8px; right: 8px;
  transition: all 0.4s var(--ease);
}
.ya-burger span:nth-child(1) { top: 12px; }
.ya-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.ya-burger span:nth-child(3) { bottom: 12px; }
.ya-burger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.ya-burger.open span:nth-child(2) { opacity: 0; }
.ya-burger.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.ya-mobile-menu {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 99; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; gap: 24px;
  padding: 80px 48px;
  opacity: 0; pointer-events: none; transition: opacity 0.5s;
}
.ya-mobile-menu.open { opacity: 1; pointer-events: all; }
.ya-mobile-menu a {
  font-family: var(--serif); font-size: 44px; font-weight: 700;
  color: var(--cream); text-decoration: none;
  transition: color 0.3s; text-transform: uppercase; letter-spacing: -0.01em;
}
.ya-mobile-menu a:hover { color: var(--gold); }

/* Hero */

.ya-hero {
  min-height: 100vh; position: relative; display: flex;
  align-items: flex-end; background: var(--bg);
  overflow: hidden; padding-bottom: 80px;
}
.ya-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(139, 26, 31, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 15%, rgba(196, 163, 90, 0.09) 0%, transparent 45%);
}
.ya-hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg,
    transparent calc(25% - 0.5px), rgba(255, 255, 255, 0.02) 25%, transparent calc(25% + 0.5px),
    transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.02) 50%, transparent calc(50% + 0.5px),
    transparent calc(75% - 0.5px), rgba(255, 255, 255, 0.02) 75%, transparent calc(75% + 0.5px));
}
.ya-hero-accent-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-d), var(--gold-m), transparent);
  opacity: 0; animation: heroIn 0.6s ease 0.2s forwards;
}
.ya-hero-inner {
  position: relative; z-index: 2; max-width: 1280px;
  margin: 0 auto; padding: 160px 48px 0; width: 100%;
}

.ya-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  opacity: 0; animation: heroIn 0.8s ease 0.35s forwards;
}
.ya-hero-meta-sq {
  width: 10px; height: 10px;
  background: var(--gold-d);
  flex-shrink: 0;
}
.ya-hero-meta-text {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-d);
  white-space: nowrap;
}
.ya-hero-title-wrap {
  opacity: 0; animation: heroIn 1s ease 0.6s forwards;
  margin-bottom: 48px;
}
.ya-hero-title {
  font-family: var(--serif); line-height: 1.0; color: var(--paper);
}
.ya-hero-title .kw {
  font-weight: 700; font-size: clamp(52px, 8vw, 104px);
  letter-spacing: -0.025em; display: inline;
}
.ya-hero-title .fl {
  font-weight: 300; font-style: italic;
  font-size: clamp(44px, 6.5vw, 86px);
  color: var(--cream); display: inline; letter-spacing: -0.015em;
}
.ya-hero-title .row { display: block; margin-bottom: 4px; }
.ya-hero-title .dot { color: var(--gold-d); }

.ya-hero-bottom {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  opacity: 0; animation: heroIn 1s ease 0.9s forwards;
}
.ya-hero-body {
  font-family: var(--sans); font-size: 15px; line-height: 1.8;
  color: var(--cream); max-width: 500px; font-weight: 300;
}
.ya-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }

/* Buttons */
.ya-btn-p {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--burg); color: var(--paper); border: none;
  padding: 17px 38px; cursor: pointer;
  transition: all 0.4s var(--ease);
  text-decoration: none; display: inline-block;
}
.ya-btn-p:hover {
  background: var(--burg-h); transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(139, 26, 31, 0.35);
}
.ya-btn-o {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: none; color: var(--stone-l);
  border: 1px solid var(--mist-l);
  padding: 16px 38px; cursor: pointer;
  transition: all 0.4s var(--ease);
  text-decoration: none; display: inline-block;
}
.ya-btn-o:hover { border-color: var(--gold); color: var(--gold); }

/* Hero contact column */
.ya-hero-contact-col {
  display: flex; flex-direction: column;
  border-left: 1px solid var(--mist-l); padding-left: 48px;
}
.ya-hci { padding: 20px 0; border-bottom: 1px solid var(--mist); }
.ya-hci:last-child { border-bottom: none; }
.ya-hci-l {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 6px;
}
.ya-hci-v {
  font-family: var(--sans); font-size: 15px; font-weight: 400;
  color: var(--paper); line-height: 1.5;
}
.ya-hci-v a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
.ya-hci-v a:hover { color: var(--paper); }

/* Credentials bar */

.ya-cred-bar {
  background: var(--bg3); border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist); position: relative;
}
.ya-cred-bar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-d), transparent);
}
.ya-cred-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.ya-cred-item {
  padding: 32px 48px; border-right: 1px solid var(--mist);
  text-align: center; position: relative;
}
.ya-cred-item:last-child { border-right: none; }
.ya-cred-item-label {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-d); margin-bottom: 8px;
}
.ya-cred-item-value {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  color: var(--paper); letter-spacing: 0.02em;
}
.ya-cred-value-ctry {
  display: flex; justify-content: center; align-items: baseline; gap: 14px;
}
.ya-cred-ctry {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.ya-cred-sep {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold-d);
  opacity: 0.6;
}

/* Sections (shared) */

.ya-sec { padding: 120px 48px; max-width: 1280px; margin: 0 auto; }

.ya-sec-label {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--burg-b); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 12px;
}
.ya-sec-label-sq { width: 10px; height: 10px; background: var(--burg-b); }
.ya-sec-title {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; line-height: 1.05; margin-bottom: 20px;
  color: var(--paper); letter-spacing: -0.02em;
}
.ya-sec-title .ital { font-weight: 300; font-style: italic; color: var(--stone-l); }
.ya-sec-sub {
  font-family: var(--sans); font-size: 15px; line-height: 1.85;
  color: var(--cream); max-width: 580px; font-weight: 300;
}

/* About */

.ya-about-wrap { background: var(--light-bg); }

/* --- About head: editorial intro with portrait --- */
.ya-about-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
  margin-bottom: 72px;
}
.ya-about-head-text .ya-sec-label { margin-bottom: 22px; }
.ya-about-head-text .ya-sec-title { margin-bottom: 24px; }
.ya-about-head-text .ya-sec-sub   { margin-bottom: 32px; }

.ya-about-head-pull {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.5;
  color: var(--light-text2);
  padding: 18px 0 0 28px;
  margin-top: 12px;
  border-top: 1px solid var(--light-bdr);
  max-width: 440px;
}
.ya-about-head-pull-mark {
  position: absolute;
  left: -4px;
  top: 8px;
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
  color: var(--gold-d);
  font-style: normal;
  font-weight: 700;
}

/* --- Portrait --- */
.ya-portrait {
  position: relative;
  margin: 0;
  padding: 0;
  max-width: 440px;
  width: 100%;
  justify-self: start;
}
.ya-portrait-frame {
  position: relative;
  padding: 14px;
}
.ya-portrait-frame::before,
.ya-portrait-frame::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  transition: width 0.6s var(--ease),
              height 0.6s var(--ease);
  pointer-events: none;
}
.ya-portrait-frame::before {
  top: 0; left: 0;
  border-top: 1.5px solid var(--gold-d);
  border-left: 1.5px solid var(--gold-d);
}
.ya-portrait-frame::after {
  bottom: 0; right: 0;
  border-bottom: 1.5px solid var(--gold-d);
  border-right: 1.5px solid var(--gold-d);
}
.ya-portrait:hover .ya-portrait-frame::before,
.ya-portrait:hover .ya-portrait-frame::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
}
.ya-portrait-inner {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #2a2520;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.04) inset,
    0 24px 60px -20px rgba(42, 34, 22, 0.32),
    0 6px 18px -8px rgba(42, 34, 22, 0.24);
}
.ya-portrait-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 58% 35%;
  display: block;
  filter: saturate(0.92) contrast(1.02) brightness(1.01) sepia(0.12);
  transition: transform 1.6s var(--ease),
              filter 0.8s ease;
}
.ya-portrait:hover .ya-portrait-inner img {
  transform: scale(1.03);
  filter: saturate(1) contrast(1.04) brightness(1.02) sepia(0.06);
}
.ya-portrait-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 30%, transparent 55%, rgba(32, 22, 12, 0.22) 100%),
    linear-gradient(180deg, rgba(196, 163, 90, 0.04) 0%, transparent 28%, transparent 70%, rgba(42, 30, 14, 0.18) 100%);
  pointer-events: none;
}
.ya-portrait-grain {
  position: absolute; inset: 0;
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.88  0 0 0 0 0.78  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 140px 140px;
}
.ya-portrait-plate {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: rgba(26, 22, 18, 0.72);
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  border: 1px solid rgba(196, 163, 90, 0.35);
  white-space: nowrap;
}
.ya-portrait-plate-diamond {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.ya-portrait-plate-text {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}
.ya-portrait-cap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-left: 14px;
}
.ya-portrait-cap-line {
  flex: 0 0 32px;
  height: 1px;
  background: var(--gold-d);
  opacity: 0.7;
}
.ya-portrait-cap-text {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--light-mute);
}

.ya-about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 56px; align-items: start;
}
.ya-about-text {
  font-family: var(--sans); font-size: 15px; line-height: 1.9;
  color: var(--stone-l); font-weight: 300;
}
.ya-about-text p { margin-bottom: 20px; }
.ya-about-quote {
  font-family: var(--serif); font-size: 24px; font-weight: 600;
  color: var(--paper); line-height: 1.35;
  padding: 28px 0 28px 24px;
  border-left: 3px solid var(--gold-d); margin: 36px 0;
}
.ya-about-quote em { font-style: italic; font-weight: 300; color: var(--gold); }

.ya-about-block { margin-bottom: 40px; }
.ya-about-block-head {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-d); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--mist-l);
}
.ya-about-item {
  font-family: var(--sans); font-size: 14px; line-height: 1.55;
  color: var(--stone-l); font-weight: 300;
  padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.ya-about-item strong {
  display: block; font-weight: 600; color: var(--paper);
  font-size: 13.5px; margin-bottom: 2px;
}
.ya-about-item small { font-size: 11px; color: var(--stone); }

.ya-lang-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.ya-lang-pill {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  padding: 7px 18px; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--mist-l); color: var(--stone-l);
  background: rgba(255, 255, 255, 0.02);
}

.ya-jur-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.ya-jur-badge {
  position: relative;
  padding: 28px 18px 22px;
  text-align: center;
  background: transparent;
  transition: background 0.45s var(--ease),
              transform 0.45s var(--ease);
}
.ya-jur-badge::before,
.ya-jur-badge::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  transition: width 0.5s var(--ease),
              height 0.5s var(--ease),
              border-color 0.45s ease;
}
.ya-jur-badge::before {
  top: 0; left: 0;
  border-top: 1px solid var(--gold-d);
  border-left: 1px solid var(--gold-d);
}
.ya-jur-badge::after {
  bottom: 0; right: 0;
  border-bottom: 1px solid var(--gold-d);
  border-right: 1px solid var(--gold-d);
}
.ya-jur-badge:hover {
  background: rgba(176, 134, 48, 0.05);
  transform: translateY(-2px);
}
.ya-jur-badge:hover::before,
.ya-jur-badge:hover::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-color: var(--gold);
}

.ya-jur-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  color: var(--gold-d);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  opacity: 0.8;
}
.ya-jur-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.005em;
  color: var(--cream);
  min-height: 2.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.ya-jur-rule {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 12px;
  width: 55%;
  height: 1px;
}
.ya-jur-rule::before,
.ya-jur-rule::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 7px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-d));
  opacity: 0.55;
}
.ya-jur-rule::before { left: 0; }
.ya-jur-rule::after  { right: 0; background: linear-gradient(270deg, transparent, var(--gold-d)); }
.ya-jur-diamond {
  width: 5px; height: 5px;
  background: var(--gold-d);
  transform: rotate(45deg);
  position: relative;
  z-index: 1;
}
.ya-jur-cred {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.ya-jur-status {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--stone);
  margin-top: 10px;
}
.ya-jur-badge.is-active .ya-jur-cred { color: var(--gold-d); }
.ya-jur-badge.is-active .ya-jur-status { color: var(--gold); }

/* Practice areas */

.ya-practice-wrap { background: var(--bg); }
.ya-practice-list { margin-top: 56px; }
.ya-practice-item {
  border-top: 1px solid var(--mist-l); cursor: pointer;
  transition: background 0.4s;
  position: relative; overflow: hidden;
}
.ya-practice-item:last-child { border-bottom: 1px solid var(--mist-l); }
.ya-practice-item:hover { background: rgba(176, 134, 48, 0.03); }
.ya-practice-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--burg);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}
.ya-practice-item:hover::before,
.ya-practice-item.open::before { transform: scaleY(1); }
.ya-practice-head {
  display: grid; grid-template-columns: 56px 1fr 40px;
  align-items: center; padding: 28px 16px; gap: 20px;
}
.ya-practice-num {
  font-family: var(--serif); font-size: 16px; color: var(--gold-d);
  font-weight: 700; font-style: italic;
}
.ya-practice-title {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--cream); transition: color 0.3s;
}
.ya-practice-item:hover .ya-practice-title { color: var(--paper); }
.ya-practice-toggle {
  font-size: 20px; color: var(--stone-l); background: none;
  border: none; cursor: pointer; font-family: var(--sans); font-weight: 300;
  transition: all 0.4s;
  width: 36px; height: 36px; display: flex; align-items: center;
  justify-content: center; border-radius: 50%;
}
.ya-practice-toggle:hover { background: var(--mist); }
.ya-practice-toggle.open { transform: rotate(45deg); color: var(--gold-d); }
.ya-practice-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.55s var(--ease);
}
.ya-practice-body.open { max-height: 800px; }
.ya-practice-body-text {
  padding: 0 16px 28px 76px;
  font-family: var(--sans); font-size: 15px; line-height: 1.85;
  color: var(--cream); font-weight: 300; max-width: 680px;
}

/* Decorative elements */

.ya-gold-line { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.ya-gold-line-inner {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-d) 30%, var(--gold-m) 50%, var(--gold-d) 70%, transparent 100%);
  opacity: 0.4;
}

.ya-deco-div { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.ya-deco-div-inner { display: flex; align-items: center; gap: 20px; }
.ya-deco-div-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--mist-l), transparent); }
.ya-deco-div-line.right { background: linear-gradient(270deg, var(--mist-l), transparent); }
.ya-deco-div-diamond { width: 8px; height: 8px; background: var(--gold-d); transform: rotate(45deg); flex-shrink: 0; }

/* Contact */

.ya-contact-wrap { background: var(--bg2); }
.ya-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 56px;
}
.ya-ci { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; position: relative; }
.ya-ci > div:nth-of-type(1) + div { flex: 1; min-width: 0; }

.ya-ci-copy,
.ya-ci-launch {
  position: relative; flex-shrink: 0;
  margin-left: 8px; margin-top: 22px;
  width: 32px; height: 32px; padding: 0;
  background: none; border: 1px solid transparent;
  color: var(--stone); cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0.35; transition: opacity 0.25s, color 0.25s, border-color 0.25s, background 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.ya-ci:hover .ya-ci-copy,
.ya-ci:hover .ya-ci-launch { opacity: 0.75; }
.ya-ci-copy:hover,
.ya-ci-copy:focus-visible,
.ya-ci-launch:hover,
.ya-ci-launch:focus-visible {
  opacity: 1; color: var(--gold);
  border-color: var(--mist-l); background: rgba(176, 134, 48, 0.06);
  outline: none;
}
.ya-ci-copy svg,
.ya-ci-launch svg { width: 16px; height: 16px; display: block; transition: opacity 0.2s; }
.ya-ci-copy-ok {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); opacity: 0; transition: opacity 0.2s;
  pointer-events: none;
}
.ya-ci-copy.is-copied { opacity: 1; color: var(--gold); border-color: var(--gold-d); }
.ya-ci-copy.is-copied svg { opacity: 0; }
.ya-ci-copy.is-copied .ya-ci-copy-ok { opacity: 1; }
.ya-ci-icon {
  width: 44px; height: 44px; border: 1px solid var(--mist-l);
  background: rgba(176, 134, 48, 0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-d); flex-shrink: 0;
}
.ya-ci-icon svg { width: 20px; height: 20px; display: block; }
.ya-ci-l {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 4px;
}
.ya-ci-v {
  font-family: var(--sans); font-size: 15px; color: var(--paper);
  font-weight: 400; line-height: 1.5;
}
.ya-ci-v a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
.ya-ci-v a:hover { color: var(--paper); }

.ya-contact-cta-panel {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; padding: 48px 40px;
  background: rgba(176, 134, 48, 0.04); border: 1px solid var(--mist-l);
}
.ya-contact-cta-circle {
  width: 64px; height: 64px; border: 2px solid var(--gold-d);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--gold-d); margin-bottom: 24px;
}
.ya-contact-cta-circle svg { width: 28px; height: 28px; display: block; }
.ya-contact-cta-title {
  font-family: var(--serif); font-size: 28px; font-weight: 700;
  color: var(--paper); text-align: center; margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.ya-contact-cta-title .dot { color: var(--gold-d); }
.ya-contact-cta-desc {
  font-family: var(--sans); font-size: 14px; color: var(--stone-l);
  text-align: center; line-height: 1.7; font-weight: 300;
  margin-bottom: 28px; max-width: 320px;
}
.ya-contact-phone-link {
  font-family: var(--sans); font-size: 13px; color: var(--gold);
  margin-top: 16px; text-decoration: none; letter-spacing: 0.08em;
  transition: color 0.3s;
}
.ya-contact-phone-link:hover { color: var(--paper); }

.ya-social-row { display: flex; gap: 12px; margin-top: 36px; }
.ya-social-btn {
  width: 44px; height: 44px; border: 1px solid var(--mist-l);
  background: none; display: flex; align-items: center;
  justify-content: center; font-family: var(--sans);
  font-size: 12px; font-weight: 600; color: var(--stone-l);
  text-decoration: none; transition: all 0.3s;
}
.ya-social-btn:hover {
  background: var(--burg); border-color: var(--burg); color: var(--paper);
}

/* Map */

.ya-map-wrap { position: relative; content-visibility: auto; contain-intrinsic-size: 1px 340px; }
.ya-map-frame {
  width: 100%; height: 340px; border: 0; display: block;
  filter: grayscale(0.6) brightness(0.72) contrast(1.05);
  transition: filter 0.6s;
}
.ya-map-frame:hover { filter: grayscale(0.2) brightness(0.9) contrast(1.0); }
.ya-map-overlay-text {
  position: absolute; bottom: 24px; left: 48px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper); background: var(--bg);
  padding: 10px 20px; border-left: 3px solid var(--gold-d);
  pointer-events: none;
}

/* Footer */

.ya-footer {
  background: var(--bg); padding: 72px 48px 44px;
  content-visibility: auto; contain-intrinsic-size: 1px 380px;
  border-top: 2px solid var(--gold-d);
}
.ya-footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}
.ya-footer-brand {
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--paper); margin-bottom: 12px;
}
.ya-footer-brand .accent { color: var(--burg-b); }
.ya-footer-desc {
  font-family: var(--sans); font-size: 13px; line-height: 1.7;
  color: var(--stone); max-width: 280px; font-weight: 300;
}
.ya-footer-col-head {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 20px;
}
.ya-footer-link {
  display: block; font-family: var(--sans); font-size: 14px;
  color: var(--stone-l); text-decoration: none; margin-bottom: 12px;
  transition: color 0.3s; cursor: pointer; background: none;
  border: none; padding: 0; text-align: left; font-weight: 300;
}
.ya-footer-link:hover { color: var(--gold); }
.ya-footer-bottom {
  max-width: 1280px; margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid var(--mist);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 12px; color: var(--stone);
  flex-wrap: wrap; gap: 12px;
}
.ya-footer-bottom button {
  font-family: var(--sans); font-size: 12px; color: var(--stone);
  background: none; border: none; cursor: pointer;
  text-decoration: underline; transition: color 0.3s; padding: 0;
}
.ya-footer-bottom button:hover { color: var(--gold); }

/* Disclaimer modal */

.ya-modal-bg {
  position: fixed; inset: 0;
  background: rgba(26, 25, 24, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 40px;
}
.ya-modal-bg.open { display: flex; }
.ya-modal-box {
  background: var(--bg3); border: 1px solid var(--mist-l);
  max-width: 680px; width: 100%; max-height: 80vh;
  overflow-y: auto; padding: 52px;
  border-top: 3px solid var(--gold-d);
}
.ya-modal-box h2 {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.05;
  color: var(--paper); margin-bottom: 6px;
}
.ya-modal-box h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  color: var(--gold-d); margin: 28px 0 10px;
}
.ya-modal-box p {
  font-family: var(--sans); font-size: 15px; line-height: 1.85;
  color: var(--stone-l); font-weight: 300; margin-bottom: 14px;
}
.ya-modal-close {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--burg); color: var(--paper); border: none;
  padding: 15px 32px; cursor: pointer; margin-top: 24px;
  transition: background 0.3s;
}
.ya-modal-close:hover { background: var(--burg-h); }

/* Light section overrides (.ya-section-light — About) */

.ya-section-light .ya-sec-title        { color: var(--light-text); }
.ya-section-light .ya-sec-title .ital  { color: var(--light-mute); }
.ya-section-light .ya-sec-sub          { color: var(--light-text2); }
.ya-section-light .ya-sec-label        { color: #6d1519; }
.ya-section-light .ya-sec-label-sq     { background: #6d1519; }
.ya-section-light .ya-about-text       { color: var(--light-text2); }
.ya-section-light .ya-about-quote      { color: var(--light-text); border-left-color: var(--gold-d); }
.ya-section-light .ya-about-quote em   { color: var(--burg); }
.ya-section-light .ya-about-block-head {
  color: var(--burg); border-bottom-color: var(--light-bdr);
}
.ya-section-light .ya-about-item {
  color: var(--light-text2); border-bottom-color: var(--light-bdr-s);
}
.ya-section-light .ya-about-item strong { color: var(--light-text); }
.ya-section-light .ya-about-item small  { color: var(--light-mute); }
.ya-section-light .ya-lang-pill {
  border-color: var(--light-bdr); color: var(--light-text2); background: transparent;
}
.ya-section-light .ya-jur-badge:hover {
  background: rgba(176, 134, 48, 0.07);
}
.ya-section-light .ya-jur-name   { color: var(--light-text); }
.ya-section-light .ya-jur-cred   { color: #8a6520; }
.ya-section-light .ya-jur-status { color: var(--light-mute); }
.ya-section-light .ya-jur-badge.is-active .ya-jur-cred   { color: #6f4e15; }
.ya-section-light .ya-jur-badge.is-active .ya-jur-status { color: #8a6520; }

/* Deco divider inside light zone */
.ya-deco-div-light .ya-deco-div-line {
  background: linear-gradient(90deg, var(--light-bdr), transparent);
}
.ya-deco-div-light .ya-deco-div-line.right {
  background: linear-gradient(270deg, var(--light-bdr), transparent);
}

/* Scroll progress bar */

.ya-progress-bar {
  position: fixed; top: 0; left: 0; z-index: 102;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--burg), var(--gold-d));
  pointer-events: none;
  transition: width 0.08s linear;
}

/* Responsive */

@media (max-width: 900px) {
  .ya-nav-links { display: none; }
  .ya-burger { display: block; }
  .ya-nav-inner { padding: 16px 24px; }
  .ya-nav.scrolled .ya-nav-inner { padding: 12px 24px; }
  .ya-hero-inner { padding: 120px 24px 0; }
  .ya-hero { padding-bottom: 60px; }
  .ya-hero-bottom { grid-template-columns: 1fr; gap: 48px; }
  .ya-hero-contact-col {
    border-left: none; padding-left: 0;
    border-top: 1px solid var(--mist-l); padding-top: 28px;
  }
  .ya-sec { padding: 80px 24px; }
  .ya-about-head { grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
  .ya-portrait { max-width: 380px; margin: 0 auto; justify-self: center; }
  .ya-about-head-pull { max-width: none; }
  .ya-about-grid,
  .ya-contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .ya-practice-head { grid-template-columns: 40px 1fr 36px; padding: 22px 8px; }
  .ya-practice-body-text { padding-left: 48px; }
  .ya-practice-title { font-size: 18px; }
  .ya-footer { padding: 48px 24px 32px; }
  .ya-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ya-footer-bottom { flex-direction: column; text-align: center; }
  .ya-cred-inner { grid-template-columns: repeat(2, 1fr); }
  .ya-cred-item { padding: 24px 20px; }
  .ya-map-overlay-text { left: 24px; }
  .ya-jur-badges { gap: 10px; }
}

@media (max-width: 600px) {
  .ya-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .ya-hero-actions { flex-direction: column; }
  .ya-hero-actions .ya-btn-p,
  .ya-hero-actions .ya-btn-o,
  .ya-contact-cta-panel .ya-btn-p { text-align: center; width: 100%; }
  .ya-hero-title .kw { font-size: clamp(40px, 12vw, 64px); }
  .ya-hero-title .fl { font-size: clamp(34px, 10vw, 52px); }
  .ya-hero-meta {
    flex-wrap: wrap;
    gap: 10px 12px;
  }
  .ya-hero-meta-text { font-size: 10.5px; letter-spacing: 0.16em; }
  .ya-cred-inner { grid-template-columns: 1fr 1fr; }
  .ya-jur-badges { grid-template-columns: 1fr; }
  .ya-jur-name { min-height: 0; }
}
