/* ═══════════════════════════════════════════
   BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #0a0f1e; }


/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
:root {
  --navy: #0a0f1e;
  --off-white: #f5f0e8;
  --gold: #c9a96e;
  --nav-height: 72px;
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

#rmh-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

#rmh-nav.scrolled {
  background: var(--navy);
  box-shadow: 0 1px 0 rgba(201,169,110,0.15), 0 4px 24px rgba(0,0,0,0.45);
}

.rmh-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.rmh-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}

.rmh-logo-wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--off-white);
  white-space: nowrap;
  line-height: 1;
}

.rmh-logo-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  line-height: 1;
}

.rmh-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 36px;
}

.rmh-nav-links > li { position: relative; }

.rmh-nav-links > li > a,
.rmh-nav-links > li > button {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition-base);
  white-space: nowrap;
}

.rmh-nav-links > li > a::after,
.rmh-nav-links > li > button::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.rmh-nav-links > li:hover > a::after,
.rmh-nav-links > li:hover > button::after { width: 100%; }
.rmh-nav-links > li:hover > a,
.rmh-nav-links > li:hover > button { color: var(--gold); }

.rmh-nav-links > li > button .rmh-chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.rmh-nav-links > li.open > button .rmh-chevron {
  transform: rotate(225deg) translateY(-1px);
}

.rmh-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--navy);
  border-top: 1px solid var(--gold);
  list-style: none;
  padding: 12px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  transform: translateX(-50%) translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
}

.rmh-nav-links > li:hover .rmh-dropdown,
.rmh-nav-links > li.open .rmh-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.rmh-dropdown li a {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  padding: 10px 24px;
  transition: color var(--transition-base), background var(--transition-base), padding-left 180ms ease;
  white-space: nowrap;
}

.rmh-dropdown li a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.03);
  padding-left: 30px;
}

.rmh-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
  flex-shrink: 0;
}

.rmh-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--off-white);
  transition: transform 300ms ease, opacity 300ms ease, width 300ms ease;
  transform-origin: center;
}

.rmh-hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.rmh-hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.rmh-hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.rmh-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1050;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 48px 48px;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 350ms ease, transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.rmh-mobile-overlay.active { opacity: 1; transform: translateX(0); }

.rmh-mobile-links { list-style: none; width: 100%; }
.rmh-mobile-links > li { border-bottom: 1px solid rgba(245,240,232,0.08); }

.rmh-mobile-links > li > a,
.rmh-mobile-links > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--off-white);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  text-align: left;
  transition: color var(--transition-base);
}

.rmh-mobile-links > li > a:hover,
.rmh-mobile-links > li > button:hover { color: var(--gold); }

.rmh-mobile-chevron {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 250ms ease;
  flex-shrink: 0;
}

.rmh-mobile-links > li.open > button .rmh-mobile-chevron { transform: rotate(225deg); }

.rmh-mobile-sub {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.rmh-mobile-links > li.open .rmh-mobile-sub { max-height: 400px; }

.rmh-mobile-sub li a {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
  text-decoration: none;
  padding: 12px 0 12px 16px;
  border-left: 1px solid var(--gold);
  margin-bottom: 2px;
  transition: color var(--transition-base);
}

.rmh-mobile-sub li a:hover { color: var(--gold); }

.rmh-mobile-footer {
  margin-top: 48px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
}

@media (max-width: 767px) {
  .rmh-nav-links { display: none; }
  .rmh-hamburger { display: flex; }
  .rmh-mobile-overlay { display: flex; }
  .rmh-nav-inner { padding: 0 24px; }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .rmh-nav-links { gap: 24px; }
  .rmh-nav-inner { padding: 0 28px; }
}


/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.rmh-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background:
    linear-gradient(180deg,
      rgba(4,7,15,0.82) 0%,
      rgba(7,12,24,0.68) 25%,
      rgba(9,16,31,0.55) 50%,
      rgba(8,14,28,0.72) 75%,
      rgba(6,10,20,0.92) 100%
    ),
    url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1920&q=85&fit=crop') center center / cover no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.rmh-stars { display: none; }
.rmh-skyline-wrap { display: none; }

.rmh-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(to top, rgba(4,7,15,0.85) 0%, rgba(4,7,15,0.4) 60%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.rmh-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 10vh 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.rmh-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  opacity: 0;
  animation: rmh-fadein 1.2s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.rmh-eyebrow-line { width: 48px; height: 1px; background: rgba(245, 240, 232, 0.35); }
.rmh-eyebrow-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  font-weight: 400;
}

.rmh-firm-name {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(36px, 6.5vw, 88px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5f0e8;
  line-height: 1.08;
  opacity: 0;
  animation: rmh-fadein-up 1.6s 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  text-shadow: 0 0 80px rgba(245, 240, 232, 0.08), 0 2px 40px rgba(0,0,0,0.6);
}
.rmh-firm-name .amp { font-style: italic; font-weight: 400; letter-spacing: 0.06em; opacity: 0.85; }

.rmh-hero-sub {
  margin-top: 14px;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(10px, 1.2vw, 13px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  font-weight: 400;
  opacity: 0;
  animation: rmh-fadein 1.4s 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.rmh-hero-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(245, 240, 232, 0.3) 40%, rgba(245, 240, 232, 0.3) 60%, transparent);
  margin: 22px auto 20px;
  opacity: 0;
  animation: rmh-fadein 1.2s 1.5s ease forwards;
}

.rmh-cta {
  display: inline-block;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(12px, 1.3vw, 15px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f5f0e8;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  opacity: 0;
  animation: rmh-fadein 1.2s 1.8s ease forwards;
}
.rmh-cta:hover { border-bottom-color: rgba(245, 240, 232, 0.55); color: #fff; }
.rmh-cta .arrow { display: inline-block; margin-left: 6px; transition: transform 0.3s ease; font-style: normal; }
.rmh-cta:hover .arrow { transform: translateX(4px); }

.rmh-bottom-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(245, 240, 232, 0.18) 20%, rgba(245, 240, 232, 0.22) 50%, rgba(245, 240, 232, 0.18) 80%, transparent 100%);
  z-index: 20;
}

.rmh-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: rmh-fadein 1s 2.4s ease forwards;
}
.rmh-scroll-hint-label {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.28);
}
.rmh-scroll-mouse {
  width: 18px;
  height: 28px;
  border: 1px solid rgba(245, 240, 232, 0.22);
  border-radius: 9px;
  position: relative;
  overflow: hidden;
}
.rmh-scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 6px;
  background: rgba(245, 240, 232, 0.4);
  border-radius: 1px;
  animation: rmh-scroll-dot 2s 2.5s ease-in-out infinite;
}
@keyframes rmh-scroll-dot {
  0% { top: 5px; opacity: 1; }
  80% { top: 14px; opacity: 0; }
  100% { top: 5px; opacity: 0; }
}

@keyframes rmh-fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes rmh-fadein-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 600px) {
  .rmh-firm-name { letter-spacing: 0.1em; }
  .rmh-eyebrow-line { width: 28px; }
}


/* ═══════════════════════════════════════════
   ABOUT / FIRM IDENTITY
═══════════════════════════════════════════ */
.rmh-about {
  --navy: #0a0f1e;
  --gold: #c9a96e;
  --white: #ffffff;
  --body-font: 'Inter', system-ui, sans-serif;
  --serif-font: 'Playfair Display', Georgia, serif;
  font-family: var(--body-font);
  background: var(--white);
}

