:root {
  --gold: #cda84d;
  --gold-light: #efd17b;
  --gold-dark: #8c6a24;
  --ink: #090a0b;
  --ink-2: #0f1011;
  --ink-3: #151618;
  --ink-4: #1b1c1e;
  --white: #fff;
  --muted: #b8b8b8;
  --muted-2: #858585;
  --line: rgba(205, 168, 77, .32);
  --line-soft: rgba(255, 255, 255, .08);
  --gold-glow: rgba(205, 168, 77, .18);
  --shadow: 0 24px 70px rgba(0, 0, 0, .36);
  --font-display: "Tajawal", sans-serif;
  --font-body: "Tajawal", sans-serif;
  --law-header-offset: 0px;
  --law-section-space: 94px;
  --law-grid-gap: 64px;
  --law-card-gap: 18px;
  --law-nav-link: #fff;
  --law-nav-link-hover: #cda84d;
  --law-header-bg: rgba(8, 9, 10, .96);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  direction: rtl;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.admin-bar .law-header-shell { top: 32px; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }
::selection { color: #111; background: var(--gold-light); }
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #070707; }
::-webkit-scrollbar-thumb { background: #7e642c; border-radius: 10px; }

.section-inner {
  width: min(1360px, calc(100% - 48px));
  margin-inline: auto;
}
.law-section { position: relative; padding: var(--law-section-space) 0; }
.wp-block-group, .wp-block-columns { margin-block-start: 0; margin-block-end: 0; }
.wp-block-columns { gap: var(--law-grid-gap); }
.wp-block-column { min-width: 0; }

/* Header */
.law-header-shell {
  position: fixed;
  top: var(--law-header-offset);
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 8, 9, .88);
  border-bottom: 1px solid rgba(205, 168, 77, .48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}
.law-header-shell.scrolled {
  background: var(--law-header-bg);
  box-shadow: 0 12px 36px rgba(0,0,0,.28);
}
.law-nav {
  min-height: 88px;
  width: min(1360px, calc(100% - 48px));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-inline-end: auto;
  min-width: 300px;
}
.nav-logo-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.nav-logo-icon svg { width: 54px; height: 54px; fill: none; stroke: currentColor; stroke-width: 2; }
.nav-logo-icon .brand-custom-logo { width: 58px; height: 58px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; min-width: 0; }
.site-title { color: var(--gold-light); font-weight: 700; font-size: 1.02rem; white-space: nowrap; }
.site-tagline { color: #d4ba7a; font-family: Georgia, serif; font-size: .82rem; letter-spacing: 1.6px; direction: ltr; text-align: right; }
.law-nav-panel { display: flex; align-items: center; gap: 34px; }
.law-nav-list { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.law-nav-list li { list-style: none; margin: 0; }
.law-nav-list a, .nav-cta-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--law-nav-link);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  white-space: nowrap;
}
.law-nav-list a::after, .nav-cta-link::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.law-nav-list a:hover, .law-nav-list a.is-active, .nav-cta-link:hover { color: var(--law-nav-link-hover); }
.law-nav-list a:hover::after, .law-nav-list a.is-active::after, .nav-cta-link:hover::after { transform: scaleX(1); }
.law-nav-toggle {
  display: none;
  width: 45px; height: 45px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
}
.law-nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--gold); transition: .25s ease; }
.law-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.law-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.law-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
#hero, .hero-shell {
  min-height: 740px;
  padding: 120px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8,9,10,.98) 0%, rgba(8,9,10,.95) 38%, rgba(12,12,12,.78) 65%, rgba(30,24,16,.68) 100%),
    radial-gradient(circle at 77% 38%, rgba(205,168,77,.2), transparent 34%),
    #090a0b;
  border-bottom: 1px solid var(--line);
}
.hero-atmosphere {
  position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image:
    linear-gradient(30deg, transparent 24%, rgba(205,168,77,.04) 25%, rgba(205,168,77,.04) 26%, transparent 27%, transparent 74%, rgba(205,168,77,.04) 75%, rgba(205,168,77,.04) 76%, transparent 77%),
    linear-gradient(150deg, transparent 24%, rgba(205,168,77,.035) 25%, rgba(205,168,77,.035) 26%, transparent 27%, transparent 74%, rgba(205,168,77,.035) 75%, rgba(205,168,77,.035) 76%, transparent 77%);
  background-size: 58px 100px;
  mask-image: linear-gradient(90deg, #000 0%, #000 62%, transparent 100%);
}
.hero-watermark {
  position: absolute;
  left: 3%; top: 17%;
  width: 260px; height: 260px;
  fill: none; stroke: rgba(205,168,77,.08); stroke-width: 2;
  filter: drop-shadow(0 0 25px rgba(205,168,77,.06));
}
.hero-content {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: stretch;
  gap: 18px;
  position: relative;
  z-index: 2;
}
.hero-copy {
  order: 2;
  align-self: center;
  padding: 26px 3vw 56px 0;
  max-width: 720px;
}
.hero-tag {
  color: #c5b081;
  margin: 0 0 15px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .2px;
}
.hero-tag::before { content: ""; display: inline-block; width: 34px; height: 1px; margin-left: 11px; vertical-align: middle; background: var(--gold); }
.hero-title { margin: 0; line-height: 1.23; font-size: clamp(2.9rem, 5vw, 5rem); font-weight: 800; letter-spacing: -.04em; }
.hero-title span { display: block; }
.hero-title-gold { color: var(--gold-light); }
.hero-title-white { color: #fff; margin-top: 6px; }
.hero-desc { max-width: 650px; margin: 25px 0 0; color: #dbdbdb; font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 2; }
.hero-actions { display: flex; gap: 14px; margin-top: 31px; flex-wrap: wrap; }
.law-button-primary, .law-button-secondary {
  min-width: 205px;
  min-height: 58px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  padding: 12px 26px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.law-button-primary { color: #16120b; background: linear-gradient(135deg, #efd17b, #bd8e30); border: 1px solid #efd17b; box-shadow: 0 12px 30px rgba(205,168,77,.16); }
.law-button-secondary { color: var(--gold-light); background: rgba(8,8,8,.35); border: 1px solid rgba(205,168,77,.72); }
.law-button-primary:hover, .law-button-secondary:hover { transform: translateY(-2px); }
.law-button-primary:hover { box-shadow: 0 16px 34px rgba(205,168,77,.24); }
.law-button-secondary:hover { background: rgba(205,168,77,.09); color: #fff; }
.hero-actions svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.hero-trust-note { margin-top: 28px; display: flex; align-items: center; gap: 12px; color: #858585; font-size: .83rem; }
.trust-line { width: 42px; height: 1px; background: rgba(205,168,77,.55); }
.hero-visual {
  order: 1;
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.portrait-halo {
  position: absolute;
  width: 510px; height: 510px;
  right: 50%; bottom: 30px;
  transform: translateX(50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205,168,77,.22) 0%, rgba(205,168,77,.08) 45%, transparent 72%);
  filter: blur(2px);
}
.portrait-frame-lines {
  position: absolute;
  right: 5%; bottom: 0;
  width: 88%; height: 84%;
  border-right: 1px solid rgba(205,168,77,.14);
  border-top: 1px solid rgba(205,168,77,.08);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
}
.hero-lawyer-image {
  position: relative;
  z-index: 2;
  width: min(570px, 100%);
  max-height: 610px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 38px rgba(0,0,0,.46));
  transform: scale(1.16);
  transform-origin: bottom center;
}
.hero-lawyer-caption {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  right: 16px;
  display: flex; align-items: center; gap: 9px;
  max-width: 330px;
  padding: 11px 15px;
  background: rgba(9,10,11,.84);
  border: 1px solid rgba(205,168,77,.35);
  color: #d9cfbb;
  font-size: .8rem;
  backdrop-filter: blur(9px);
}
.caption-mark { color: var(--gold-light); font-size: 1.1rem; }

/* Services strip */
.law-services-strip {
  position: relative;
  background: linear-gradient(180deg, #101113, #0c0d0e);
  border-bottom: 1px solid var(--line);
  padding: 20px 0 26px;
}
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  min-height: 132px;
  display: flex; align-items: center; gap: 17px;
  padding: 20px 20px;
  border: 1px solid rgba(205,168,77,.43);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.025), rgba(205,168,77,.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(239,209,123,.76); background: rgba(205,168,77,.06); }
.service-icon {
  flex: 0 0 62px;
  width: 62px; height: 62px;
  display: grid; place-items: center;
  color: var(--gold-light);
}
.service-icon svg { width: 49px; height: 49px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.service-copy { min-width: 0; }
.service-name { margin: 0 0 7px; color: var(--gold-light); font-size: 1.15rem; font-weight: 700; }
.service-desc { margin: 0; color: #b8b8b8; font-size: .82rem; line-height: 1.8; }

/* General headings */
.section-tag { margin: 0 0 10px; color: var(--gold-light); font-size: .92rem; font-weight: 700; }
.section-tag.is-centered, .section-desc.is-centered { text-align: center; }
.section-title { margin: 0; color: #fff; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.3; font-weight: 800; }
.section-line { width: 48px; height: 2px; margin: 16px 0 22px; background: var(--gold); }
.section-line.is-centered { margin-inline: auto; }
.section-desc { max-width: 760px; color: var(--muted); margin: 16px auto 0; font-size: 1rem; line-height: 1.95; }

/* About */
.law-about { background: linear-gradient(135deg, #101113, #0b0c0d 55%, #11100d); border-bottom: 1px solid var(--line); padding: 48px 0; }
.about-showcase { display: grid; grid-template-columns: .9fr 1.25fr .95fr; align-items: stretch; gap: 28px; }
.about-art {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(205,168,77,.26);
  background:
    radial-gradient(circle at 34% 68%, rgba(205,168,77,.2), transparent 26%),
    linear-gradient(145deg, #151514, #0a0b0c 62%);
}
.about-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(0,0,0,.45)); pointer-events: none; }
.about-custom-image { width: 100%; height: 100%; object-fit: cover; opacity: .72; filter: sepia(.25) saturate(.7); }
.about-art-glow { position: absolute; width: 190px; height: 190px; right: 18%; bottom: 7%; border-radius: 50%; background: rgba(205,168,77,.11); filter: blur(30px); }
.about-scale { position: absolute; z-index: 2; width: 130px; height: 130px; left: 10%; top: 13%; fill: none; stroke: rgba(205,168,77,.25); stroke-width: 1.7; }
.law-books { position: absolute; z-index: 2; right: 9%; bottom: 14%; width: 72%; height: 110px; transform: perspective(500px) rotateY(-8deg); }
.book { position: absolute; right: 0; height: 26px; border: 1px solid rgba(205,168,77,.43); background: linear-gradient(180deg,#2c261a,#151310); box-shadow: 0 10px 20px rgba(0,0,0,.28); }
.book::before, .book::after { content:""; position:absolute; top: 5px; bottom: 5px; width:1px; background:rgba(205,168,77,.36); }
.book::before { right: 18px; } .book::after { right: 25px; }
.book-one { width: 82%; bottom: 0; }
.book-two { width: 70%; bottom: 30px; right: 7%; }
.book-three { width: 60%; bottom: 60px; right: 15%; }
.about-pen { position: absolute; z-index:3; right: 25%; bottom: 17%; width: 150px; height: 5px; background: linear-gradient(90deg,#6b5120,#e1bd66,#5e461a); border-radius: 99px; transform: rotate(-10deg); box-shadow: 0 2px 8px rgba(0,0,0,.5); }
.about-copy { padding: 12px 10px; align-self: center; }
.about-copy .section-title { font-size: clamp(1.65rem, 2.4vw, 2.35rem); }
.about-quote { margin: 0 0 15px; color: #d6bc7d; font-size: 1rem; }
.about-desc { margin: 8px 0; color: #bebebe; font-size: .96rem; line-height: 1.9; }
.about-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 14px; color: var(--gold-light); text-decoration: none; font-weight: 700; }
.about-link:hover { color: #fff; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; border-right: 1px solid rgba(205,168,77,.23); }
.about-stat { min-width: 0; text-align: center; padding: 24px 10px; border-left: 1px solid rgba(205,168,77,.23); }
.about-stat:last-child { border-left: 0; }
.about-stat-icon { color: var(--gold); font-size: 1.6rem; height: 34px; }
.about-stat strong { display: block; margin-top: 8px; color: var(--gold-light); font-size: clamp(1.8rem, 2.5vw, 2.65rem); line-height: 1; direction: ltr; }
.about-stat span { display: block; margin-top: 10px; color: #d4d4d4; font-size: .86rem; }

/* Process */
#process { background: #0b0c0d; border-bottom: 1px solid var(--line-soft); }
.process-steps { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 46px; }
.process-steps::before { content:""; position:absolute; right: 8%; left: 8%; top: 29px; height:1px; background:linear-gradient(90deg,transparent,var(--line),var(--line),transparent); }
.process-step { position: relative; z-index:2; padding: 0 20px; text-align: center; }
.step-circle { width:58px; height:58px; margin:0 auto 20px; display:grid; place-items:center; border-radius:50%; border:1px solid var(--gold); color:var(--gold-light); background:#0b0c0d; font-weight:700; }
.step-title { margin:0 0 8px; font-size:1.12rem; color:#fff; }
.step-desc { margin:0; color:#9d9d9d; font-size:.88rem; line-height:1.9; }

/* Why us */
#why { background: linear-gradient(145deg,#101113,#0b0c0d); border-bottom:1px solid var(--line-soft); }
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.why-list { display:grid; gap:14px; margin-top:28px; }
.why-item { display:flex; gap:14px; align-items:flex-start; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.06); }
.why-check { width:30px; height:30px; flex:0 0 30px; display:grid; place-items:center; margin:0; border:1px solid rgba(205,168,77,.55); color:var(--gold-light); border-radius:50%; }
.why-item-title { margin:0; color:#f4e4ba; font-weight:700; }
.why-item-desc { margin:4px 0 0; color:#9e9e9e; font-size:.88rem; line-height:1.8; }
.why-visual { padding:34px; background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(205,168,77,.025)); border:1px solid rgba(205,168,77,.32); border-radius:9px; box-shadow:var(--shadow); }
.why-visual-title { margin:0 0 28px; color:var(--gold-light); font-size:1.35rem; }
.skill-bar { margin-bottom:22px; }
.skill-label { display:flex; justify-content:space-between; gap:15px; margin-bottom:8px; color:#d6d6d6; font-size:.88rem; }
.skill-track { height:5px; background:#2a2b2d; overflow:hidden; }
.skill-fill { width:0; height:100%; background:linear-gradient(90deg,#8c6a24,#efd17b); transition:width 1.3s ease; }

/* Testimonials */
#testimonials { background:#090a0b; border-bottom:1px solid var(--line-soft); }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:42px; }
.testimonial-card { position:relative; padding:28px; background:#111214; border:1px solid rgba(205,168,77,.23); border-radius:8px; }
.quote-mark { position:absolute; left:20px; top:8px; margin:0; color:rgba(205,168,77,.25); font-family:Georgia,serif; font-size:4.8rem; line-height:1; }
.stars { color:var(--gold); letter-spacing:3px; margin:0 0 15px; font-size:.83rem; }
.testimonial-text { position:relative; z-index:1; margin:0; min-height:96px; color:#c1c1c1; font-size:.92rem; line-height:1.9; }
.testimonial-author { display:flex; gap:12px; align-items:center; margin-top:20px; padding-top:18px; border-top:1px solid rgba(255,255,255,.06); }
.author-avatar { width:42px; height:42px; margin:0; display:grid; place-items:center; border-radius:50%; border:1px solid var(--gold); color:var(--gold-light); background:#1b1914; font-weight:700; }
.author-name { margin:0; color:#fff; font-weight:700; }
.author-role { margin:1px 0 0; color:#858585; font-size:.8rem; }

/* Contact */
#contact { background:linear-gradient(135deg,#12110e,#0b0c0d 60%); border-bottom:1px solid var(--line); }
.contact-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:50px; margin-top:44px; align-items:start; }
.contact-grid > .wp-block-column { flex-basis:auto!important; }
.contact-info-item { display:flex; align-items:flex-start; gap:15px; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.07); }
.info-icon { width:42px; height:42px; flex:0 0 42px; display:grid; place-items:center; border:1px solid rgba(205,168,77,.38); border-radius:6px; color:var(--gold-light); }
.info-icon svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:1.6; }
.info-label { color:#8f8f8f; font-size:.78rem; }
.info-value { color:#e6e6e6; font-size:.96rem; direction:rtl; }
.contact-form { padding:32px; background:rgba(255,255,255,.025); border:1px solid rgba(205,168,77,.3); border-radius:9px; box-shadow:var(--shadow); }
.form-title { margin:0 0 5px; color:var(--gold-light); font-size:1.4rem; }
.contact-form > p { margin:0 0 22px; color:#8e8e8e; font-size:.86rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { margin-bottom:14px; }
.form-group label { display:block; margin-bottom:6px; color:#d8d8d8; font-size:.86rem; }
.form-group input, .form-group select, .form-group textarea {
  width:100%; min-height:48px; padding:11px 13px; color:#fff; background:#0d0e0f; border:1px solid rgba(255,255,255,.11); border-radius:6px; outline:none; transition:border-color .2s ease, box-shadow .2s ease;
}
.form-group textarea { min-height:115px; resize:vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:rgba(205,168,77,.72); box-shadow:0 0 0 3px rgba(205,168,77,.08); }
.form-group select option { background:#111; }
.form-submit { min-height:52px; min-width:170px; padding:10px 24px; border:1px solid var(--gold-light); border-radius:6px; background:linear-gradient(135deg,#efd17b,#b88a31); color:#16110a; font-weight:800; cursor:pointer; }
.form-submit:disabled { opacity:.75; cursor:default; }

/* Footer */
.law-footer { background:#070809; border-top:1px solid rgba(205,168,77,.55); color:#bdbdbd; }
.footer-main { min-height:104px; display:grid; grid-template-columns:1.2fr 2fr auto; align-items:center; gap:30px; }
.footer-brand-mini { display:flex; align-items:center; gap:12px; }
.footer-brand-mini svg { width:46px; height:46px; flex:0 0 46px; fill:none; stroke:var(--gold); stroke-width:2; }
.footer-brand-mini strong { display:block; color:var(--gold-light); font-size:.94rem; }
.footer-brand-mini span { display:block; color:#858585; font-size:.72rem; direction:ltr; text-align:right; }
.footer-contact-row { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:0; }
.footer-contact-item { display:inline-flex; align-items:center; gap:8px; padding:0 18px; min-height:31px; color:#c7c7c7; text-decoration:none; border-left:1px solid rgba(205,168,77,.25); font-size:.83rem; }
.footer-contact-item:last-child { border-left:0; }
.footer-contact-item b { color:var(--gold); font-weight:400; }
a.footer-contact-item:hover { color:var(--gold-light); }
.footer-social { display:flex; gap:9px; }
.footer-social a { width:34px; height:34px; display:grid; place-items:center; border:1px solid rgba(205,168,77,.54); border-radius:50%; color:var(--gold-light); text-decoration:none; font-size:.72rem; }
.footer-social a:hover { background:var(--gold); color:#111; }
.footer-bottom { min-height:48px; display:flex; justify-content:space-between; align-items:center; gap:20px; color:#777; font-size:.74rem; border-top:1px solid rgba(255,255,255,.06); }
.whatsapp-float { position:fixed; left:22px; bottom:22px; z-index:900; width:52px; height:52px; display:grid; place-items:center; border-radius:50%; background:#151515; border:1px solid var(--gold); box-shadow:0 12px 30px rgba(0,0,0,.35); }
.whatsapp-float svg { width:26px; height:26px; fill:var(--gold-light); }
.whatsapp-float:hover { transform:translateY(-3px); background:#1b1913; }

/* Inner WordPress templates */
.law-front-page-content, main:not(.law-front-page-content) { min-height:70vh; }
body:not(.home) .law-front-page-content, body:not(.home) main { padding-top:120px; }
body:not(.home) .entry-content, body:not(.home) .archive-content, body:not(.home) .search-content { width:min(1080px,calc(100% - 48px)); margin:auto; color:#d0d0d0; }
body:not(.home) h1, body:not(.home) h2, body:not(.home) h3 { color:#f0d17b; }

/* Reveal */
.reveal, .reveal-left, .reveal-right { opacity:0; transition:opacity .7s ease, transform .7s ease; }
.reveal { transform:translateY(20px); }
.reveal-left { transform:translateX(-22px); }
.reveal-right { transform:translateX(22px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity:1; transform:none; }

@media (max-width: 1180px) {
  .law-nav { gap:20px; }
  .nav-logo { min-width:250px; }
  .site-title { font-size:.9rem; }
  .law-nav-panel, .law-nav-list { gap:22px; }
  .law-nav-list a, .nav-cta-link { font-size:.87rem; }
  .hero-content { grid-template-columns:1fr 1fr; }
  .hero-lawyer-image { transform:scale(1.08); }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .about-showcase { grid-template-columns:.85fr 1.15fr; }
  .about-stats { grid-column:1 / -1; min-height:130px; border-right:0; border-top:1px solid rgba(205,168,77,.2); }
  .footer-main { grid-template-columns:1fr 1.6fr; }
  .footer-social { grid-column:1 / -1; justify-content:center; padding-bottom:18px; }
}

@media (max-width: 920px) {
  body.admin-bar .law-header-shell { top:46px; }
  .law-nav { min-height:76px; width:min(100% - 28px, 1360px); }
  .nav-logo { min-width:0; margin-inline-end:0; }
  .nav-logo-icon { width:48px; height:48px; flex-basis:48px; }
  .nav-logo-icon svg { width:46px; height:46px; }
  .site-title { font-size:.84rem; }
  .site-tagline { font-size:.66rem; }
  .law-nav-toggle { display:block; margin-inline-start:auto; }
  .law-nav-panel {
    position:absolute; top:76px; right:0; left:0; display:none; padding:16px; background:rgba(8,9,10,.98); border:1px solid var(--line); border-top:0; box-shadow:var(--shadow);
  }
  .law-nav-panel.is-open { display:block; }
  .law-nav-list { display:block; }
  .law-nav-list li { border-bottom:1px solid rgba(255,255,255,.06); }
  .law-nav-list a, .nav-cta-link { width:100%; min-height:48px; padding:0 5px; }
  .nav-cta-link { margin-top:8px; justify-content:center; border:1px solid rgba(205,168,77,.5); border-radius:6px; }
  #hero, .hero-shell { min-height:auto; padding-top:96px; }
  .hero-content { min-height:auto; grid-template-columns:1fr; }
  .hero-copy { order:1; text-align:center; padding:56px 3vw 18px; max-width:none; }
  .hero-tag::before { display:none; }
  .hero-desc { margin-inline:auto; }
  .hero-actions { justify-content:center; }
  .hero-trust-note { justify-content:center; }
  .hero-visual { order:2; min-height:460px; }
  .hero-lawyer-image { max-height:450px; width:auto; transform:scale(1.12); }
  .hero-watermark { left:-60px; top:180px; }
  .hero-lawyer-caption { right:50%; transform:translateX(50%); width:max-content; max-width:90%; }
  .about-showcase { grid-template-columns:1fr; }
  .about-art { min-height:260px; border-left:0; border-bottom:1px solid var(--line); }
  .about-copy { padding:12px 0; }
  .about-stats { grid-column:auto; }
  .process-steps { grid-template-columns:repeat(2,1fr); gap:32px 18px; }
  .process-steps::before { display:none; }
  .why-grid, .contact-grid { grid-template-columns:1fr; gap:38px; }
  .testimonials-grid { grid-template-columns:1fr; }
  .testimonial-text { min-height:0; }
  .footer-main { grid-template-columns:1fr; text-align:center; padding-top:24px; }
  .footer-brand-mini { justify-content:center; }
  .footer-contact-row { flex-direction:column; gap:8px; }
  .footer-contact-item { border-left:0; padding:0 8px; }
  .footer-social { grid-column:auto; padding-bottom:22px; }
}

@media (max-width: 620px) {
  .section-inner { width:min(100% - 28px, 1360px); }
  :root { --law-section-space:72px; }
  .nav-logo-text { max-width:210px; }
  .site-title { overflow:hidden; text-overflow:ellipsis; }
  .hero-copy { padding-inline:0; }
  .hero-title { font-size:clamp(2.25rem,11vw,3.5rem); }
  .hero-desc { font-size:.96rem; line-height:1.9; }
  .hero-actions { display:grid; grid-template-columns:1fr; }
  .law-button-primary, .law-button-secondary { width:100%; min-width:0; }
  .hero-trust-note { font-size:.74rem; }
  .trust-line { display:none; }
  .hero-visual { min-height:390px; }
  .hero-lawyer-image { max-height:395px; transform:scale(1.12); }
  .hero-lawyer-caption { bottom:12px; font-size:.72rem; }
  .services-grid { grid-template-columns:1fr; gap:12px; }
  .service-card { min-height:110px; padding:16px; }
  .service-icon { flex-basis:52px; width:52px; height:52px; }
  .service-icon svg { width:43px; height:43px; }
  .about-stats { grid-template-columns:1fr; }
  .about-stat { border-left:0; border-bottom:1px solid rgba(205,168,77,.19); }
  .about-stat:last-child { border-bottom:0; }
  .process-steps { grid-template-columns:1fr; }
  .why-visual, .contact-form { padding:22px 18px; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .footer-bottom { flex-direction:column; justify-content:center; text-align:center; padding:12px 0; }
  .whatsapp-float { width:48px; height:48px; left:14px; bottom:14px; }
}

@media (max-width: 420px) {
  .nav-logo-icon { width:42px; height:42px; flex-basis:42px; }
  .nav-logo-icon svg { width:40px; height:40px; }
  .nav-logo-text { max-width:175px; }
  .site-title { font-size:.75rem; }
  .site-tagline { font-size:.58rem; }
  .hero-visual { min-height:350px; }
  .hero-lawyer-image { max-height:350px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { transition:none!important; animation:none!important; }
  .reveal, .reveal-left, .reveal-right { opacity:1; transform:none; }
}

.law-form-notice { margin: 0 0 18px; padding: 12px 14px; border-radius: 6px; font-size: .88rem; }
.law-form-notice.is-success { color: #d9f3dd; background: rgba(38, 126, 63, .17); border: 1px solid rgba(80, 176, 106, .42); }
.law-form-notice.is-error { color: #ffd9d9; background: rgba(153, 45, 45, .15); border: 1px solid rgba(213, 89, 89, .38); }
