:root {
  --color-navy: #0B162C;
  --color-navy-deep: #08111F;
  --color-gold: #C5A059;
  --color-gold-hover: #d2ae69;
  --color-ivory: #F8F9FA;
  --color-gray: #D1D1D1;
  --text-dark: #0B162C;
  --text-muted: rgba(11, 22, 44, 0.72);
  --border-gold: rgba(197, 160, 89, 0.28);
  --border-soft: rgba(11, 22, 44, 0.1);
  --font-body: "Montserrat", Arial, sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;
  --navbar-height: 100px;
  --logo-height: 75px;
  --container-max: 1200px;
  --section-y: clamp(80px, 8vw, 100px);
  --radius-sm: 4px;
  --radius-md: 6px;
  --transition: 0.3s ease;
}

/* Header logo review options. Swap the class on <html> to preview A, B, C, or D. */
html.header-logo-option-a {
  --navbar-height: 80px;
  --logo-height: 55px;
}

html.header-logo-option-b {
  --navbar-height: 90px;
  --logo-height: 65px;
}

html.header-logo-option-c {
  --navbar-height: 100px;
  --logo-height: 75px;
}

html.header-logo-option-d {
  --navbar-height: 110px;
  --logo-height: 85px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-ivory);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.rtl {
  direction: rtl;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

section {
  scroll-margin-top: 110px;
}

.container {
  width: min(var(--container-max), calc(100% - 4rem));
  margin: 0 auto;
}

.section-header,
.practice-areas-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header h2,
.practice-areas-header h2,
.section-title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
}

.section-header p,
.practice-areas-header p {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.btn,
.navbar-login-btn,
.practice-areas-cta,
.final-cta-button,
.location-btn,
.contact-submit,
.blog-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 14px 24px;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  background: var(--color-gold);
  color: var(--color-navy) !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(3, 8, 19, 0.16);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover,
.navbar-login-btn:hover,
.practice-areas-cta:hover,
.final-cta-button:hover,
.location-btn:hover,
.contact-submit:hover,
.blog-read-more:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: var(--color-navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(3, 8, 19, 0.2);
}

.btn:focus-visible,
.navbar-login-btn:focus-visible,
.practice-areas-cta:focus-visible,
.final-cta-button:focus-visible,
.location-btn:focus-visible,
.contact-submit:focus-visible,
.blog-read-more:focus-visible,
.nav-links a:focus-visible,
.nav-phone:focus-visible,
.footer a:focus-visible,
.whatsapp-btn:focus-visible,
.top-bt:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

.my-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform var(--transition);
}

.btn:hover .my-icon {
  transform: translateX(3px);
}

/* Header */
.headnav {
  position: sticky;
  top: 0;
  z-index: 1200;
}

section.navbar {
  height: var(--navbar-height);
  padding: 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.16);
  background: rgba(8, 17, 31, 0.97);
  box-shadow: 0 12px 34px rgba(3, 8, 19, 0.12);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

section.navbar.scrolled {
  background: rgba(8, 17, 31, 0.99);
  border-bottom-color: rgba(197, 160, 89, 0.26);
  box-shadow: 0 16px 38px rgba(3, 8, 19, 0.18);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 0 18px;
  gap: 22px;
}

.logo {
  display: flex;
  flex: 0 0 auto;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.logo-image {
  flex: 0 0 auto;
  height: var(--logo-height);
  min-height: var(--logo-height);
  width: auto;
  max-width: none;
  max-height: var(--logo-height);
  object-fit: contain;
}

.nav {
  display: flex;
  flex: 1;
  min-width: 0;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-ivory);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

.nav-links li a {
  position: relative;
  color: rgba(248, 249, 250, 0.86);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: color var(--transition);
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--color-gold);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  transform: scaleX(1);
}

.lang-switch {
  min-height: 34px;
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(248, 249, 250, 0.06);
  color: var(--color-ivory);
  padding: 0 8px;
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  align-self: center;
  gap: 16px;
  margin-left: 8px;
}

.nav-phone {
  color: var(--color-ivory);
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-phone:hover {
  color: var(--color-gold);
}

.navbar-login-btn {
  flex: 0 0 auto;
  min-width: 188px;
  height: 44px;
  min-height: 44px;
  padding: 0 22px;
  white-space: nowrap;
}

/* Hero */
.home {
  position: relative;
  display: flex;
  min-height: 90vh;
  align-items: center;
  padding: calc(var(--navbar-height) + 20px) 0 4.5rem;
  overflow: hidden;
  background-color: var(--color-navy);
  background-image: url("../../imgs/dc-location.jpg");
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-ivory);
}