.rmh-identity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 80vh;
  align-items: stretch;
}

.rmh-identity__left {
  background: var(--white);
  padding: 96px 64px 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #e8e4dc;
}

.rmh-identity__headline {
  font-family: var(--serif-font);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 32px 0;
  letter-spacing: -0.02em;
}

.rmh-identity__headline em { font-style: italic; color: var(--navy); }

.rmh-identity__rule {
  width: 64px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 0;
  display: block;
}

.rmh-identity__right {
  background: var(--white);
  padding: 96px 80px 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rmh-identity__body p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.8;
  color: #2c2c3a;
  margin: 0 0 24px 0;
  font-weight: 400;
}

.rmh-identity__body p:last-child { margin-bottom: 0; }
.rmh-identity__body strong { font-weight: 500; color: var(--navy); }

.rmh-stats {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.rmh-stat {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}

.rmh-stat + .rmh-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: rgba(201, 169, 110, 0.25);
}

.rmh-stat__number {
  font-family: var(--serif-font);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.rmh-stat__label {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.5;
  max-width: 180px;
}

@media (max-width: 768px) {
  .rmh-identity { grid-template-columns: 1fr; min-height: auto; }
  .rmh-identity__left { padding: 64px 32px 48px; border-right: none; border-bottom: 1px solid #e8e4dc; }
  .rmh-identity__right { padding: 48px 32px 64px; }
  .rmh-stats { grid-template-columns: 1fr; }
  .rmh-stat { padding: 48px 32px; }
  .rmh-stat + .rmh-stat::before { top: 0; bottom: auto; left: 32px; right: 32px; width: auto; height: 1px; }
}


/* ═══════════════════════════════════════════
   PRACTICE AREAS
═══════════════════════════════════════════ */
.rmh-practice-areas {
  background-color: #f5f0e8;
  padding: 96px 64px 80px;
  font-family: 'Inter', sans-serif;
}

.rmh-practice-areas__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #0a0f1e;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 56px 0;
}

.rmh-practice-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.rmh-pa-card {
  background-color: #f5f0e8;
  border-left: 2px solid #c9a96e;
  padding: 32px 28px 28px;
  transition: background-color 0.2s ease, border-left-width 0.2s ease, padding-left 0.2s ease;
  cursor: default;
}

.rmh-pa-card:hover {
  background-color: #ede8df;
  border-left-width: 4px;
  padding-left: 26px;
}

.rmh-pa-card__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a0f1e;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 14px 0;
}

.rmh-pa-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: #3a3a3a;
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.rmh-pa-card__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #c9a96e;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
  transition: letter-spacing 0.2s ease;
}

.rmh-pa-card__link:hover { letter-spacing: 0.08em; }

.rmh-practice-areas__banner {
  margin-top: 80px;
  background-color: #0a0f1e;
  padding: 64px 48px;
  text-align: center;
}

.rmh-practice-areas__banner-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0;
  font-style: italic;
}

@media (max-width: 900px) {
  .rmh-practice-areas { padding: 64px 32px 56px; }
  .rmh-practice-areas__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .rmh-practice-areas { padding: 48px 20px 40px; }
  .rmh-practice-areas__grid { grid-template-columns: 1fr; }
  .rmh-practice-areas__banner { padding: 48px 24px; }
}


/* ═══════════════════════════════════════════
   ATTORNEYS
═══════════════════════════════════════════ */
.rmh-attorneys {
  --navy: #0D1F3C;
  --gold: #B8922A;
  --ink: #1A1A1A;
  --muted: #6B6B6B;
  --rule: #E2E2E2;
  --surface: #FFFFFF;
  --card-pad: 2rem;
  background: var(--surface);
  padding: 6rem 0 5rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
}

.rmh-attorneys *, .rmh-attorneys *::before, .rmh-attorneys *::after { box-sizing: border-box; margin: 0; padding: 0; }