.home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 44, 0.75);
}

.home .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  border-left: 1px solid rgba(197, 160, 89, 0.42);
}

.hero-intro {
  margin-bottom: 1.25rem;
}

.hero-firm {
  margin: 0;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
}

.hero-kicker {
  margin: 0.35rem 0 0;
  color: rgba(248, 249, 250, 0.76);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-headline {
  max-width: 820px;
  margin: 0;
  color: var(--color-ivory);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  font-weight: 700;
  line-height: 0.98;
}

.hero-description {
  max-width: 620px;
  margin: 1.4rem 0 1.9rem;
  color: rgba(248, 249, 250, 0.82);
  font-size: 1.08rem;
  line-height: 1.85;
}

/* Attorney */
.attorney-section {
  padding: var(--section-y) 0;
  background: #ffffff;
}

.attorney-shell {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.attorney-media {
  position: relative;
}

.attorney-media::before {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 22px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
}

.attorney-portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 22px 50px rgba(11, 22, 44, 0.16);
}

.attorney-label,
.blog-kicker {
  position: relative;
  display: inline-block;
  margin: 0 0 16px;
  padding-bottom: 10px;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.attorney-label::after,
.blog-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 2px;
  background: var(--color-gold);
}

.attorney-name {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.05;
}

.attorney-role,
.attorney-credentials {
  margin: 0.8rem 0 0;
  color: var(--color-gold);
  font-weight: 700;
}

.attorney-credentials {
  color: rgba(11, 22, 44, 0.62);
}

.attorney-bio {
  margin-top: 1.7rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.attorney-bio p {
  margin: 0 0 1rem;
}

/* About */
.about-section {
  padding: var(--section-y) 0;
  background: #F4F5F7;
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
}

.about-title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 1;
}

.about-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 22px;
  background: var(--color-gold);
}

.about-lede {
  margin: 1.5rem 0 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-content {
  display: grid;
  gap: 2rem;
}

.about-block {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.24);
}

.about-block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.about-block h3 {
  margin: 0 0 0.8rem;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.about-block p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.85;
}

/* Practice Areas */
.practice-areas-section {
  padding: var(--section-y) 0;
  background: #ffffff;
}

.practice-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.practice-area-card {
  min-height: 150px;
  padding: 28px;
  border: 1px solid rgba(11, 22, 44, 0.1);
  border-radius: var(--radius-md);
  background: #F4F5F7;
  outline: none;
  transition: all 0.35s ease;
}

.practice-area-card:hover,
.practice-area-card:focus {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.2;
}

.card-description {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.practice-area-card:hover .card-description,
.practice-area-card:focus .card-description {
  max-height: 180px;
  margin-top: 1rem;
  opacity: 1;
  transform: translateY(0);
}

.practice-area-card-featured {
  grid-column: 1 / -1;
  border: 1px solid rgba(197, 160, 89, 0.3);
  text-align: center;
}

.practice-area-card:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.practice-areas-cta {
  margin-top: 40px;
}

/* Process and CTA */
.process-section {
  padding: var(--section-y) 0;
  background: #F4F5F7;
}

.process-shell,
.final-cta-shell,
.contact-shell {
  width: min(var(--container-max), calc(100% - 4rem));
  margin: 0 auto;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  min-height: 150px;
  padding: 26px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.process-number {
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-step-title {
  margin: 1rem 0 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.25;
}

.final-cta {
  padding: var(--section-y) 0;
  background: var(--color-navy);
  color: var(--color-ivory);
  text-align: center;
}

.final-cta h2 {
  max-width: 880px;
  margin: 0 auto;
  color: var(--color-ivory);
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.8vw, 4.25rem);
  line-height: 1.06;
}

.final-cta p {
  max-width: 680px;
  margin: 1.25rem auto 2rem;
  color: rgba(248, 249, 250, 0.78);
  font-size: 1.05rem;
}

/* Gallery */
.gallery-section {
  padding: var(--section-y) 0;
  background: #ffffff;
}

.gallery-slider-container {
  width: min(980px, 100%);
  margin: 0 auto;
}

.gallery-slide {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(11, 22, 44, 0.14);
}

.gallery-swiper .swiper-wrapper {
  transition-timing-function: ease-in-out;
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  transition: all 0.35s ease;
}

.gallery-slide img:hover {
  transform: scale(1.05);
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(248, 249, 250, 0.94);
  color: var(--color-navy);
  box-shadow: 0 12px 30px rgba(11, 22, 44, 0.12);
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 700;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
  background: var(--color-gold);
}

/* Location */
#location.location-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  color: var(--color-ivory);
  background:
    linear-gradient(rgba(11, 22, 44, 0.75), rgba(11, 22, 44, 0.75)),
    url("../../imgs/dc-location.jpg") no-repeat;
  background-size: cover;
  background-position: center 25%;
}

.location-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#location .location-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

#location .location-card {
  width: 100%;
  max-width: 420px;
  padding: 36px;
  border: 1px solid rgba(197, 160, 89, 0.24);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-navy);
  text-align: left;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

#location .location-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.15;
}

#location .location-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.location-btn {
  margin-top: 18px;
}

/* Contact */
.contact-section {
  padding: var(--section-y) 0;
  background: #F4F5F7;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.contact-copy h2 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.contact-intro {
  margin: 1rem 0 0;
  color: var(--text-muted);
}

.contact-details {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 160, 89, 0.32);
}

.contact-address {
  margin: 0 0 1.25rem;
  font-style: normal;
}

.contact-address p,
.contact-details p {
  margin: 0 0 0.6rem;
  color: var(--color-navy);
  line-height: 1.75;
}

.contact-details strong {
  color: var(--color-navy);
}

.contact-details a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-details a:hover {
  color: var(--color-gold);
}

.contact-form-panel {
  padding-top: 0.35rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.contact-section label {
  color: rgba(11, 22, 44, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(11, 22, 44, 0.14);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--color-navy);
  font-size: 0.98rem;
  line-height: 1.6;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-section textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: rgba(11, 22, 44, 0.46);
}

.contact-section input:focus,
.contact-section textarea:focus {
  outline: none;
  border-color: rgba(197, 160, 89, 0.7);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.12);
}

.contact-submit {
  margin-top: 1.5rem;
}

#response-msg {
  margin-top: 1rem;
  color: var(--color-navy);
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(197, 160, 89, 0.22);
  background: var(--color-navy);
  color: var(--color-ivory);
  text-align: left;
}

.footer-container {
  width: min(var(--container-max), calc(100% - 4rem));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.18);
}

.footer-column h4,
.footer-firm {
  margin: 0 0 14px;
  color: var(--color-ivory);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

.footer-firm {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.footer-column h4 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: var(--color-gold);
}

.footer-tagline,
.footer-contact address,
.footer-legal p,
.footer-bottom p {
  margin: 0;
  color: rgba(248, 249, 250, 0.78);
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-contact address {
  margin-bottom: 12px;
  font-style: normal;
}

.footer a {
  color: var(--color-gold);
  text-decoration: none;
}

.footer a:hover {
  color: var(--color-gold-hover);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 26px;
}

.footer-dev {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

/* Floating controls */
.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 50px;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  background: var(--color-gold-hover);
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.top-bt {
  position: fixed;
  right: 20px;
  bottom: 82px;
  z-index: 998;
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: var(--radius-sm);
  background: rgba(8, 17, 31, 0.92);
  color: var(--color-gold);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(3, 8, 19, 0.2);
}

.top-bt:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

/* Blog */
.blog-page,
.blog-page main {
  background: #F7F8FA;
  color: var(--color-navy);
}

.blog-hero {
  padding: clamp(5rem, 8vw, 6.25rem) 0 clamp(3.5rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(11, 22, 44, 0.08);
  background:
    linear-gradient(135deg, rgba(248, 249, 250, 0.98), rgba(245, 246, 248, 0.94)),
    url("../../imgs/hero-1.png") center/cover no-repeat;
}

.blog-hero-shell,
.blog-shell {
  width: min(var(--container-max), calc(100% - 4rem));
  margin: 0 auto;
}

.blog-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.98;
}

.blog-hero p:not(.blog-kicker) {
  max-width: 700px;
  margin: 1.35rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.8;
}

.blog-section {
  padding: var(--section-y) 0;
  background: #F7F8FA;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(11, 22, 44, 0.08);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(11, 22, 44, 0.04);
  scroll-margin-top: 120px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.blog-card h2 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1.2;
}

.blog-card p {
  margin: 1rem 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.blog-read-more {
  width: fit-content;
  margin-top: auto;
}

/* RTL */
body.rtl .hero-content {
  padding-right: clamp(1.25rem, 3vw, 2rem);
  padding-left: 0;
  border-right: 1px solid rgba(197, 160, 89, 0.42);
  border-left: none;
}

body.rtl .attorney-label::after,
body.rtl .blog-kicker::after,
body.rtl .footer-column h4::after {
  right: 0;
  left: auto;
}

body.rtl #location .location-card,
body.rtl .contact-copy,
body.rtl #contact-form,
body.rtl .footer,
body.rtl .blog-hero,
body.rtl .blog-card {
  text-align: right;
}