.rmh-atty-wrap { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

.rmh-atty-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.rmh-atty-subrule {
  display: block;
  width: 3.5rem;
  height: 2px;
  background: var(--gold);
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
}

.rmh-search-wrap { margin-bottom: 3.5rem; max-width: 520px; }

.rmh-search {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--navy);
  border-radius: 0;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink);
  padding: 0.6rem 0;
  letter-spacing: 0.01em;
  transition: border-color 0.2s;
}
.rmh-search::placeholder { color: #A0A0A0; font-style: italic; }
.rmh-search:focus { border-bottom-color: var(--gold); }

.rmh-partners-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.rmh-atty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

@media (max-width: 860px) { .rmh-atty-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .rmh-atty-grid { grid-template-columns: 1fr; } }

.rmh-atty-card {
  border-left: 3px solid var(--gold);
  padding: var(--card-pad);
  background: #FAFAFA;
  transition: background 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.rmh-atty-card:hover { background: #F4F4F4; box-shadow: 0 4px 24px rgba(13,31,60,0.07); }
.rmh-atty-card[data-hidden] { display: none; }

.rmh-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.rmh-atty-photo {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-bottom: 2px solid var(--gold);
  flex-shrink: 0;
}

.rmh-atty-card--emeritus .rmh-atty-photo {
  filter: grayscale(30%);
}

.rmh-atty-card--emeritus .rmh-atty-title {
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.1em;
}

.rmh-atty-card-body { display: flex; flex-direction: column; gap: 0.35rem; }

.rmh-atty-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.rmh-atty-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
  margin-bottom: 0.35rem;
}

.rmh-atty-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  color: #4A4A4A;
}

.rmh-view-all-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.125rem 1.75rem;
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.rmh-view-all-btn:hover { background: #162d54; }
.rmh-view-all-btn-arrow { font-size: 1.125rem; transition: transform 0.2s; display: inline-block; }
.rmh-view-all-btn:hover .rmh-view-all-btn-arrow { transform: translateX(5px); }

.rmh-atty-no-results {
  display: none;
  padding: 2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--muted);
}


/* ═══════════════════════════════════════════
   NEWS & VICTORIES
═══════════════════════════════════════════ */
.rmh-news-section {
  background: #f7f4ef;
  padding: 72px 48px 56px;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

.rmh-news-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; }
.rmh-news-heading { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; font-weight: 700; color: #1a1f36; margin: 0 0 10px; line-height: 1.15; }
.rmh-heading-wrap { display: flex; flex-direction: column; }
.rmh-heading-underline { width: 72px; height: 2px; background: #b89a4e; border: none; margin: 0; }

.rmh-card-track-outer { position: relative; }
.rmh-card-track { display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding-bottom: 4px; cursor: grab; }
.rmh-card-track:active { cursor: grabbing; }

@media (min-width: 769px) {
  .rmh-card-track { scrollbar-width: none; -ms-overflow-style: none; }
  .rmh-card-track::-webkit-scrollbar { display: none; }
}

.rmh-news-card { flex: 0 0 300px; background: #ffffff; border: 1px solid #1a1f36; padding: 28px 24px 24px; box-sizing: border-box; display: flex; flex-direction: column; gap: 14px; transition: border-color 0.18s ease; cursor: default; }
.rmh-news-card:hover { border-color: #b89a4e; }

.rmh-tag { display: inline-block; font-size: 0.625rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #ffffff; padding: 4px 9px; line-height: 1; align-self: flex-start; }
.rmh-tag--victory { background: #b89a4e; }
.rmh-tag--firm-news { background: #1a1f36; }
.rmh-tag--client-alert { background: #3d3d3d; }

.rmh-news-card-headline { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 700; color: #1a1f36; line-height: 1.4; margin: 0; flex: 1; }
.rmh-news-card-date { font-size: 0.75rem; color: #888; letter-spacing: 0.02em; margin: 0; }
.rmh-news-read-more { font-size: 0.8rem; font-weight: 600; color: #b89a4e; text-decoration: none; letter-spacing: 0.01em; transition: opacity 0.15s; align-self: flex-start; }
.rmh-news-read-more:hover { opacity: 0.75; }

.rmh-news-footer { display: flex; justify-content: flex-end; margin-top: 28px; }
.rmh-news-view-all { font-size: 0.85rem; font-weight: 600; color: #1a1f36; text-decoration: none; letter-spacing: 0.02em; transition: color 0.15s; }
.rmh-news-view-all:hover { color: #b89a4e; }

@media (max-width: 768px) {
  .rmh-news-section { padding: 48px 20px 40px; }
  .rmh-news-heading { font-size: 1.6rem; }
  .rmh-news-card { flex: 0 0 268px; padding: 22px 18px 20px; }
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.rmh-footer {
  --footer-navy: #0a0f1e;
  --footer-gold: #c9a96e;
  --footer-link: #a0aec0;
  --footer-hover: #f5f0e8;
  --footer-muted: #6b7280;
  background: var(--footer-navy);
  font-family: 'Montserrat', sans-serif;
  color: var(--footer-link);
  padding: 72px 0 0;
}

.rmh-footer *, .rmh-footer *::before, .rmh-footer *::after { box-sizing: border-box; margin: 0; padding: 0; }

.rmh-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.rmh-footer__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--footer-gold);
  line-height: 1.35;
  margin-bottom: 22px;
}

.rmh-footer__address { font-size: 0.75rem; line-height: 1.85; color: var(--footer-link); }
.rmh-footer__address a { color: var(--footer-link); text-decoration: none; transition: color 0.2s; }
.rmh-footer__address a:hover { color: var(--footer-hover); }

.rmh-footer__col-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--footer-gold);
  display: inline-block;
  width: 100%;
}

.rmh-footer__nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.rmh-footer__nav a { font-size: 0.78rem; color: var(--footer-link); text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; line-height: 1.4; }
.rmh-footer__nav a:hover { color: var(--footer-hover); }

.rmh-footer__contact-text { font-size: 0.78rem; line-height: 1.75; color: var(--footer-link); margin-bottom: 22px; }

.rmh-footer__cta {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--footer-gold);
  color: var(--footer-gold);
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.rmh-footer__cta:hover { background: var(--footer-gold); color: var(--footer-navy); }

.rmh-footer__divider { max-width: 1200px; margin: 60px auto 0; padding: 0 40px; border: none; border-top: 1px solid rgba(255,255,255,0.08); }

.rmh-footer__bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.rmh-footer__legal { font-size: 0.65rem; letter-spacing: 0.03em; color: var(--footer-muted); line-height: 1.6; }
.rmh-footer__legal a { color: var(--footer-muted); text-decoration: none; transition: color 0.2s; }
.rmh-footer__legal a:hover { color: var(--footer-link); }

@media (max-width: 960px) { .rmh-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 580px) {
  .rmh-footer__inner { grid-template-columns: 1fr; gap: 36px; padding: 0 24px; }
  .rmh-footer__divider, .rmh-footer__bar { padding-left: 24px; padding-right: 24px; }
  .rmh-footer__bar { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════
   ATTORNEYS PAGE
═══════════════════════════════════════════ */

.atty-page { background: #ffffff; }

/* Reuse the homepage rmh-attorneys section styles — the page body
   simply wraps in .rmh-attorneys and uses the same card system.
   These rules extend it with page-specific overrides only. */

/* The page adds a full-bio variant of the card */
.rmh-atty-card--full .rmh-atty-photo {
  height: 280px;
}

.rmh-atty-card--full .rmh-atty-bio {
  font-size: 0.9rem;
  line-height: 1.75;
}

/* Areas list beneath bio */
.rmh-atty-areas {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rmh-atty-areas li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(13,31,60,0.55);
  background: #f0ede8;
  padding: 4px 10px;
  border: 1px solid rgba(13,31,60,0.1);
}

/* Emeritus card subdued treatment */
.rmh-atty-card--emeritus .rmh-atty-photo {
  filter: grayscale(35%);
  height: 280px;
}

.rmh-atty-card--emeritus .rmh-atty-name {
  color: #4a4a5a;
}

/* Section divider label */
.atty-page-section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B6B6B;
  margin: 3rem 0 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #E2E2E2;
}

/* Closing band — reuse practice areas banner pattern */
.atty-closing-band {
  background: #0a0f1e;
  padding: 72px 64px;
  text-align: center;
}

.atty-closing-band__text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0;
  font-style: italic;
}

@media (max-width: 580px) {
  .atty-closing-band { padding: 48px 24px; }
}
