:root {
  --navy: #1c264a;
  --ink: #2f2f31;
  --orange: #e89b50;
  --paper: #fbfaf8;
  --line: #c9cad2;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; }

.site-header {
  height: 100px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px clamp(24px, 3vw, 54px);
  background: #fff;
  position: relative;
  z-index: 40;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
  margin-left: -10px;
  transform: translateY(2px);
}
.brand-logo { display:block; width:clamp(210px, 18vw, 300px); height:auto; }
.menu-button { width: 46px; height: 40px; border: 0; background: transparent; display: none; align-content: center; gap: 7px; cursor: pointer; padding: 4px; margin-left:auto; }
.menu-button span { height: 3px; background: #111; width: 100%; transition: .25s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
.site-menu {
  margin-left: 70px;
  transform: translateY(5px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(13px, 1.15vw, 23px);
  min-width: 0;
}
.site-menu a,
.site-menu summary {
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800;
  white-space: nowrap;
}
.site-menu summary { list-style: none; cursor: pointer; }
.site-menu summary::-webkit-details-marker { display:none; }
.nav-dropdown { position: relative; }
.nav-dropdown > summary { padding: 18px 0; }
.nav-dropdown > summary::after { content: " +"; color: var(--orange); font-weight: 900; }
.nav-dropdown[open] > summary::after { content: " −"; }
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 2px);
  left: -20px;
  min-width: 210px;
  padding: 12px 0;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 50;
}
.nav-dropdown[open] .nav-dropdown__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown__menu a {
  color: #fff;
  display: block;
  padding: 12px 20px;
  font-size: 10px;
}
.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible { background: rgba(255,255,255,.1); color: #fff; }
.nav-direct { padding: 18px 0; }
.site-menu > a:hover,
.site-menu > details > summary:hover { color: var(--orange); }
.header-phone {
  margin-left: auto;
  transform: translateY(5px);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 500;
  white-space: nowrap;
}
.header-phone:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.nav-phone-mobile { display: none; }

@media (min-width: 981px) {
  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .site-header { gap: 0; padding-inline: 28px; }
  .brand-logo { width: 220px; }
  .site-menu { margin-left: 38px; gap: 13px; }
  .site-menu a, .site-menu summary { font-size: 9px; letter-spacing: .07em; }
  .header-phone { min-width: 108px; height: 38px; padding: 0 13px; font-size: 9px; }
}

@media (max-width: 980px) {
  .site-header { height: 76px; padding: 8px 20px; }
  .brand { margin-left: 0; transform: translateY(0); }
  .brand-logo { width: min(260px, 65vw); }
  .menu-button { display: grid; }
  .header-phone { display: none; }
  .site-menu {
    position: absolute;
    right: 0;
    left: 0;
    top: 76px;
    margin: 0;
    transform: none;
    background: var(--navy);
    color: #fff;
    padding: 20px;
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    min-width: 0;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
  }
  .site-menu.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .site-menu > .nav-direct,
  .site-menu > .nav-dropdown > summary {
    color: #fff;
    display: block;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
    font-size: 12px;
  }
  .site-menu > .nav-direct:hover,
  .site-menu > .nav-dropdown > summary:hover { color: var(--orange); }
  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    padding: 4px 0 8px 16px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
  }
  .nav-dropdown[open] .nav-dropdown__menu { display:block; }
  .nav-dropdown__menu a {
    padding: 10px 0;
    color: rgba(255,255,255,.78);
    font-size: 10px;
  }
  .nav-dropdown__menu a:hover { background: transparent; color: var(--orange); }
  .nav-phone-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 150px;
    height: 44px;
    margin-top: 20px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 999px;
    color: #fff !important;
    font-size: 11px !important;
    letter-spacing: .12em !important;
    text-decoration: none;
  }
}

.announcement, .value-marquee { overflow: hidden; background: var(--orange); }
.announcement { color: var(--navy); height: 50px; display: flex; align-items: center; font-size: 15px; font-weight: 800; letter-spacing: .02em; }
.marquee { width: 100%; overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: marquee 55s linear infinite; }
.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee--announcement .marquee__group { gap: 92px; padding-right: 92px; white-space: nowrap; }
.marquee--announcement a { text-decoration: none; }
.announcement-article { display: inline-flex; align-items: center; gap: 28px; color: var(--navy); }
.announcement-article span { font-weight: 400; }
.announcement-article strong { font-size: .78em; font-weight: 900; letter-spacing: .14em; text-decoration: underline; text-underline-offset: 4px; }
.announcement-article:hover strong { text-decoration-thickness: 2px; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation-play-state: paused; } }

.hero { background: #fff; position: relative; overflow: hidden; }
.hero-slides { position: relative; height: clamp(720px, 54.6875vw, 1050px); }
.hero-card { position: absolute; inset: 0; display: grid; grid-template-columns: 47% 53%; min-height: 0; height: 100%; opacity: 0; visibility: hidden; transition: opacity .7s ease, visibility .7s ease; }
.hero-card.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-card__content { padding: 118px 20px 90px clamp(28px, 4vw, 72px); display: flex; flex-direction: column; justify-content: center; background: linear-gradient(90deg,#fff 0%,#fff 88%,rgba(255,255,255,.74) 100%); z-index: 2; }
.hero-card--feature {
  display: block;
  overflow: hidden;
  background: #fff;
}
.hero-card--feature .hero-card__background {
  position: absolute;
  inset: 0;
  background-color: #fff;
  background-image: url("../images/backgrounds/BG_1.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-card--feature .hero-card__overlay {
  position: absolute;
  inset: 0;
  display: none;
}
.hero-card--feature .hero-card__content {
  position: relative;
  width: 49%;
  min-height: 100%;
  background: transparent;
}
.hero-card--background {
  display: block;
  overflow: hidden;
  background: #f4f1ea;
}
.hero-card--background .hero-card__background {
  position: absolute;
  inset: 0;
  background-image: url("../images/backgrounds/BACKGROUND2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .8;
}
.hero-card--background .hero-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244,241,234,.04) 0%, rgba(244,241,234,.08) 38%, rgba(244,241,234,.58) 76%, rgba(244,241,234,.94) 100%),
    linear-gradient(90deg, rgba(244,241,234,.99) 0%, rgba(244,241,234,.96) 18%, rgba(244,241,234,.72) 37%, rgba(244,241,234,.18) 66%, rgba(244,241,234,.02) 90%);
}
.hero-card--background .hero-card__content {
  position: relative;
  width: 52%;
  min-height: 820px;
  background: transparent;
}
.hero-card h1, .hero-card h2, .mission h2, .story h2, .team h2, .contact h2 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; letter-spacing: -.045em; margin: 0; }
.hero-card h1, .hero-card h2 { font-size: clamp(60px, 5.35vw, 98px); line-height: .88; max-width: 770px; }
.eyebrow { color: var(--orange); font-size: 16px; font-weight: 800; margin: 0 0 20px; }
.hero-copy { max-width: 590px; font-size: 17px; font-weight: 400; line-height: 1.35; text-transform: uppercase; margin: 21px 0; color: #5b5b5f; }
.hero-card--feature .hero-copy { max-width: 480px; }

/* Peace Love World success story used as the third hero slide. */
.hero-card--success {
  display: block;
  overflow: hidden;
  background: #f4f1ea;
}
.hero-card--success .hero-card__background {
  position: absolute;
  inset: 0;
  background-image: url("../images/backgrounds/hero-slide-3.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero-card--success .hero-card__overlay {
  position: absolute;
  inset: 0;
  background: none;
}
.hero-card--success .hero-card__content {
  position: relative;
  width: 52%;
  min-height: 100%;
  background: transparent;
}

.hero-card--success h2 {
  font-size: clamp(54px, 4.9vw, 88px);
  line-height: .92;
  max-width: 820px;
}
.hero-card--success .hero-copy {
  max-width: 650px;
}
.hero-story-kicker {
  margin: 21px 0 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Slide three is a clean full-width text slide with no image column. */
.hero-card--plain {
  display: block;
  overflow: hidden;
  background: #fff;
}
.hero-card--plain .hero-card__content {
  width: min(100%, 980px);
  height: 100%;
  min-height: 0;
  max-width: 980px;
  background: transparent;
  box-sizing: border-box;
}
/* Keep the complete hero content aligned as one unit so internal spacing remains exact. */
.hero-card > .hero-card__content {
  transform: translateY(18px);
}
.hero-card > .hero-card__content > .hero-copy {
  margin-top: 21px;
  margin-bottom: 21px;
}
.image-placeholder { display:flex; align-items:center; justify-content:center; text-align:center; background:repeating-linear-gradient(135deg,#f2f1ee 0,#f2f1ee 18px,#e8e6e1 18px,#e8e6e1 36px); color:#777; border:1px dashed #aaa; font-size:14px; font-weight:800; letter-spacing:.12em; }
.image-placeholder small { display:block; margin-top:8px; font-size:9px; letter-spacing:.08em; }
.hero-placeholder { border:0; border-left:1px dashed #aaa; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; }
.button { min-height: 52px; padding: 0 26px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; text-transform: uppercase; font-size: 11px; letter-spacing: .12em; font-weight: 900; border: 1px solid var(--navy); transition: .2s ease; }
.button--solid { background: var(--navy); color: #fff; }
.button--outline { background: #fff; color: var(--navy); }
.button:hover { transform: translateY(-2px); }
.hero-pagination { position: absolute; z-index: 4; bottom: 24px; left: 50%; display: flex; gap: 10px; transform: translateX(-50%); }
.hero-pagination button { width: 34px; height: 4px; border: 0; background: rgba(28,38,74,.3); cursor: pointer; padding: 0; }
.hero-pagination button.is-active { background: var(--navy); }


/* Statistics cards below the Our Mission section. */
.stats-strip {
  position: relative;
  z-index: 5;
  padding: 42px clamp(18px, 2.5vw, 42px) 46px;
  background: #fff;
}
.stats-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.stat-card {
  min-height: 178px;
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 42px rgba(28,38,74,.18);
}
.stat-number {
  display: block;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.045em;
  font-variant-numeric: tabular-nums;
}
.stat-suffix { color: var(--orange); }
.stat-label {
  margin-top: 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}


/* Homepage flow: hero → value marquee → mission → statistics. */
.hero + .value-marquee { margin-top: 0; }
.value-marquee + .mission { margin-top: 0; }
.mission + .stats-strip { padding-top: 18px; }

.mission { background: #fff; color: #000; padding: 54px clamp(28px, 4vw, 70px) 62px; }
.mission .eyebrow { color: var(--orange); }
.mission h2 { font-size: clamp(52px, 6vw, 96px); line-height: .95; margin-bottom: 24px; }
.mission > p:last-child { margin: 0; max-width: 1320px; text-transform: uppercase; font-size: 16px; line-height: 1.35; font-weight: 400; }
.section-pad { padding: 96px clamp(28px, 4vw, 70px); }
.story-grid { display: grid; grid-template-columns: minmax(330px, 540px) 1fr; gap: 60px; align-items: start; }
.story-image { margin: 0; }
.portrait-placeholder { width:100%; aspect-ratio:.78; border:4px solid var(--line); }
.story-image figcaption { font-size: 14px; color: #64646a; margin-top: 14px; font-weight: 700; }
.story-copy h2 { font-size: clamp(58px, 6vw, 100px); line-height: .95; margin: -10px 0 30px; }
.story-kicker, .story-copy p { font-size: 15px; line-height: 1.35; text-transform: uppercase; font-weight: 400; color: #66666a; }
.story-copy .eyebrow { color: var(--orange); font-weight: 800; }
.story-copy p { max-width: 750px; }
.story-copy .button-row { margin-top: 36px; }

.value-marquee { height: 76px; color: #fff; display: flex; align-items: center; }
.marquee--values .marquee__track { animation-duration: 45s; }
.value-group { min-width: 100vw; gap: 48px; padding: 0 36px; justify-content: space-around; white-space: nowrap; }
.value-group span { font: 400 42px/1 Georgia, 'Times New Roman', serif; }
.value-icon {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.team {
  position: relative;
  background-color: #fff;
  color: var(--ink);
  overflow: hidden;
}
.team::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/attorneys/attorneys-grid.webp");
  background-size: max(1100px, 100vw) auto;
  background-position: center top;
  background-repeat: repeat-y;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.team > * { position:relative; z-index:1; }
.team > h2 { color:var(--ink); font-size: clamp(58px, 6vw, 102px); line-height: .95; margin: 0 0 54px; }
.team .eyebrow { color: var(--orange); }
.team-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 54px; }
.attorney-card { background: #fff; border: 4px solid var(--line); }
.attorney-placeholder { width:100%; aspect-ratio:.74; border:0; border-bottom:1px solid var(--line); }
.attorney-card div { padding: 22px 24px 26px; border-top: 1px solid var(--line); }
.attorney-card h3 { font: 400 32px/1.1 Georgia, 'Times New Roman', serif; margin: 0 0 7px; }
.attorney-card p { margin: 0; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: #666; }
.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--navy);
  background-image: url("../images/backgrounds/CONTACT_BG.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #fff;
  padding: 68px clamp(28px, 4vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: start;
}
.contact > * {
  position: relative;
  z-index: 1;
}
.contact-copy { max-width: 650px; }
.contact h2 { font-size: clamp(54px, 5.5vw, 88px); line-height: .95; max-width: 650px; }
.contact-intro { margin: 34px 0 0; max-width: 600px; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.75; }
.contact-person { margin-top: 46px; }
.contact-rule { display: block; width: 240px; height: 1px; background: var(--orange); margin-bottom: 28px; }
.contact-person h3 { margin: 0; font: 400 clamp(38px, 3.4vw, 56px)/1 Georgia, 'Times New Roman', serif; letter-spacing: -.04em; }
.contact-role { margin: 12px 0 24px; color: var(--orange); font-size: 12px; letter-spacing: .16em; font-weight: 800; }
.contact-details { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.contact-details a { color: rgba(255,255,255,.78); text-decoration: none; font-size: 12px; letter-spacing: .12em; font-weight: 800; }
.contact-details span { width: 1px; height: 14px; background: rgba(232,155,80,.55); }
.contact-form { padding: clamp(30px, 4vw, 54px); border: 1px solid rgba(232,155,80,.42); background: var(--navy); box-shadow: 0 28px 60px rgba(18,19,45,.24); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px 18px; }
.contact-form label { display: grid; gap: 10px; }
.contact-form label > span { color: var(--orange); font-size: 11px; letter-spacing: .17em; font-weight: 900; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(17,18,42,.72);
  color: #fff;
  border-radius: 0;
  font: 400 14px/1.3 Arial, Helvetica, sans-serif;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input,
.contact-form select { height: 52px; padding: 0 18px; }
.contact-form textarea { min-height: 160px; resize: vertical; padding: 16px 18px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.44); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--orange); background: rgba(17,18,42,.9); }
.contact-form select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg,transparent 50%,var(--orange) 50%),linear-gradient(135deg,var(--orange) 50%,transparent 50%); background-position: calc(100% - 20px) 22px,calc(100% - 15px) 22px; background-size: 5px 5px,5px 5px; background-repeat: no-repeat; }
.form-field--full { grid-column: 1 / -1; }
.contact-submit { width: 100%; min-height: 56px; margin-top: 26px; border: 1px solid var(--orange); background: var(--orange); color: var(--navy); font-size: 11px; letter-spacing: .2em; font-weight: 900; cursor: pointer; transition: transform .2s ease, filter .2s ease; }
.contact-submit:hover { transform: translateY(-2px); filter: brightness(1.04); }
.button--light { background: #fff; color: var(--navy); border-color: #fff; flex-shrink: 0; }
footer { background: var(--navy); color: #fff; padding: 28px clamp(28px, 4vw, 70px); display: flex; justify-content: space-between; gap: 20px; font-size: 11px; letter-spacing: .08em; }

@media (max-width: 900px) {
  .site-header { height: 76px; padding: 10px 20px; }
  .brand-logo { width: clamp(220px, 30vw, 320px); }
  .menu-button { width: 42px; }
  .site-menu { right: 20px; top: 68px; }
  .announcement { height: 42px; font-size: 12px; }
  .hero-slides { height: 760px; }
  .hero-card { min-height: 0; height: 100%; grid-template-columns: 1fr; grid-template-rows: minmax(0,1fr) 300px; }
  .hero-card__content { padding: 58px 24px 42px; background: #fff; }

  /* The first slide now behaves like the second slide: full-bleed at every size. */
  .hero-card--feature,
  .hero-card--background { display: block; }
  .hero-card--feature .hero-card__content,
  .hero-card--feature .hero-card__background {
    inset: 0;
    height: 100%;
    background-size: cover;
    background-position: 72% center;
  }
  .hero-card--feature .hero-card__overlay { display: none; }

  /* Decorative background slides remain full bleed without forcing extra height. */
  .hero-card--background .hero-card__content {
    width: 100%;
    min-height: 0;
    height: 100%;
    padding: 58px 24px 48px;
    background: transparent;
  }
  .hero-card--background .hero-card__background { background-position: 58% center; }
  .hero-card--background .hero-card__overlay {
    background:
      linear-gradient(180deg, rgba(244,241,234,.18) 0%, rgba(244,241,234,.48) 54%, rgba(244,241,234,.94) 100%),
      linear-gradient(90deg, rgba(244,241,234,.94) 0%, rgba(244,241,234,.74) 60%, rgba(244,241,234,.28) 100%);
  }

  .hero-card--success { display: block; }
  .hero-card--success .hero-card__content {
    width: 100%;
    min-height: 100%;
    padding-right: clamp(28px, 6vw, 54px);
    background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 58%, rgba(255,255,255,.5) 100%);
  }
  .hero-card--success .hero-card__background { background-position: 66% center; }
  .hero-card--success .hero-card__overlay { background: none; }

  .hero-card--plain .hero-card__content {
    width: 100%;
    max-width: 980px;
    padding: 58px 24px 48px;
  }
  .hero-card h1, .hero-card h2 { font-size: clamp(48px, 13vw, 72px); }
  .hero-copy { font-size: 14px; margin: 21px 0; }
  .hero-card > .hero-card__content { transform: translateY(12px); }
  .hero-placeholder { min-height:360px; border-left:0; border-top:1px dashed #aaa; }
  .mission { padding-top: 46px; }
  .mission > p:last-child { font-size: 13px; }
  .section-pad { padding: 66px 24px; }
  .story-grid { grid-template-columns: 1fr; gap: 38px; }
  .story-image { max-width: 560px; }
  .story-copy h2 { margin-top: 0; }
  .team-grid { grid-template-columns: 1fr; gap: 34px; }
  .contact { grid-template-columns: 1fr; align-items: start; }
  .contact-copy { max-width: 760px; }
  .contact-form { width: 100%; }
  footer { flex-direction: column; }
}

@media (max-width: 520px) {
  .brand { gap:8px; }
  .brand-logo { width: 210px; }
  .announcement { height: 38px; }
  .marquee--announcement .marquee__group { gap: 48px; padding-right: 48px; }
  .announcement-article { gap: 16px; }
  .hero-slides { height: 700px; }
  .hero-card { min-height: 0; height: 100%; grid-template-rows: minmax(0,1fr) 250px; }
  .hero-card__content { padding-top: 42px; }
  .hero-card--feature .hero-card__background {
    inset: 0;
    height: 100%;
    background-size: cover;
    background-position: 78% center;
  }
  .hero-card--feature .hero-card__content,
  .hero-card--background .hero-card__content {
    min-height: 0;
    height: 100%;
    padding: 48px 22px 46px;
  }
  .hero-card--background .hero-card__background { background-position: 62% center; }
  .hero-card--plain .hero-card__content {
    width: 100%;
    padding: 48px 22px 46px;
  }
  .hero-card h1, .hero-card h2 { font-size: clamp(42px, 12.5vw, 49px); }
  .hero-copy { font-size: 12px; }
  .button { width: 100%; }
  .value-marquee { height: 64px; }
  .value-group { min-width: 100vw; gap: 24px; padding: 0 20px; justify-content: space-around; }
  .value-group span { font-size: 32px; }
  .value-icon { width: 28px; height: 28px; }
  .story-copy h2, .team > h2 { font-size: 52px; }
  .mission h2 { font-size: 49px; }
  .attorney-card h3 { font-size: 28px; }
  .contact { padding: 52px 24px; gap: 42px; }
  .contact h2 { font-size: 49px; }
  .contact-intro { font-size: 15px; line-height: 1.6; }
  .contact-form { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .contact-details { align-items: flex-start; flex-direction: column; gap: 10px; }
  .contact-details span { display: none; }
}

/* JOURNAL / BLOG */
.journal-page { min-height: calc(100vh - 126px); background: #f4f1ea; }
.journal-hero { padding: 68px clamp(28px, 4vw, 70px) 56px; }
.journal-label { margin: 0; color: #9b5c2f; font-size: 12px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.journal-list { padding: 18px clamp(28px, 4vw, 70px) 130px; display: grid; gap: 28px; }
.journal-card { display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 52px; padding: 42px 38px; border: 1px solid #d2cec3; background: #fbf8f0; box-shadow: 0 25px 50px rgba(32,31,27,.08); }
.journal-meta { padding-top: 4px; }
.journal-meta p { margin: 0 0 15px; color: #9b5c2f; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.journal-content h1, .journal-content h2 { margin: 0; color: #181818; font: 400 clamp(43px,4.2vw,70px)/.9 Georgia,'Times New Roman',serif; letter-spacing: -.055em; max-width: 900px; }
.journal-content > p { margin: 34px 0 28px; color: #716c63; font-size: 18px; line-height: 1.55; max-width: 960px; }
.read-article { color: #151515; text-decoration: none; font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.read-article::after { content: '  →'; color: #9b5c2f; }
.journal-card:hover .read-article { text-decoration: underline; text-underline-offset: 5px; }
.journal-footer { min-height: 96px; background: #171717; }

/* ARTICLE */
.article-page { background: #f4f1ea; }
.article-wrap { max-width: 1120px; margin: 0 auto; padding: 90px 28px 120px; }
.article-back { display: inline-block; margin-bottom: 44px; color: #9b5c2f; text-decoration: none; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.article-kicker { color: #9b5c2f; font-size: 11px; line-height: 1.7; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.article-wrap h1 { margin: 24px 0 34px; font: 400 clamp(54px,7vw,96px)/.91 Georgia,'Times New Roman',serif; letter-spacing: -.055em; }
.article-deck { color: #6f6a61; font-size: 21px; line-height: 1.55; max-width: 900px; }
.article-rule { width: 100%; height: 1px; background: #d2cec3; margin: 54px 0; }
.article-body { max-width: 760px; font-family: Georgia,'Times New Roman',serif; font-size: 20px; line-height: 1.75; color: #34322e; }
.article-body h2 { margin: 54px 0 16px; font-size: 38px; line-height: 1.1; font-weight: 400; }

@media (max-width: 900px) {
  .journal-page { min-height: calc(100vh - 92px); }
  .journal-hero { padding-top: 48px; }
  .journal-card { grid-template-columns: 1fr; gap: 24px; padding: 30px 26px; }
  .journal-content h1, .journal-content h2 { font-size: clamp(42px,10vw,62px); }
}

@media (max-width: 520px) {
  .journal-list { padding-left: 18px; padding-right: 18px; padding-bottom: 80px; }
  .journal-hero { padding-left: 18px; padding-right: 18px; }
  .journal-card { padding: 24px 20px 28px; }
  .journal-content > p { font-size: 16px; margin-top: 24px; }
  .article-wrap { padding: 64px 22px 90px; }
}

/* Full editorial patent article */
.feature-article { max-width: 1180px; margin: 0 auto; padding: 54px 28px 92px; }
.feature-topline { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; margin-bottom: 30px; }
.case-study-label { margin: 2px 0 0; font: 400 clamp(54px,7vw,94px)/.9 Georgia,'Times New Roman',serif; letter-spacing: -.055em; color: #181818; }
.article-side-nav { display: grid; justify-items: end; gap: 7px; padding-top: 8px; }
.article-side-nav span, .article-side-nav a { color: #9b5c2f; font-size: 10px; line-height: 1.2; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.article-image-placeholder { min-height: 330px; border: 1px solid #d2cec3; background: #ebe7dd; display: grid; place-content: center; text-align: center; color: #9b5c2f; letter-spacing: .14em; }
.article-image-placeholder span, .author-image-placeholder span { font-size: 12px; font-weight: 900; }
.article-image-placeholder small, .author-image-placeholder small { display: block; margin-top: 8px; color: #777168; font-size: 11px; letter-spacing: .08em; }
.feature-title-block { padding: 28px 10px 16px; border-bottom: 1px solid #d2cec3; }
.feature-title-block h1 { margin: 0; max-width: 1080px; font: 400 clamp(50px,6vw,82px)/.93 Georgia,'Times New Roman',serif; letter-spacing: -.055em; color: #181818; }
.feature-byline { display: flex; justify-content: flex-end; gap: 48px; margin-top: 20px; color: #6f6a61; font-size: 10px; letter-spacing: .12em; }
.feature-copy { max-width: 1040px; padding: 28px 24px 12px; color: #34322e; font-family: Arial,Helvetica,sans-serif; font-size: 17px; line-height: 1.55; }
.feature-copy p { margin: 0 0 20px; }
.feature-copy h2 { margin: 28px 0 7px; font: 700 18px/1.25 Arial,Helvetica,sans-serif; }
.article-mini-footer { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 18px 24px 30px; border-bottom: 1px solid #d2cec3; color: #a09a90; font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.author-section { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr); gap: 54px; align-items: stretch; padding: 48px 24px 0; }
.author-copy h2 { margin: 4px 0 20px; font: 400 clamp(46px,5vw,72px)/.95 Georgia,'Times New Roman',serif; letter-spacing: -.045em; }
.author-copy > p:last-child { max-width: 710px; margin: 0; font-size: 17px; line-height: 1.5; text-transform: uppercase; }
.author-profile-button { display: inline-flex; margin-top: 26px; align-self: flex-start; }

.author-image-placeholder { min-height: 360px; border: 1px solid #c9c4b8; background: #ebe7dd; display: grid; place-content: center; text-align: center; color: #9b5c2f; letter-spacing: .12em; }
.author-photo { width: 100%; min-height: 360px; height: 100%; display: block; object-fit: cover; object-position: center top; border: 1px solid #c9c4b8; }

@media (max-width: 1100px) and (min-width: 761px) {
  .team-grid--senior { grid-template-columns: repeat(2,minmax(0,1fr)); max-width: 920px; }
}

@media (max-width: 760px) {
  .feature-article { padding: 38px 18px 64px; }
  .feature-topline { display: block; }
  .article-side-nav { justify-items: start; margin-top: 24px; }
  .article-image-placeholder { min-height: 220px; }
  .feature-title-block { padding-left: 0; padding-right: 0; }
  .feature-byline { justify-content: flex-start; flex-wrap: wrap; gap: 12px 24px; }
  .feature-copy { padding-left: 0; padding-right: 0; font-size: 16px; }
  .article-mini-footer { grid-template-columns: 1fr 1fr; padding-left: 0; padding-right: 0; }
  .author-section { grid-template-columns: 1fr; padding-left: 0; padding-right: 0; gap: 30px; }
  .author-image-placeholder { min-height: 320px; }
  .author-photo { min-height: 320px; }
}

/* Editorial article metadata footer */
.article-mini-footer {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr .75fr 2.7fr 1.15fr;
  align-items: center;
  column-gap: 28px;
  margin-top: 26px;
  padding: 16px 0 18px;
  border-top: 0;
  border-bottom: 1px solid #d7d3ca;
  color: #97958f;
  font-size: 7px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.article-mini-footer span:nth-child(2),
.article-mini-footer span:nth-child(4) {
  text-align: center;
}
.feature-article .article-mini-footer {
  padding-left: 24px;
  padding-right: 24px;
}
.article-wrap .article-mini-footer {
  margin-top: 42px;
}
@media (max-width: 760px) {
  .article-mini-footer {
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    column-gap: 18px;
    font-size: 7px;
  }
  .article-mini-footer span:nth-child(2),
  .article-mini-footer span:nth-child(4) {
    text-align: left;
  }
  .feature-article .article-mini-footer {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Keep article metadata footer neutral gray, matching the reference */
.article-mini-footer,
.article-mini-footer span,
.article-mini-footer a {
  color: #9a9a96 !important;
  text-decoration: none !important;
}

/* Article metadata row should not inherit the site's navy footer background */
footer.article-mini-footer {
  background: transparent !important;
  box-shadow: none !important;
}

/* SERVICES */
.services-page { background: #f4f1ea; }
.services-intro {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  border-bottom: 1px solid #d2cec3;
  background: #ebe6dc;
}
.services-intro-media {
  position: absolute;
  inset: 0;
  background-color: #f4f1ea;
  background-image: url("../images/backgrounds/SERVICESBG.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.services-intro-media-label {
  display: inline-grid;
  gap: 7px;
  justify-items: end;
  padding: 16px 18px;
  background: rgba(251,250,248,.78);
  border: 1px solid rgba(201,202,210,.8);
  color: #8b846f;
  text-transform: uppercase;
}
.services-intro-media-label span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}
.services-intro-media-label small {
  font-size: 10px;
  letter-spacing: .08em;
}
.services-intro-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244,241,234,.04) 0%, rgba(244,241,234,.08) 58%, rgba(244,241,234,.48) 100%),
    linear-gradient(90deg, rgba(244,241,234,.96) 0%, rgba(244,241,234,.84) 27%, rgba(244,241,234,.28) 54%, rgba(244,241,234,0) 78%);
}
.services-intro-content {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px clamp(28px,4vw,70px) 96px;
}
.services-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 24px;
  align-items: start;
}
.services-intro h1 { margin: 0; max-width: 900px; font: 400 clamp(62px,7vw,112px)/.88 Georgia,'Times New Roman',serif; letter-spacing: -.055em; color: #181818; }
.services-intro-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.services-intro-copy p { max-width: 720px; margin: 0; color: #6f6a61; font-size: 18px; line-height: 1.6; }
.services-intro-button { min-width: 220px; }
.services-index { padding: 0 clamp(28px,4vw,70px) 90px; }
.service-row { display: grid; grid-template-columns: 80px minmax(280px,.9fr) minmax(320px,.75fr) auto; gap: 38px; align-items: center; min-height: 176px; border-bottom: 1px solid #d2cec3; }
.service-number { align-self: start; padding-top: 45px; color: #6f6a61; font-size: 12px; letter-spacing: .16em; }
.service-row h2 { margin: 0; font: 400 clamp(54px,5vw,82px)/.95 Georgia,'Times New Roman',serif; letter-spacing: -.045em; color: #181818; }
.service-row p { margin: 0; color: #6f6a61; font-size: 16px; line-height: 1.55; }
.service-row a { color: #9b5c2f; text-decoration: none; text-transform: uppercase; font-size: 10px; font-weight: 900; letter-spacing: .14em; white-space: nowrap; }
.service-row a::after { content: '  →'; }
.service-detail { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: clamp(50px,8vw,130px); padding: 100px clamp(28px,4vw,70px); background: #fff; }
.service-detail--alt { background: #ece8de; }
.service-detail-heading { position: sticky; top: 38px; align-self: start; }
.service-detail-heading h2 { margin: 18px 0 0; font: 400 clamp(48px,5vw,78px)/.95 Georgia,'Times New Roman',serif; letter-spacing: -.05em; color: #181818; }
.service-accordion { display: grid; gap: 7px; }
.service-accordion details {
  background: #e5e5e5;
  border: 1px solid transparent;
  transition: background-color .22s ease, border-color .22s ease;
}
.service-detail:not(.service-detail--alt) .service-accordion details:not([open]):hover {
  background: #ece8de;
}
.service-detail--alt .service-accordion details:not([open]):hover {
  background: #bdc1d1;
}
.service-accordion details[open] { background: #f7f4ed; border-color: #d2cec3; }
.service-accordion summary { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 22px; cursor: pointer; list-style: none; color: #222; font: 400 20px/1.2 Georgia,'Times New Roman',serif; }
.service-accordion summary::-webkit-details-marker { display: none; }
.service-accordion summary::after { content: '+'; font: 300 26px/1 Arial,sans-serif; }
.service-accordion details[open] summary::after { content: '−'; }
.service-accordion details > div { padding: 0 22px 22px; }
.service-accordion details p { max-width: 760px; margin: 0; color: #68645e; font-size: 15px; line-height: 1.65; }
.services-cta { padding: 92px clamp(28px,4vw,70px); background: var(--orange); color: var(--navy); display: flex; align-items: end; justify-content: space-between; gap: 42px; }
.services-cta .eyebrow { color: var(--navy); }
.services-cta h2 { max-width: 940px; margin: 0; font: 400 clamp(52px,6vw,92px)/.92 Georgia,'Times New Roman',serif; letter-spacing: -.05em; }
.services-cta .button--light { background: var(--navy); color: #fff; border-color: var(--navy); }
.site-menu a[aria-current="page"] { color: var(--orange); }

@media (max-width: 980px) {
  .services-intro { min-height: 620px; }
  .services-intro-content { min-height: 620px; padding: 96px 24px 72px; }
  .services-intro-grid { grid-template-columns: 1fr; gap: 34px; }
  .service-row { grid-template-columns: 52px 1fr; gap: 12px 24px; padding: 36px 0; }
  .service-number { grid-row: 1 / span 3; padding-top: 8px; }
  .service-row p, .service-row a { grid-column: 2; }
  .service-detail { grid-template-columns: 1fr; gap: 42px; }
  .service-detail-heading { position: static; }
  .services-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .services-intro { min-height: 540px; }
  .services-intro-media { padding: 20px 22px; }
  .services-intro-media-label { padding: 12px 14px; }
  .services-intro-content { min-height: 540px; padding: 80px 22px 54px; }
  .services-intro h1 { font-size: 56px; }
  .services-index { padding: 0 22px 62px; }
  .service-row { grid-template-columns: 34px 1fr; }
  .service-row h2 { font-size: 48px; }
  .service-row p { font-size: 15px; }
  .service-detail { padding: 72px 22px; }
  .service-detail-heading h2 { font-size: 50px; }
  .service-accordion summary { min-height: 58px; padding: 0 16px; font-size: 18px; }
  .service-accordion details > div { padding: 0 16px 18px; }
  .services-cta { padding: 68px 22px; }
}


/* ATTORNEY CARDS + BIO PAGES */
.team-grid--compact { max-width: 1440px; margin: 0 auto; gap: 30px; }
.attorney-card--compact {
  max-width: 560px;
  width: 100%;
  height: 790px;
  justify-self: center;
  display: flex;
  flex-direction: column;
}
.attorney-card--compact .attorney-placeholder {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
}
.attorney-photo {
  display: block;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid var(--line);
}
.attorney-card--compact .attorney-card__content {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 22px;
  row-gap: 4px;
  padding: 17px 22px 19px;
}
.attorney-card__content { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.attorney-card__content h3 { margin-bottom: 0; }
.attorney-card--compact .attorney-card__content h3 {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}
.attorney-card--compact .attorney-card__content p {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
}
.attorney-card--compact .attorney-button {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 46px;
  align-self: center;
}
.attorney-button { min-width: 150px; }

.attorney-photo--austin {
  object-position: center 22%;
}

.team-grid--senior { grid-template-columns: repeat(3,minmax(0,1fr)); margin-bottom: 76px; }
.associate-section {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 0;
  border-top: 0;
}
.associate-section__heading {
  display: grid;
  grid-template-columns: minmax(220px,.45fr) minmax(0,1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}
.associate-section__heading .eyebrow { margin-bottom: 0; }
.associate-section__heading > p:last-child {
  margin: 0;
  max-width: 650px;
  color: #6f6a61;
  font-size: 15px;
  line-height: 1.55;
}
.associate-list { display: grid; gap: 24px; }
.associate-card {
  display: grid;
  grid-template-columns: 190px minmax(0,1fr);
  min-height: 184px;
  background: #fff;
  border: 4px solid var(--line);
}
.associate-card__image {
  min-height: 184px;
  border: 0;
  border-right: 1px solid var(--line);
}
.associate-card__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 28px;
}
.associate-card__content .attorney-button {
  flex: 0 0 auto;
  margin-left: auto;
}
.associate-card__content h3 {
  margin: 0 0 10px;
  font: 400 clamp(34px,3.2vw,48px)/1 Georgia,'Times New Roman',serif;
  letter-spacing: -.035em;
}
.associate-card__content p {
  margin: 0;
  color: #666;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Single featured associate card. */
.associate-card--featured {
  min-height: 270px;
}
.associate-card--featured .associate-card__image {
  min-height: 270px;
}

.bio-page { background: #f4f1ea; }
.bio-hero { min-height: 760px; display: grid; grid-template-columns: minmax(360px,.9fr) minmax(0,1.1fr); background: #fff; }
.bio-hero__image { border: 0; border-right: 1px solid #d2cec3; min-height: 760px; }
.bio-hero__copy { padding: 100px clamp(34px,7vw,120px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.bio-hero h1 { margin: 0; font: 400 clamp(66px,7vw,112px)/.88 Georgia,'Times New Roman',serif; letter-spacing: -.055em; color: #181818; }
.bio-role { margin: 24px 0 30px; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.bio-intro { max-width: 700px; margin: 0 0 34px; color: #6f6a61; font-size: 18px; line-height: 1.65; }
.bio-content { display: grid; grid-template-columns: minmax(220px,.45fr) minmax(0,1.2fr); gap: clamp(50px,8vw,130px); padding: 110px clamp(28px,4vw,70px); }
.bio-content__body h2 { max-width: 980px; margin: 0 0 38px; font: 400 clamp(50px,5.5vw,88px)/.95 Georgia,'Times New Roman',serif; letter-spacing: -.05em; color: #181818; }
.bio-content__body p { max-width: 830px; color: #68645e; font-size: 17px; line-height: 1.75; }
.bio-credentials { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; background: #d2cec3; border-top: 1px solid #d2cec3; border-bottom: 1px solid #d2cec3; }
.bio-credentials > div { min-height: 260px; padding: 46px clamp(24px,3vw,48px); background: #fff; }
.bio-credentials h3 { margin: 28px 0 0; font: 400 34px/1.12 Georgia,'Times New Roman',serif; letter-spacing: -.03em; }
.contact--individual { border-top: 1px solid rgba(255,255,255,.08); }

@media (max-width: 900px) {
  .team-grid--compact { max-width: 560px; }
  .team-grid--senior { margin-bottom: 58px; }
  .associate-section__heading { grid-template-columns: 1fr; gap: 12px; }
  .associate-card { grid-template-columns: 160px minmax(0,1fr); min-height: 170px; }
  .associate-card__image { min-height: 170px; }
  .associate-card--featured, .associate-card--featured .associate-card__image { min-height: 230px; }
  .associate-card__content { padding: 18px 22px; flex-direction: row; align-items: center; justify-content: space-between; }
  .associate-card__content .button { width: auto; margin-left: auto; }
  .bio-hero { grid-template-columns: 1fr; }
  .bio-hero__image { min-height: 520px; border-right: 0; border-bottom: 1px solid #d2cec3; }
  .bio-hero__copy { padding: 72px 24px; }
  .bio-content { grid-template-columns: 1fr; gap: 28px; padding: 78px 24px; }
  .bio-credentials { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .attorney-card--compact { height: auto; }
  .attorney-card--compact .attorney-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 16px 18px;
  }
  .attorney-card--compact .attorney-button { margin-top: 8px; }
  .attorney-card--compact .attorney-placeholder {
    min-height: 420px;
    max-height: 520px;
    aspect-ratio: .84;
  }
  .associate-card { grid-template-columns: 120px minmax(0,1fr); min-height: 170px; }
  .associate-card__image { min-height: 170px; }
  .associate-card--featured, .associate-card--featured .associate-card__image { min-height: 210px; }
  .associate-card__content { padding: 14px 16px; gap: 12px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .associate-card__content h3 { font-size: 28px; }
  .associate-card__content .button { min-width: 0; padding: 0 16px; min-height: 44px; width: auto; margin-left: 0; }
  .bio-hero__image { min-height: 400px; }
  .bio-hero h1 { font-size: 58px; }
  .bio-content__body h2 { font-size: 48px; }
  .bio-credentials h3 { font-size: 29px; }
}


/* Expanded attorney and staff directory */
.meet-team-callout {
  width: 100vw;
  margin: 70px 0 -96px calc(50% - 50vw);
  padding: 34px max(clamp(28px, 4vw, 70px), calc((100vw - 1120px) / 2)) 40px;
  border-top: 3px solid rgba(180, 146, 98, 0.22);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.meet-team-callout > .button { flex: 0 0 auto; margin-left: 0; margin-right: 28px; margin-top: 24px; align-self: flex-start; }
.meet-team-callout--home > .button { margin-top: 24px; transform: translateY(10px); }
.meet-team-callout h3 { color:var(--ink); margin: 0 0 12px; font: 400 clamp(42px,4.5vw,68px)/.95 Georgia,'Times New Roman',serif; letter-spacing: -.045em; }
.meet-team-callout p:last-child { max-width: 620px; margin: 0; color: #66666a; font-size: 15px; line-height: 1.55; }
.staff-page { background: #f4f1ea; }
.staff-hero { padding: 96px clamp(28px,4vw,70px) 80px; border-bottom: 1px solid #d2cec3; }
.staff-hero h1 { max-width: 1050px; margin: 0 0 30px; font: 400 clamp(64px,7vw,112px)/.88 Georgia,'Times New Roman',serif; letter-spacing: -.055em; }
.staff-hero > p:last-child { max-width: 760px; margin: 0; color: #6f6a61; font-size: 18px; line-height: 1.65; }
.staff-grid { padding: 84px clamp(28px,4vw,70px) 110px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 42px 30px; }
.staff-card { background: #fff; border: 1px solid #d2cec3; }
.staff-image { width: 100%; aspect-ratio: .82; border: 0; border-bottom: 1px solid #d2cec3; }
.staff-card__copy { padding: 24px 24px 30px; }
.staff-card__copy h2 { margin: 8px 0 15px; font: 400 34px/1 Georgia,'Times New Roman',serif; letter-spacing: -.035em; }
.staff-card__copy > p:last-child { margin: 0; color: #6f6a61; font-size: 14px; line-height: 1.6; }
@media (max-width: 980px) {
  .staff-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 700px) {
  .meet-team-callout {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: -70px;
    padding-top: 30px;
    padding-bottom: 34px;
  }
  .meet-team-callout > .button { margin-left: -8px; }
  .staff-grid { grid-template-columns: 1fr; padding-left: 22px; padding-right: 22px; }
  .staff-hero { padding: 68px 22px 58px; }
  .staff-hero h1 { font-size: 58px; }
}


/* SUCCESS STORY SLIDESHOW */
.story-slideshow { position: relative; overflow: hidden; padding-top: 62px; padding-bottom: 52px; }
.story-slides { position: relative; min-height: 520px; }
.story-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 100px);
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
}
.story-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.story-image--small { width: 100%; max-width: 365px; justify-self: center; }
.story-image--small .portrait-placeholder { aspect-ratio: 73 / 104; min-height: 0; }
.story-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: 4px solid var(--line);
  box-sizing: border-box;
}
.story-image--small figcaption { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.story-slide .story-copy { align-self: center; }
.story-slide .story-copy h2 { font-size: clamp(58px, 6vw, 98px); }
.story-pagination { position: absolute; left: 50%; bottom: 18px; z-index: 4; display: flex; gap: 10px; transform: translateX(-50%); }
.story-pagination button { width: 38px; height: 4px; border: 0; padding: 0; background: rgba(63,64,95,.25); cursor: pointer; }
.story-pagination button.is-active { background: var(--navy); }
@media (max-width: 900px) {
  .story-slideshow { padding-top: 50px; padding-bottom: 46px; }
  .story-slides { min-height: 800px; }
  .story-slide { grid-template-columns: 1fr; align-content: start; gap: 34px; }
  .story-image--small { max-width: 330px; justify-self: start; }
  .story-pagination { bottom: 22px; }
}
@media (max-width: 520px) {
  .story-slides { min-height: 875px; }
  .story-image--small { max-width: 260px; }
  .story-slide .story-copy h2 { font-size: 52px; }
}

.bio-hero__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Keep the third slide fully contained inside the hero frame. */
.hero-card--plain > .hero-card__content {
  transform: translateY(18px);
}
@media (max-width: 900px) {
  .hero-card--plain > .hero-card__content { transform: translateY(12px); }
}

.services-intro-media-label { display: none !important; }


/* LOCATION PAGE */
.location-page { background: #fff; }
.location-hero { min-height: 610px; display: grid; grid-template-columns: .95fr 1.05fr; background: var(--navy); color: #fff; overflow: hidden; }
.location-hero__copy { padding: clamp(72px, 9vw, 140px) clamp(30px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; align-items: flex-end; text-align: right; }
.location-hero__copy .eyebrow { color: var(--orange); }
.location-hero__copy h1 { margin: 16px 0 22px; font-family: Georgia, serif; font-size: clamp(58px, 8vw, 118px); line-height: .9; font-weight: 400; letter-spacing: -.045em; }
.location-hero__copy > p:not(.eyebrow) { max-width: 650px; margin: 0 0 34px auto; font-size: clamp(17px, 1.6vw, 23px); line-height: 1.55; }
.location-hero__graphic { position: relative; display: flex; align-items: flex-end; padding: 55px; background-color: #eee9e2; background-image: url("../images/locations/fort-lauderdale-map.webp"); background-size: cover; background-position: center; border-right: 1px solid rgba(255,255,255,.15); }
.location-hero__graphic::after { content: none; }
.location-hero__graphic span { position: relative; z-index: 1; color: var(--navy); font-size: clamp(42px, 6vw, 92px); line-height: .82; letter-spacing: -.06em; font-weight: 900; }
.location-details { padding: clamp(72px, 9vw, 130px) clamp(28px, 7vw, 110px); display: grid; grid-template-columns: minmax(280px,.8fr) minmax(420px,1.2fr); gap: clamp(50px, 8vw, 130px); }
.location-details h2 { margin: 14px 0 0; max-width: 600px; font-family: Georgia, serif; font-size: clamp(42px, 5vw, 74px); line-height: 1.02; font-weight: 400; letter-spacing: -.035em; color: var(--navy); }
.location-details__copy > p { margin: 0 0 44px; font-size: 18px; line-height: 1.75; color: #444; }
.location-info-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #d8d8dc; border-left: 1px solid #d8d8dc; }
.location-info-grid > div { min-height: 128px; padding: 26px; border-right: 1px solid #d8d8dc; border-bottom: 1px solid #d8d8dc; }
.location-info-grid span { display: block; margin-bottom: 13px; color: #777; font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.location-info-grid a, .location-info-grid p { margin: 0; color: var(--navy); text-decoration: none; font-size: 13px; line-height: 1.5; font-weight: 800; letter-spacing: .06em; }
.nav-dropdown--locations .nav-dropdown__menu { min-width: 220px; }
@media (max-width: 980px) {
  .location-hero { grid-template-columns: 1fr; min-height: 0; }
  .location-hero__copy { min-height: 520px; }
  .location-hero__graphic { min-height: 330px; padding: 34px 28px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .location-details { grid-template-columns: 1fr; }
}
@media (max-width: 620px) { .location-info-grid { grid-template-columns: 1fr; } }

/* Modernized navigation dropdowns */
@media (min-width: 981px) {
  .nav-dropdown > summary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }

  .nav-dropdown > summary::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--orange);
    border-bottom: 1.5px solid var(--orange);
    transform: rotate(45deg) translateY(-2px);
    transform-origin: center;
    transition: transform .22s ease;
  }

  .nav-dropdown[open] > summary::after,
  .nav-dropdown:hover > summary::after,
  .nav-dropdown:focus-within > summary::after {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .nav-dropdown__menu {
    top: calc(100% + 10px);
    left: 50%;
    min-width: 230px;
    padding: 10px;
    border: 1px solid rgba(28,38,74,.1);
    border-radius: 12px;
    background: rgba(255,255,255,.98);
    color: var(--navy);
    box-shadow: 0 20px 55px rgba(21,28,53,.16), 0 4px 14px rgba(21,28,53,.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    transform: translate(-50%, 10px) scale(.985);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity .18s ease, transform .22s ease;
  }

  .nav-dropdown__menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-left: 1px solid rgba(28,38,74,.1);
    border-top: 1px solid rgba(28,38,74,.1);
    background: rgba(255,255,255,.98);
    transform: translateX(-50%) rotate(45deg);
  }

  .nav-dropdown__menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--orange);
  }

  .nav-dropdown[open] .nav-dropdown__menu,
  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
    pointer-events: auto;
  }

  .nav-dropdown__menu a {
    position: relative;
    color: var(--navy);
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: .08em;
    transition: color .16s ease, background-color .16s ease, padding-left .16s ease;
  }

  .nav-dropdown__menu a::before {
    content: "";
    width: 0;
    height: 1px;
    margin-right: 0;
    background: var(--orange);
    transition: width .16s ease, margin-right .16s ease;
  }

  .nav-dropdown__menu a:hover,
  .nav-dropdown__menu a:focus-visible {
    background: rgba(28,38,74,.055);
    color: var(--navy);
    padding-left: 15px;
    outline: none;
  }

  .nav-dropdown__menu a:hover::before,
  .nav-dropdown__menu a:focus-visible::before {
    width: 12px;
    margin-right: 8px;
  }

  .nav-dropdown--locations .nav-dropdown__menu {
    min-width: 245px;
  }
}

@media (max-width: 980px) {
  .nav-dropdown > summary {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  .nav-dropdown > summary::after {
    content: "+";
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin-left: 14px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    color: var(--orange);
    font-size: 16px;
    line-height: 1;
    transition: transform .2s ease, background-color .2s ease;
  }

  .nav-dropdown[open] > summary::after {
    content: "−";
    background: rgba(255,255,255,.08);
    transform: rotate(180deg);
  }

  .nav-dropdown__menu {
    margin: 7px 0 10px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    background: rgba(255,255,255,.055);
  }

  .nav-dropdown__menu a {
    padding: 11px 12px;
    border-radius: 7px;
  }

  .nav-dropdown__menu a:hover,
  .nav-dropdown__menu a:focus-visible {
    background: rgba(255,255,255,.08);
    color: var(--orange);
  }
}

/* Branded plus/minus indicators for dropdown navigation. */
@media (min-width: 981px) {
  .nav-dropdown > summary::after {
    content: "+";
    width: auto;
    height: auto;
    border: 0;
    color: var(--orange);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    transform: none;
    transition: none;
  }

  .nav-dropdown[open] > summary::after {
    content: "−";
    transform: none;
  }

  .nav-dropdown__menu::after {
    display: none;
  }
}

/* Austin Nowacki photography. */
.associate-card__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  border: 0;
}

.bio-hero__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #f2f1ee;
}

@media (max-width: 760px) {
  .stats-strip {
    padding: 28px 20px 34px;
    background: #fff;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    transform: none;
  }
  .stat-card { min-height: 142px; }
  .stat-number { font-size: 56px; }
}



/* Updated homepage color treatment: navy value marquee and orange statistics cards. */
.value-marquee {
  background: var(--navy);
  color: #fff;
}
.value-marquee .value-icon {
  filter: brightness(0) invert(1);
}
.stat-card {
  background: var(--orange);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 18px 42px rgba(28,38,74,.16);
}
.stat-number,
.stat-label {
  color: #fff;
}
.stat-suffix {
  color: var(--navy);
}

/* Revised homepage color sequence: blue announcement, orange value marquee, blue stats. */
.announcement {
  background: var(--navy);
  color: #fff;
}
.announcement-article {
  color: #fff;
}
.value-marquee {
  background: var(--orange);
  color: #fff;
}
.value-marquee .value-icon {
  filter: brightness(0) invert(1);
}
.stat-card {
  background: var(--navy);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 18px 42px rgba(28,38,74,.18);
}
.stat-number,
.stat-label {
  color: #fff;
}
.stat-suffix {
  color: var(--orange);
}


/* Brief practice-area preview aligned with the editorial two-column layout. */
.practice-preview {
  display: grid;
  grid-template-columns: minmax(180px, .42fr) minmax(0, 1.58fr);
  gap: clamp(44px, 8vw, 140px);
  padding: clamp(88px, 9vw, 140px) clamp(28px, 4vw, 70px);
  background: #f4f1ea;
  color: var(--ink);
}
.practice-preview__kicker { padding-top: 8px; }
.practice-preview__kicker .eyebrow { margin: 0; color: var(--orange); }
.practice-preview__content { min-width: 0; }
.practice-preview__intro { max-width: 980px; margin-bottom: clamp(54px, 6vw, 90px); }
.practice-preview__intro h2 {
  margin: 0 0 28px;
  font: 400 clamp(54px, 5.5vw, 88px)/.93 Georgia, 'Times New Roman', serif;
  letter-spacing: -.045em;
}
.practice-preview__intro p {
  max-width: 760px;
  margin: 0;
  color: #66635d;
  font-size: 17px;
  line-height: 1.65;
}
.practice-preview__list { border-top: 1px solid rgba(28,38,74,.18); }
.practice-preview__row {
  display: grid;
  grid-template-columns: 72px minmax(250px, .9fr) minmax(280px, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
  padding: 34px 0 38px;
  border-bottom: 1px solid rgba(28,38,74,.18);
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.practice-preview__row:hover { color: var(--navy); }
.practice-preview__number {
  padding-top: 9px;
  color: #6e6a62;
  font-size: 12px;
  letter-spacing: .14em;
}
.practice-preview__name {
  font: 400 clamp(44px, 4vw, 68px)/.95 Georgia, 'Times New Roman', serif;
  letter-spacing: -.04em;
}
.practice-preview__description {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-top: 7px;
  color: #66635d;
  font-size: 16px;
  line-height: 1.5;
}
.practice-preview__plus {
  display: inline-block;
  margin-left: auto;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  flex: 0 0 auto;
}
.practice-preview__button {
  margin-top: 38px;
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.practice-preview__button:hover {
  background: #111a38;
  border-color: #111a38;
  color: #fff;
}

@media (max-width: 900px) {
  .practice-preview { grid-template-columns: 1fr; gap: 28px; }
  .practice-preview__intro { margin-bottom: 44px; }
  .practice-preview__row { grid-template-columns: 52px minmax(0,1fr); gap: 18px 24px; }
  .practice-preview__description { grid-column: 2; padding-top: 0; }
}

@media (max-width: 520px) {
  .practice-preview { padding: 68px 24px; }
  .practice-preview__intro h2 { font-size: clamp(46px, 14vw, 62px); }
  .practice-preview__row { padding: 28px 0 30px; }
  .practice-preview__name { font-size: 42px; }
  .practice-preview__description { font-size: 14px; }
}

/* Practice-area preview aligned with the site's standard stacked sections. */
.practice-preview {
  display: block;
  padding: 96px clamp(28px, 4vw, 70px);
  background: #f4f1ea;
}
.practice-preview__kicker {
  padding-top: 0;
  margin-bottom: 22px;
}
.practice-preview__content {
  width: 100%;
}
.practice-preview__intro {
  max-width: 1180px;
  margin-bottom: clamp(48px, 5vw, 72px);
}
.practice-preview__intro h2 {
  margin: 0 0 24px;
  font-size: clamp(58px, 6vw, 102px);
  line-height: .95;
}
.practice-preview__intro p {
  max-width: 920px;
}
.practice-preview__list {
  width: 100%;
}

@media (max-width: 900px) {
  .practice-preview { display: block; }
  .practice-preview__kicker { margin-bottom: 18px; }
}


/* Expandable practice-area rows. */
.practice-preview__item {
  border-bottom: 1px solid rgba(28,38,74,.18);
}
.practice-preview__item:first-child {
  border-top: 1px solid rgba(28,38,74,.18);
}
.practice-preview__item .practice-preview__row {
  position: relative;
  border: 0;
  cursor: pointer;
  list-style: none;
  padding-right: 56px;
}
.practice-preview__item .practice-preview__row::-webkit-details-marker { display: none; }
.practice-preview__item .practice-preview__row::marker { content: ''; }
.practice-preview__toggle {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}
.practice-preview__toggle::before,
.practice-preview__toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--navy);
  transform: translate(-50%,-50%);
  transition: transform .22s ease, opacity .22s ease;
}
.practice-preview__toggle::after {
  transform: translate(-50%,-50%) rotate(90deg);
}
.practice-preview__item[open] .practice-preview__toggle::after {
  opacity: 0;
  transform: translate(-50%,-50%) rotate(0deg);
}
.practice-preview__submenu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  padding: 0 56px 34px 72px;
}
.practice-preview__submenu a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(28,38,74,.12);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.practice-preview__submenu a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
@media (max-width: 900px) {
  .practice-preview__submenu { padding-left: 76px; padding-right: 0; }
}
@media (max-width: 620px) {
  .practice-preview__item .practice-preview__row { padding-right: 42px; }
  .practice-preview__submenu { grid-template-columns: 1fr; padding: 0 0 28px 0; }
  .practice-preview__submenu a { min-height: 50px; }
}

/* Keep each practice-area submenu as one right-aligned list beneath its description. */
.practice-preview__submenu {
  display: grid;
  grid-template-columns: 72px minmax(250px, .9fr) minmax(280px, 1fr);
  column-gap: clamp(28px, 4vw, 72px);
  row-gap: 10px;
  padding: 0 56px 34px 0;
}
.practice-preview__submenu a {
  grid-column: 3;
  width: 100%;
}
@media (max-width: 900px) {
  .practice-preview__submenu {
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 24px;
    padding: 0 0 30px;
  }
  .practice-preview__submenu a {
    grid-column: 2;
  }
}
@media (max-width: 620px) {
  .practice-preview__submenu {
    grid-template-columns: 1fr;
    padding: 0 0 28px;
  }
  .practice-preview__submenu a {
    grid-column: 1;
  }
}


/* Present practice-area submenu entries as a clean editorial list, not buttons. */
.practice-preview__submenu {
  row-gap: 0;
}
.practice-preview__submenu a {
  position: relative;
  display: block;
  min-height: 0;
  padding: 13px 0 13px 20px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(28,38,74,.16);
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.35;
  text-decoration: none;
  transition: color .18s ease;
}
.practice-preview__submenu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--orange);
  transform: translateY(-50%);
}
.practice-preview__submenu a:hover {
  background: transparent;
  border-color: rgba(28,38,74,.16);
  color: var(--orange);
}

/* Keep linked practice-area sections clear of the sticky header. */
#patent-services,
#trademark-services,
#copyright-services {
  scroll-margin-top: 110px;
}


/* Industries page */
.industries-hero {
  padding: 120px clamp(28px, 7vw, 110px) 96px;
  background: #f5f2ea;
  border-bottom: 1px solid #d2cec3;
}
.industries-hero__inner { max-width: 980px; }
.industries-hero h1 {
  max-width: 13ch;
  margin: 14px 0 28px;
  color: #1c264a;
  font: 400 clamp(58px, 7vw, 104px)/.92 Georgia, 'Times New Roman', serif;
  letter-spacing: -.055em;
}
.industries-hero__inner > p:last-child {
  max-width: 760px;
  margin: 0;
  color: #5f5b54;
  font-size: 18px;
  line-height: 1.7;
}
.industry-section {
  display: grid;
  grid-template-columns: 150px minmax(0, 820px);
  justify-content: center;
  gap: 64px;
  padding: 108px clamp(28px, 7vw, 110px);
  border-bottom: 1px solid #d2cec3;
  background: #fff;
  scroll-margin-top: 110px;
}
.industry-section--alt { background: #f7f4ed; }
.industry-section__number {
  color: var(--orange);
  font: 400 16px/1 Georgia, 'Times New Roman', serif;
  letter-spacing: .16em;
  padding-top: 12px;
}
.industry-section h2 {
  max-width: 14ch;
  margin: 12px 0 26px;
  color: #1c264a;
  font: 400 clamp(48px, 5vw, 76px)/.98 Georgia, 'Times New Roman', serif;
  letter-spacing: -.045em;
}
.industry-section__content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 34px;
  color: #625e57;
  font-size: 17px;
  line-height: 1.72;
}
@media (max-width: 760px) {
  .industries-hero { padding-top: 84px; }
  .industry-section { grid-template-columns: 1fr; gap: 22px; padding-top: 72px; padding-bottom: 72px; }
  .industry-section__number { padding-top: 0; }
  .industry-section h2 { font-size: 48px; }
}


/* Individual practice-area pages */
.practice-detail-page { background:#f5f2eb; color:#20212a; }
.practice-detail-hero { position:relative; min-height:620px; display:flex; align-items:flex-end; overflow:hidden; background:url("../images/backgrounds/servicebg.webp") center/cover no-repeat; }
.practice-detail-hero__overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(7,16,43,.94) 0%,rgba(7,16,43,.82) 47%,rgba(7,16,43,.22) 100%); }
.practice-detail-hero__inner { position:relative; z-index:1; width:min(760px,calc(100% - 64px)); margin:0 0 72px clamp(28px,6vw,96px); color:#fff; }
.practice-detail-hero h1 { margin:12px 0 22px; max-width:720px; font-family:Georgia,serif; font-size:clamp(50px,6vw,86px); line-height:.98; font-weight:500; letter-spacing:-.035em; }
.practice-detail-hero__inner>p:not(.eyebrow) { max-width:680px; font-size:17px; line-height:1.7; margin-bottom:28px; }
.practice-explorer { display:grid; grid-template-columns:minmax(320px,38%) minmax(0,1fr); min-height:720px; border-top:1px solid #c9c7c1; }
.practice-explorer__menu { border-right:1px solid #c9c7c1; padding:26px clamp(24px,3vw,48px) 46px; }
.practice-tab { width:100%; min-height:118px; display:grid; grid-template-columns:48px 42px 1fr; gap:18px; align-items:center; text-align:left; border:0; border-bottom:1px solid #cbc9c3; background:transparent; color:#292a2e; cursor:pointer; padding:10px 8px; transition:background .25s ease,color .25s ease,padding .25s ease; }
.practice-tab:first-child { border-top:1px solid #cbc9c3; }
.practice-tab:hover,.practice-tab.is-active { background:#1c264a; color:#fff; padding-left:20px; }
.practice-tab__number { font-size:11px; letter-spacing:.16em; opacity:.7; }
.practice-tab__icon svg { width:29px; height:29px; fill:none; stroke:currentColor; stroke-width:1.45; stroke-linecap:round; stroke-linejoin:round; }
.practice-tab__label { font-family:Georgia,serif; font-size:clamp(26px,2.45vw,42px); line-height:1.05; }
.practice-explorer__content { position:relative; padding:clamp(60px,8vw,118px) clamp(34px,7vw,110px); background:#fff; }
.practice-article { animation:practiceArticleIn .38s ease both; max-width:860px; }
.practice-article[hidden] { display:none; }
.practice-article h2 { max-width:800px; margin:12px 0 30px; font-family:Georgia,serif; font-size:clamp(44px,5vw,78px); line-height:1.02; font-weight:500; letter-spacing:-.035em; color:#1c264a; }
.practice-article>p:not(.eyebrow) { max-width:780px; font-size:18px; line-height:1.85; color:#50515a; margin-bottom:36px; }
@keyframes practiceArticleIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }
@media (max-width:900px){ .practice-detail-hero{min-height:540px}.practice-explorer{grid-template-columns:1fr}.practice-explorer__menu{border-right:0}.practice-tab{min-height:88px;grid-template-columns:38px 34px 1fr}.practice-tab__label{font-size:28px}.practice-explorer__content{min-height:560px} }


/* Our Firm page */
.firm-page { background: #f5f2ea; }
.firm-hero { min-height: 680px; display: flex; align-items: center; padding: 110px clamp(28px, 6vw, 96px); background: linear-gradient(90deg, rgba(15,24,49,.96), rgba(28,38,74,.78)), url("../images/backgrounds/GLOBAL_.jpg") center/cover no-repeat; color: #fff; }
.firm-hero__inner { max-width: 860px; }
.firm-hero h1 { margin: 16px 0 24px; max-width: 820px; font-family: Georgia, serif; font-size: clamp(48px, 6.1vw, 88px); line-height: .98; font-weight: 400; }
.firm-hero p:not(.eyebrow) { max-width: 720px; font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.84); }
.firm-hero .button { margin-top: 30px; }
.firm-intro, .firm-certification { padding: 110px clamp(28px, 6vw, 96px); }
.firm-section-heading { max-width: 760px; margin-bottom: 58px; }
.firm-section-heading h2, .firm-certification h2 { margin: 12px 0 0; font-family: Georgia, serif; font-size: clamp(40px, 4.5vw, 66px); line-height: 1.03; font-weight: 400; color: #1c264a; }
.firm-pillars { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid #c8c5bd; border-left: 1px solid #c8c5bd; }
.firm-pillars article { min-height: 290px; padding: 42px; border-right: 1px solid #c8c5bd; border-bottom: 1px solid #c8c5bd; background: rgba(255,255,255,.56); }
.firm-pillars span { color: var(--orange); font-size: 12px; letter-spacing: .18em; }
.firm-pillars h3, .firm-values h3 { margin: 24px 0 14px; font-family: Georgia, serif; font-size: 32px; font-weight: 400; color: #1c264a; }
.firm-pillars p, .firm-values p, .firm-certification p { font-size: 16px; line-height: 1.75; color: #4b4f5c; }
.firm-values { padding: 110px clamp(28px, 6vw, 96px); background: #1c264a; color: #fff; }
.firm-section-heading--light h2, .firm-section-heading--light p { color: #fff; }
.firm-section-heading--light > p:last-child { margin-top: 20px; color: rgba(255,255,255,.72); }
.firm-values__grid { display: block; max-width: 980px; border-top: 1px solid rgba(255,255,255,.18); }
.firm-values__grid article { display: grid; grid-template-columns: minmax(220px, .38fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: start; min-height: 0; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.firm-values__grid article h3 { margin: 0; }
.firm-values__grid article p { margin: 0; }
.firm-values h3 { margin-top: 0; color: #fff; font-size: 28px; }
.firm-values p { color: rgba(255,255,255,.72); }
.firm-certification { display: grid; grid-template-columns: minmax(300px,.8fr) minmax(420px,1.2fr); gap: clamp(50px,8vw,120px); align-items: start; background: #fff; }
.firm-certification__copy { border-left: 1px solid #d3d0c8; padding-left: clamp(30px,4vw,64px); }
.firm-certification blockquote { margin: 34px 0; padding: 28px 0 28px 30px; border-left: 3px solid var(--orange); font-family: Georgia, serif; font-size: 25px; line-height: 1.45; color: #1c264a; }
@media (max-width: 900px) {
  .firm-hero { min-height: 560px; padding-top: 90px; }
  .firm-pillars, .firm-values__grid, .firm-certification { grid-template-columns: 1fr; }
  .firm-certification__copy { border-left: 0; border-top: 1px solid #d3d0c8; padding: 34px 0 0; }
}
@media (max-width: 620px) {
  .firm-intro, .firm-values, .firm-certification { padding: 76px 24px; }
  .firm-pillars article, .firm-values__grid article { padding: 28px; min-height: auto; }
}

@media (max-width: 700px) {
  .firm-values__grid article { grid-template-columns: 1fr; gap: 12px; }
}

/* Our Firm core values: numbered editorial grid */
.firm-values {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 2.2fr);
  gap: clamp(48px, 7vw, 120px);
  padding: 96px clamp(32px, 5.5vw, 88px) 84px;
  background: #f6f2ea;
  color: #242426;
}
.firm-values__label { padding-top: 3px; }
.firm-values__label .eyebrow { margin: 0; color: var(--orange); }
.firm-values__grid {
  display: block;
  max-width: none;
  border-top: 1px solid #d2cec3;
}
.firm-values__grid article {
  display: grid;
  grid-template-columns: 78px minmax(260px, .95fr) minmax(280px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  min-height: 148px;
  padding: 34px 0 30px;
  border-bottom: 1px solid #d2cec3;
}
.firm-values__number {
  padding-top: 8px;
  color: #66645f;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .16em;
}
.firm-values__grid article h3 {
  margin: 0;
  color: #242426;
  font: 400 clamp(34px, 4vw, 58px)/.98 Georgia, 'Times New Roman', serif;
  letter-spacing: -.04em;
}
.firm-values__grid article p {
  margin: 3px 0 0;
  color: #65615b;
  font-size: 16px;
  line-height: 1.55;
}

/* Match the thin editorial grid line above Our Attorneys */
.firm-certification + .team {
  border-top: 1px solid #d2cec3;
}

@media (max-width: 900px) {
  .firm-values {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 72px 24px 64px;
  }
  .firm-values__grid article {
    grid-template-columns: 48px 1fr;
    gap: 14px 20px;
    padding: 26px 0;
  }
  .firm-values__grid article p {
    grid-column: 2;
  }
}

/* Our Firm: slideshow hero and alternating section colorways */
.firm-slider .hero-slides { height: clamp(680px, 52vw, 940px); }
.firm-slider .firm-slide { display: block; overflow: hidden; background: #111a33; }
.firm-slider .firm-slide .hero-card__background,
.firm-slider .firm-slide .hero-card__overlay { position: absolute; inset: 0; }
.firm-slider .firm-slide .hero-card__background { background-size: cover; background-position: center; background-repeat: no-repeat; }
.firm-slider .firm-slide--one .hero-card__background { background-image: url("../images/backgrounds/GLOBAL_.jpg"); background-position: center; }
.firm-slider .firm-slide--two .hero-card__background { background-image: url("../images/backgrounds/hero-slide-1.webp"); background-position: center right; }
.firm-slider .firm-slide--three .hero-card__background { background-image: url("../images/backgrounds/BACKGROUND2.webp"); background-position: center; }
.firm-slider .firm-slide--one .hero-card__overlay { background: linear-gradient(90deg, rgba(11,18,39,.96) 0%, rgba(20,30,61,.78) 48%, rgba(20,30,61,.26) 100%); }
.firm-slider .firm-slide--two .hero-card__overlay { background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.94) 43%, rgba(255,255,255,.2) 76%, transparent 100%); }
.firm-slider .firm-slide--three .hero-card__overlay { background: linear-gradient(90deg, rgba(246,242,234,.98) 0%, rgba(246,242,234,.91) 46%, rgba(246,242,234,.22) 78%, transparent 100%); }
.firm-slider .firm-slide .hero-card__content { position: relative; width: min(54%, 900px); min-height: 100%; padding: 118px 30px 96px clamp(32px,6vw,96px); background: transparent; }
.firm-slider .firm-slide--one .hero-card__content { color: #fff; }
.firm-slider .firm-slide--one .hero-copy { color: rgba(255,255,255,.78); }
.firm-slider .firm-slide h1,
.firm-slider .firm-slide h2 { max-width: 830px; }
.firm-slider .hero-pagination button { background: rgba(255,255,255,.45); }
.firm-slider .hero-pagination button.is-active { background: var(--orange); }

.firm-overview { display: grid; grid-template-columns: minmax(320px,.95fr) minmax(420px,1.05fr); gap: clamp(56px,8vw,130px); align-items: start; padding: 110px clamp(28px,6vw,96px); background: #fff; }
.firm-overview .firm-section-heading { margin: 0; }
.firm-overview__copy { padding-left: clamp(28px,4vw,64px); border-left: 1px solid #d2cec3; }
.firm-overview__copy p { margin: 0 0 22px; color: #4b4f5c; font-size: 18px; line-height: 1.75; }

.firm-intro { background: #1c264a; color: #fff; }
.firm-intro .eyebrow { color: var(--orange); }
.firm-intro .firm-section-heading h2 { color: #fff; }
.firm-intro .firm-pillars { border-color: rgba(255,255,255,.2); }
.firm-intro .firm-pillars article { background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.2); }
.firm-intro .firm-pillars h3 { color: #fff; }
.firm-intro .firm-pillars p { color: rgba(255,255,255,.74); }

/* Stronger warm divider above Our Attorneys */
.firm-certification + .team { border-top: 3px solid #ede3d7; }

@media (max-width: 900px) {
  .firm-slider .firm-slide .hero-card__content { width: 72%; }
  .firm-overview { grid-template-columns: 1fr; gap: 34px; }
  .firm-overview__copy { border-left: 0; border-top: 1px solid #d2cec3; padding: 30px 0 0; }
}
@media (max-width: 620px) {
  .firm-slider .hero-slides { height: 720px; }
  .firm-slider .firm-slide .hero-card__content { width: 100%; padding: 88px 24px 76px; }
  .firm-slider .firm-slide--two .hero-card__overlay,
  .firm-slider .firm-slide--three .hero-card__overlay { background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.82) 58%, rgba(255,255,255,.45) 100%); }
  .firm-overview { padding: 76px 24px; }
}


/* Sitewide footer color */
footer,
.journal-footer,
footer.article-mini-footer:not(.article-mini-footer) {
  background-color: #1c264a;
}

/* Our Firm single static hero copied exactly from homepage slide 2 */
.firm-static-hero {
  position: relative;
  height: clamp(720px, 54.6875vw, 1050px);
  overflow: hidden;
  background: #fff;
}
.firm-static-hero .hero-card {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.firm-static-hero .hero-card--background .hero-card__background {
  background-image: url("../images/backgrounds/FIRM.webp");
  background-size: cover;
  background-position: center;
}
.firm-static-hero .hero-card--background .hero-card__content {
  width: 49%;
  min-height: 100%;
}

/* Core Values intro above the numbered list */
.firm-values__content { min-width: 0; }
.firm-values__intro {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(320px, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
  margin-bottom: 54px;
}
.firm-values__intro h2 {
  margin: 0;
  color: #242426;
  font: 400 clamp(42px, 4.5vw, 68px)/1.02 Georgia, 'Times New Roman', serif;
  letter-spacing: -.04em;
}
.firm-values__intro p {
  margin: 4px 0 0;
  color: #65615b;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .firm-static-hero { height: 760px; }
  .firm-static-hero .hero-card--background .hero-card__content { width: 72%; }
  .firm-values__intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
}
@media (max-width: 520px) {
  .firm-static-hero { height: 700px; }
  .firm-static-hero .hero-card--background .hero-card__content { width: 100%; }
}


/* Index contact locations panel */
.contact-locations {
  margin-top: 46px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(17,18,42,.52);
}
.contact-locations__kicker {
  margin: 0 0 28px;
  color: #ede3d7;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .17em;
  font-weight: 900;
}
.contact-locations__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 42px;
}
.contact-location h3 {
  margin: 0 0 3px;
  color: #fff;
  font: 700 14px/1.25 Arial, Helvetica, sans-serif;
}
.contact-location p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.35;
}
.contact-location a {
  color: inherit;
  text-decoration: none;
}
.contact-location a:hover { color: var(--orange); }
@media (max-width: 620px) {
  .contact-locations { padding: 24px 18px; }
  .contact-locations__grid { grid-template-columns: 1fr; gap: 22px; }
}

/* Match the desktop contact form bottom edge to the locations panel. */
.contact-locations {
  border: 1px solid rgba(232,155,80,.42);
}

@media (min-width: 901px) {
  .contact-form {
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }

  .contact-form .form-grid {
    flex: 1;
    grid-template-rows: auto auto auto minmax(235px, 1fr);
  }

  .contact-form .form-field--full:last-child {
    min-height: 0;
  }

  .contact-form textarea {
    height: 100%;
    min-height: 235px;
  }
}


/* All location full-width hero images use the Palm Beach Gardens hero dimensions. */
.location-hero.location-hero--full {
  position: relative;
  height: 650px;
  min-height: 650px;
  max-height: 650px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #1c264a url("../images/locations/fort-lauderdale-hero.webp") center center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.location-hero.location-hero--full.location-hero--nyc {
  background-image: url("../images/locations/new-york-city-hero.webp");
}

.location-hero.location-hero--full.location-hero--naples {
  background-image: url("../images/locations/naples-hero.webp");
}

.location-hero.location-hero--full.location-hero--tampa {
  background-image: url("../images/locations/tampa-hero.webp");
}
.location-hero.location-hero--full.location-hero--wpb {
  background-image: url("../images/locations/west-palm-beach-hero.webp");
}



.location-hero.location-hero--full.location-hero--pbg {
  background-image: url("../images/locations/palm-beach-gardens-hero.webp");
}

.location-hero.location-hero--full.location-hero--miami {
  background-image: url("../images/locations/miami-hero.webp");
}

.location-hero.location-hero--full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,38,74,.04) 0%, rgba(28,38,74,.08) 45%, rgba(28,38,74,.16) 100%);
  pointer-events: none;
}
.location-hero.location-hero--full .location-hero__copy {
  position: relative;
  z-index: 1;
  width: min(760px, 48vw);
  height: 650px;
  min-height: 650px;
  max-height: 650px;
  box-sizing: border-box;
  padding: clamp(72px, 8vw, 132px) clamp(42px, 7vw, 118px) clamp(72px, 8vw, 132px) clamp(36px, 5vw, 84px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}
.location-hero.location-hero--full .location-hero__copy > p:not(.eyebrow) {
  max-width: 610px;
}
@media (max-width: 820px) {
  .location-hero.location-hero--full {
    height: 560px;
    min-height: 560px;
    max-height: 560px;
    background-position: 42% center;
  }
  .location-hero.location-hero--full .location-hero__copy {
    width: 100%;
    height: 560px;
    min-height: 560px;
    max-height: 560px;
    padding: 72px 28px;
    align-items: flex-end;
    text-align: right;
    background: linear-gradient(90deg, rgba(28,38,74,.18), rgba(28,38,74,.48));
  }
}


/* NYC, Naples, and Tampa maps sit on the right, so keep hero copy on the open left side. */
@media (min-width: 821px) {
  .location-hero.location-hero--full.location-hero--nyc,
  .location-hero.location-hero--full.location-hero--naples,
  .location-hero.location-hero--full.location-hero--tampa {
    justify-content: flex-start;
  }

  .location-hero.location-hero--full.location-hero--nyc .location-hero__copy,
  .location-hero.location-hero--full.location-hero--naples .location-hero__copy,
  .location-hero.location-hero--full.location-hero--tampa .location-hero__copy {
    align-items: flex-start;
    text-align: left;
    padding: clamp(72px, 8vw, 132px) clamp(36px, 5vw, 84px) clamp(72px, 8vw, 132px) clamp(42px, 7vw, 118px);
  }

  .location-hero.location-hero--full.location-hero--nyc .location-hero__copy > p:not(.eyebrow),
  .location-hero.location-hero--full.location-hero--naples .location-hero__copy > p:not(.eyebrow),
  .location-hero.location-hero--full.location-hero--tampa .location-hero__copy > p:not(.eyebrow) {
    margin-left: 0;
    margin-right: auto;
  }
}

/* Fort Lauderdale page-only announcement marquee colorway. */
.announcement.announcement--orange {
  background: var(--orange);
  color: #fff;
}
.announcement.announcement--orange .announcement-article {
  color: #fff;
}

/* Individual Practice Areas explore buttons inside homepage dropdowns. */
.practice-preview__submenu .practice-preview__submenu-button {
  display: inline-flex;
  width: auto;
  margin-top: 18px;
  padding: 13px 22px;
  color: var(--navy);
  border: 1px solid var(--navy);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 700;
}
.practice-preview__submenu .practice-preview__submenu-button:hover,
.practice-preview__submenu .practice-preview__submenu-button:focus-visible {
  background: var(--navy);
  color: #fff;
}

/* Homepage Practice Areas explore buttons: solid blue with no submenu dash. */
.practice-preview__submenu .practice-preview__submenu-button {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.practice-preview__submenu .practice-preview__submenu-button::before {
  content: none;
  display: none;
}
.practice-preview__submenu .practice-preview__submenu-button:hover,
.practice-preview__submenu .practice-preview__submenu-button:focus-visible {
  background: #111a33;
  border-color: #111a33;
  color: #fff;
}

/* Sitewide contact readability overlay: darkest behind the left-side copy,
   gradually easing toward the form while preserving the technical artwork. */
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(4, 8, 30, 0.88) 0%,
    rgba(8, 15, 45, 0.76) 32%,
    rgba(19, 30, 70, 0.48) 62%,
    rgba(28, 38, 74, 0.16) 100%
  );
}

/* Every page's bottom site footer uses the same deep navy. */
body > footer {
  background: #000217 !important;
  color: #fff;
}

@media (max-width: 900px) {
  .contact::before {
    background: linear-gradient(
      180deg,
      rgba(4, 8, 30, 0.88) 0%,
      rgba(8, 15, 45, 0.72) 48%,
      rgba(19, 30, 70, 0.38) 100%
    );
  }
}

/* Exact sampled sitewide contact/footer colors requested 2026-07-28. */
.contact::before {
  background: linear-gradient(
    90deg,
    rgba(18, 21, 55, 1) 0%,
    rgba(18, 21, 55, 0.92) 28%,
    rgba(18, 21, 55, 0.58) 58%,
    rgba(18, 21, 55, 0) 100%
  );
}

body > footer,
.journal-footer {
  background: #0b0b21 !important;
  color: #fff;
}

@media (max-width: 900px) {
  .contact::before {
    background: linear-gradient(
      180deg,
      rgba(18, 21, 55, 0.90) 0%,
      rgba(18, 21, 55, 0.82) 48%,
      rgba(18, 21, 55, 0.18) 100%
    );
  }
}


/* Editorial Our Team grid */
.staff-page--editorial { background: #f4f1ea; }
.staff-hero--editorial { padding-top: 110px; padding-bottom: 90px; }
.people-editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 38px);
  padding: clamp(56px, 7vw, 104px) clamp(28px, 4vw, 70px) clamp(90px, 9vw, 140px);
  align-items: start;
}
.people-card { min-width: 0; }
.people-card__image {
  width: 100%;
  overflow: hidden;
  background: #e8e2d7;
  border: 1px solid #d2cec3;
}
.people-card--featured .people-card__image { aspect-ratio: 1 / 1.08; }
.people-card--standard .people-card__image { aspect-ratio: 0.82; }
.people-card__copy { padding: 22px 2px 0; }
.people-card__copy .eyebrow { margin-bottom: 11px; }
.people-card__copy h2 {
  margin: 0 0 9px;
  color: var(--ink);
  font: 400 clamp(30px, 3vw, 48px)/.98 Georgia, 'Times New Roman', serif;
  letter-spacing: -.045em;
}
.people-card--standard .people-card__copy h2 { font-size: clamp(27px, 2.35vw, 38px); }
.people-card__copy > p:last-child { margin: 0; color: #706b63; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.people-card--yurie { grid-column: 1 / span 6; grid-row: 1; }
.people-card--jesus { grid-column: 9 / span 4; grid-row: 1; margin-top: 12%; }
.people-card--jai { grid-column: 1 / span 4; grid-row: 2; margin-top: 4%; }
.people-card--dylan { grid-column: 5 / span 4; grid-row: 2; margin-top: 14%; }
.people-card--jacqueline { grid-column: 7 / span 6; grid-row: 3; margin-top: 2%; }

@media (max-width: 900px) {
  .people-editorial { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .people-card--yurie,
  .people-card--jacqueline { grid-column: 1 / -1; }
  .people-card--jesus,
  .people-card--jai,
  .people-card--dylan { grid-column: auto; margin-top: 0; }
  .people-card--featured .people-card__image { aspect-ratio: 1.35; }
}
@media (max-width: 620px) {
  .people-editorial { grid-template-columns: 1fr; padding-left: 22px; padding-right: 22px; }
  .people-card--yurie,
  .people-card--jacqueline,
  .people-card--jesus,
  .people-card--jai,
  .people-card--dylan { grid-column: 1; margin-top: 0; }
  .people-card--featured .people-card__image,
  .people-card--standard .people-card__image { aspect-ratio: .9; }
  .people-card__copy h2,
  .people-card--standard .people-card__copy h2 { font-size: 34px; }
}

/* Equal three-column Our Team layout with intro tile. */
.people-editorial.people-editorial--equal {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.4vw, 38px);
  align-items: start;
}
.people-editorial--equal .people-card,
.people-editorial--equal .people-intro-card {
  grid-column: auto;
  grid-row: auto;
  margin-top: 0;
  min-width: 0;
}
.people-editorial--equal .people-card__image,
.people-editorial--equal .people-intro-card {
  aspect-ratio: .82;
}
.people-intro-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 3.5vw, 54px);
  background: var(--navy);
  border: 1px solid #d2cec3;
  color: #fff;
  overflow: hidden;
}
.people-intro-card .eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
}
.people-intro-card h1 {
  margin: 0 0 24px;
  font: 400 clamp(46px, 5vw, 78px)/.92 Georgia, 'Times New Roman', serif;
  letter-spacing: -.05em;
}
.people-intro-card > p:last-child {
  margin: 0;
  max-width: 36ch;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,.82);
}
.people-editorial--equal .people-card__copy h2 {
  font-size: clamp(27px, 2.35vw, 38px);
}
@media (max-width: 900px) {
  .people-editorial.people-editorial--equal {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 620px) {
  .people-editorial.people-editorial--equal {
    grid-template-columns: 1fr;
  }
  .people-editorial--equal .people-intro-card,
  .people-editorial--equal .people-card__image {
    aspect-ratio: .9;
  }
}

/* Our Team intro: open editorial text block with no card treatment. */
.people-editorial--equal .people-intro-card {
  justify-content: flex-start;
  padding: 4px clamp(18px, 2.2vw, 34px) 0 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  overflow: visible;
}
.people-editorial--equal .people-intro-card .eyebrow {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--orange);
}
.people-editorial--equal .people-intro-card h1 {
  margin-top: 0;
  margin-bottom: 22px;
  color: var(--ink);
}
.people-editorial--equal .people-intro-card > p:last-child {
  color: #57534d;
}


/* Our Team portrait images */
.people-editorial--equal .people-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}


/* Linked Our Team cards */
.people-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.people-card__link .people-card__image { overflow: hidden; }
.people-card__link img { transition: transform .35s ease; }
.people-card__link:hover img { transform: scale(1.02); }


/* Our Team: smaller portraits and right-aligned profile buttons. */
.people-editorial--equal .people-card__image-link {
  display: block;
  width: 85%;
  margin: 0 auto;
  color: inherit;
  text-decoration: none;
}
.people-editorial--equal .people-card__copy {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
.people-card__image-link .people-card__image {
  overflow: hidden;
}
.people-card__image-link img {
  transition: transform .35s ease;
}
.people-card__image-link:hover img {
  transform: scale(1.02);
}
.people-card__name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.people-card__name-row h2 {
  margin: 0;
  min-width: 0;
}
.people-card__meet {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 11px 16px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .16em;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.people-card__meet:hover {
  background: transparent;
  color: var(--navy);
}
@media (max-width: 620px) {
  .people-editorial--equal .people-card__image-link,
  .people-editorial--equal .people-card__copy {
    width: 100%;
  }
  .people-card__name-row {
    align-items: flex-start;
  }
}

/* Our Team refinement: portraits 8% larger and job titles slightly lower. */
.people-editorial--equal .people-card__image-link,
.people-editorial--equal .people-card__copy {
  width: 91.8%;
}
.people-editorial--equal .people-card__copy > p:last-child {
  margin-top: 10px;
}
@media (max-width: 620px) {
  .people-editorial--equal .people-card__image-link,
  .people-editorial--equal .people-card__copy {
    width: 100%;
  }
}

/* Our Team: match homepage attorney borders and grid-pattern section background. */
.people-editorial.people-editorial--equal {
  position: relative;
  isolation: isolate;
  background-color: #fff;
  overflow: hidden;
}
.people-editorial.people-editorial--equal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/attorneys/attorneys-grid.webp");
  background-size: max(1100px, 100vw) auto;
  background-position: center top;
  background-repeat: repeat-y;
  opacity: .35;
  pointer-events: none;
}
.people-editorial--equal .people-card {
  width: 91.8%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 4px solid var(--line);
}
.people-editorial--equal .people-card__image-link,
.people-editorial--equal .people-card__copy {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.people-editorial--equal .people-card__image {
  border: 0;
  border-bottom: 1px solid var(--line);
}
.people-editorial--equal .people-card__copy {
  padding: 20px 22px 24px;
}
@media (max-width: 620px) {
  .people-editorial--equal .people-card {
    width: 100%;
  }
}

/* Our Team: softly clear the grid behind the intro copy without adding a box. */
.people-editorial.people-editorial--equal::before {
  background-image:
    radial-gradient(ellipse 42% 46% at 15% 18%,
      rgba(255,255,255,.99) 0%,
      rgba(255,255,255,.97) 52%,
      rgba(255,255,255,.78) 72%,
      rgba(255,255,255,0) 100%),
    url("../images/attorneys/attorneys-grid.webp");
}
@media (max-width: 900px) {
  .people-editorial.people-editorial--equal::before {
    background-image:
      radial-gradient(ellipse 62% 34% at 24% 10%,
        rgba(255,255,255,.99) 0%,
        rgba(255,255,255,.96) 58%,
        rgba(255,255,255,0) 100%),
      url("../images/attorneys/attorneys-grid.webp");
  }
}
@media (max-width: 620px) {
  .people-editorial.people-editorial--equal::before {
    background-image:
      linear-gradient(to bottom,
        rgba(255,255,255,.99) 0%,
        rgba(255,255,255,.97) 18%,
        rgba(255,255,255,0) 34%),
      url("../images/attorneys/attorneys-grid.webp");
  }
}

/* Our Team intro: white panel matching the Beyond Our Attorneys divider. */
.people-editorial.people-editorial--equal::before {
  background-image: url("../images/attorneys/attorneys-grid.webp");
}
.people-editorial--equal .people-intro-card {
  box-sizing: border-box;
  padding: clamp(30px, 3.5vw, 54px);
  background: #fff;
  border: 4px solid rgba(180, 146, 98, 0.22);
  color: var(--ink);
  overflow: hidden;
}
.people-editorial--equal .people-intro-card .eyebrow {
  margin-top: 0;
}
@media (max-width: 900px) {
  .people-editorial.people-editorial--equal::before {
    background-image: url("../images/attorneys/attorneys-grid.webp");
  }
}
@media (max-width: 620px) {
  .people-editorial.people-editorial--equal::before {
    background-image: url("../images/attorneys/attorneys-grid.webp");
  }
}

/* Our Team intro vertical adjustment. */
.people-editorial--equal .people-intro-card {
  position: relative;
  top: 15px;
}
\n\n/* Our Team intro: shorter top edge while preserving copy position, plus story CTA. */
.people-editorial--equal .people-intro-card {
  top: 27px;
  align-self: end;
  aspect-ratio: auto;
  height: calc(100% - 12px);
  padding-top: calc(clamp(30px, 3.5vw, 54px) - 12px);
}
.people-intro-card__story {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  min-width: 132px;
  padding: 14px 20px;
  background: var(--navy);
  border: 1px solid var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .16em;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.people-intro-card__story:hover {
  background: transparent;
  color: var(--navy);
}
@media (max-width: 620px) {
  .people-editorial--equal .people-intro-card {
    top: 15px;
    height: auto;
    min-height: 520px;
    padding-top: clamp(30px, 3.5vw, 54px);
  }
}

/* Our Team intro: visually shave only 6px from the top edge.
   Preserve the original width, position, height, and all internal content spacing. */
@media (min-width: 621px) {
  .people-editorial--equal .people-intro-card {
    clip-path: inset(6px 0 0 0);
  }
  .people-editorial--equal .people-intro-card::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    border-top: 3px solid rgba(180, 146, 98, 0.22);
    pointer-events: none;
  }
}

/* Our Team intro: cut away everything above the new top rule while keeping the box, text, and layout unchanged. */
@media (min-width: 621px) {
  .people-editorial--equal .people-intro-card {
    clip-path: inset(27px 0 0 0);
    border-top-color: transparent;
  }
  .people-editorial--equal .people-intro-card::before {
    top: 27px;
  }
}

/* Our Team intro: remove all visible borders while preserving layout and content. */
.people-editorial--equal .people-intro-card {
  border: 0 !important;
}
.people-editorial--equal .people-intro-card::before {
  display: none !important;
}

/* Our Team intro: orange border around the full visible panel; move contents down 5px. */
.people-editorial--equal .people-intro-card {
  border: 0 !important;
}
.people-editorial--equal .people-intro-card::before {
  content: "";
  display: block !important;
  position: absolute;
  top: 27px;
  right: 0;
  bottom: 0;
  left: 0;
  border: 4px solid rgba(180, 146, 98, 0.22);
  pointer-events: none;
  z-index: 2;
}
.people-editorial--equal .people-intro-card > * {
  transform: translateY(5px);
}
@media (max-width: 620px) {
  .people-editorial--equal .people-intro-card::before {
    top: 0;
  }
}

/* Our Team: move employee cards up 10px total without affecting intro box. */
.people-editorial--equal .people-card {
  transform: translateY(-10px);
}


/* Yurie biography quotation */
.bio-quote {
  margin: 42px 0 0;
  padding: 28px 0 0 28px;
  border-left: 3px solid var(--orange);
  font: italic 400 clamp(22px, 2.2vw, 34px)/1.45 Georgia, 'Times New Roman', serif;
  color: var(--navy);
}
.bio-quote cite {
  display: block;
  margin-top: 18px;
  font: 700 11px/1.2 Arial, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #706b63;
}


/* Yurie bio: raised section kicker with vertical credential cards in the left column. */
.bio-page--yurie .bio-content {
  grid-template-columns: minmax(250px, .42fr) minmax(0, 1.2fr);
  align-items: start;
}
.bio-page--yurie .bio-content__label {
  align-self: start;
}
.bio-page--yurie .bio-content__label > .eyebrow {
  margin-top: -14px;
  margin-bottom: 34px;
}
.bio-page--yurie .bio-credentials--sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: transparent;
  border: 0;
}
.bio-page--yurie .bio-credentials--sidebar > div {
  min-height: 0;
  padding: 30px 28px 34px;
  background: #fff;
  border: 1px solid #d2cec3;
}
.bio-page--yurie .bio-credentials--sidebar h3 {
  margin-top: 20px;
  font-size: clamp(25px, 2.2vw, 32px);
}
@media (max-width: 900px) {
  .bio-page--yurie .bio-content {
    grid-template-columns: 1fr;
  }
  .bio-page--yurie .bio-content__label > .eyebrow {
    margin-top: 0;
  }
  .bio-page--yurie .bio-credentials--sidebar {
    margin-bottom: 18px;
  }
}


/* Yurie bio refinement: kicker above biography and credential stack raised slightly. */
.bio-page--yurie .bio-credentials--sidebar {
  transform: translateY(-14px);
}
.bio-page--yurie .bio-content__about-kicker {
  margin: -14px 0 22px;
}
@media (max-width: 900px) {
  .bio-page--yurie .bio-credentials--sidebar {
    transform: none;
  }
  .bio-page--yurie .bio-content__about-kicker {
    margin-top: 0;
  }
}

/* Restore the About Yurie kicker to the site orange after moving it into the bio body. */
.bio-page--yurie .bio-content__body .bio-content__about-kicker {
  color: var(--orange);
}


/* Unified attorney and employee biography sidebar layout. */
.bio-page--sidebar-layout .bio-content {
  display: grid;
  grid-template-columns: minmax(245px, .72fr) minmax(0, 1.7fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
}
.bio-page--sidebar-layout .bio-content__label {
  position: relative;
  top: -18px;
}
.bio-page--sidebar-layout .bio-credentials--sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.bio-page--sidebar-layout .bio-credentials--sidebar > div {
  min-height: 0;
  padding: 30px 28px 34px;
}
.bio-page--sidebar-layout .bio-credentials--sidebar h3 {
  margin-top: 20px;
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 1.12;
}
.bio-page--sidebar-layout .bio-content__about-kicker {
  margin: 0 0 18px;
  color: var(--orange) !important;
}
@media (max-width: 820px) {
  .bio-page--sidebar-layout .bio-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .bio-page--sidebar-layout .bio-content__label { top: 0; }
}

/* All biography pages: make the left credential cards match Yurie's finalized layout exactly. */
.bio-page--sidebar-layout .bio-content {
  grid-template-columns: minmax(250px, .42fr) minmax(0, 1.2fr);
}
.bio-page--sidebar-layout .bio-credentials--sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: transparent;
  border: 0;
}
.bio-page--sidebar-layout .bio-credentials--sidebar > div {
  min-height: 0;
  padding: 30px 28px 34px;
  background: #fff;
  border: 1px solid #d2cec3;
}
.bio-page--sidebar-layout .bio-credentials--sidebar h3 {
  margin-top: 20px;
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 1.12;
}
@media (max-width: 900px) {
  .bio-page--sidebar-layout .bio-content {
    grid-template-columns: 1fr;
  }
}


/* Software patent explorer */
.software-explorer{grid-template-columns:260px minmax(0,1fr);width:100%;max-width:none;margin:0;min-height:690px;}
.software-explorer .practice-explorer__menu{padding:34px 22px 46px;}
.software-explorer .practice-explorer__heading h2{font-size:42px;margin:8px 0 28px;}
.software-explorer .practice-tab{min-height:72px;grid-template-columns:34px 1fr;gap:10px;padding:9px 10px;}
.software-explorer .practice-tab:hover,.software-explorer .practice-tab.is-active{padding-left:16px;}
.software-explorer .practice-tab__label{font-size:20px;line-height:1.12;}
.software-explorer .practice-explorer__content{padding:clamp(64px,7vw,105px) clamp(46px,8vw,128px);}
.software-explorer .practice-article{max-width:860px;}
.software-explorer .practice-article h2{font-size:clamp(42px,4.6vw,72px);}
.software-explorer .practice-article>p:not(.eyebrow){margin-bottom:22px;}
@media(max-width:900px){.software-explorer{grid-template-columns:1fr}.software-explorer .practice-explorer__menu{padding:28px 20px}.software-explorer .practice-explorer__tabs{display:flex;overflow-x:auto;gap:8px;padding-bottom:8px}.software-explorer .practice-tab{flex:0 0 220px;min-height:68px;border:1px solid #cbc9c3}.software-explorer .practice-tab:first-child{border-top:1px solid #cbc9c3}.software-explorer .practice-explorer__content{padding:54px 24px}.software-explorer .practice-tab__label{font-size:18px}}

/* Software explorer: inactive hover is faded orange; active selection stays navy. */
.software-explorer .practice-tab:not(.is-active):hover {
  background: rgba(232, 155, 80, 0.28);
  color: var(--navy);
  padding-left: 16px;
}
.software-explorer .practice-tab.is-active,
.software-explorer .practice-tab.is-active:hover {
  background: var(--navy);
  color: #fff;
}

/* Patents practice explorer: match the compact Software page desktop layout. */
.patent-explorer .practice-tab{grid-template-columns:34px 28px minmax(0,1fr);gap:10px;}
.patent-explorer .practice-tab__icon svg{width:22px;height:22px;}
.patent-explorer .practice-tab__label{font-size:20px;line-height:1.12;}
@media(max-width:900px){
  .patent-explorer .practice-tab{grid-template-columns:30px 26px minmax(0,1fr);}
  .patent-explorer .practice-tab__icon svg{width:20px;height:20px;}
}

/* Unified compact explorer layout: wider left menu across software, patents, trademarks, copyrights, and industries. */
.compact-explorer {
  grid-template-columns: 338px minmax(0, 1fr);
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 690px;
}
.compact-explorer .practice-explorer__menu { padding: 34px 24px 46px; }
.compact-explorer .practice-explorer__heading h2 { font-size: 42px; margin: 8px 0 28px; }
.compact-explorer .practice-tab {
  min-height: 72px;
  gap: 10px;
  padding: 9px 10px;
}
.compact-explorer .practice-tab__label { font-size: 20px; line-height: 1.12; }
.compact-explorer .practice-explorer__content { padding: clamp(64px, 7vw, 105px) clamp(46px, 8vw, 128px); }
.compact-explorer .practice-article { max-width: 860px; }
.compact-explorer .practice-article h2 { font-size: clamp(42px, 4.6vw, 72px); }
.compact-explorer .practice-article > p:not(.eyebrow) { margin-bottom: 22px; }

/* Text-only explorers. */
.compact-explorer:not(.icon-explorer) .practice-tab { grid-template-columns: 34px minmax(0, 1fr); }

/* Explorers that retain service icons. */
.compact-explorer.icon-explorer .practice-tab { grid-template-columns: 34px 28px minmax(0, 1fr); }
.compact-explorer.icon-explorer .practice-tab__icon svg { width: 22px; height: 22px; }

/* Inactive hover is faded orange; active selection remains navy. */
.compact-explorer .practice-tab:not(.is-active):hover {
  background: rgba(232, 155, 80, 0.28);
  color: var(--navy);
  padding-left: 16px;
}
.compact-explorer .practice-tab.is-active,
.compact-explorer .practice-tab.is-active:hover {
  background: var(--navy);
  color: #fff;
  padding-left: 16px;
}

@media (max-width: 900px) {
  .compact-explorer { grid-template-columns: 1fr; }
  .compact-explorer .practice-explorer__menu { padding: 28px 20px; }
  .compact-explorer .practice-explorer__tabs { display: flex; overflow-x: auto; gap: 8px; padding-bottom: 8px; }
  .compact-explorer .practice-tab { flex: 0 0 220px; min-height: 68px; border: 1px solid #cbc9c3; }
  .compact-explorer .practice-tab:first-child { border-top: 1px solid #cbc9c3; }
  .compact-explorer .practice-explorer__content { padding: 54px 24px; }
  .compact-explorer .practice-tab__label { font-size: 18px; }
  .compact-explorer.icon-explorer .practice-tab { grid-template-columns: 30px 26px minmax(0, 1fr); }
  .compact-explorer.icon-explorer .practice-tab__icon svg { width: 20px; height: 20px; }
}

/* Practice Areas + Industries explorer typography normalization */
.compact-explorer .practice-explorer__heading h2,
.software-explorer .practice-explorer__heading h2 {
  font-family: "Times New Roman", Times, serif !important;
  font-weight: 400;
}
.compact-explorer .eyebrow,
.software-explorer .eyebrow {
  text-transform: uppercase;
}

/* Location hero consultation CTA: white button with navy text and border. */
.location-hero .button--solid {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.location-hero .button--solid:hover {
  background: #fff;
  color: var(--navy);
  border-color: var(--navy);
}

/* Force Palm Beach Gardens location title to exactly two lines. */
.location-hero--pbg .location-title-line {
  display: block;
  white-space: nowrap;
}

/* About the Author action buttons */
.author-contact-button {
  margin-left: 12px;
}

@media (max-width: 520px) {
  .author-contact-button {
    margin-left: 8px;
  }
}

/* Shift homepage Practice Areas subtext 22px left. */
@media (min-width: 901px) {
  .practice-preview__description {
    transform: translateX(-22px);
  }
}


/* THE FIRM EDITORIAL PAGE */
.firm-page--editorial{background:#fff;color:#111}
.firm-quote-hero{background:#1c264a;color:#fff;padding:clamp(92px,10vw,160px) clamp(28px,7vw,110px)}
.firm-quote-hero__inner{max-width:1180px;margin:0 auto}
.firm-quote-hero .eyebrow{color:#e57d3e;margin:0 0 32px}
.firm-quote-hero blockquote{margin:0;max-width:1120px;font-family:"Times New Roman",serif;font-size:clamp(44px,5.2vw,82px);line-height:.98;letter-spacing:-.045em;font-weight:700}
.firm-quote-hero__credit{margin:30px 0 0;font-size:15px;font-weight:700;letter-spacing:.08em;text-transform:uppercase}
.firm-editorial-section{display:grid;grid-template-columns:minmax(180px,.58fr) minmax(0,1.42fr);gap:clamp(38px,7vw,120px);padding:clamp(80px,9vw,138px) clamp(28px,7vw,110px);border-bottom:1px solid rgba(28,38,74,.16)}
.firm-editorial-section__label{padding-top:8px}
.firm-editorial-section__label .eyebrow{margin:0;color:#d86f33}
.firm-editorial-section__content{max-width:900px}
.firm-editorial-section__content>h2{margin:0 0 34px;font-family:"Times New Roman",serif;font-size:clamp(42px,4.7vw,72px);line-height:.98;letter-spacing:-.04em;color:#1c264a}
.firm-editorial-section__content>p{margin:0 0 22px;font-size:clamp(17px,1.35vw,21px);line-height:1.62;color:#2b2b2b}
.firm-value-list{margin-top:54px;border-top:1px solid rgba(28,38,74,.2)}
.firm-value-item{display:grid;grid-template-columns:minmax(210px,.65fr) minmax(0,1.35fr);gap:40px;padding:34px 0;border-bottom:1px solid rgba(28,38,74,.2)}
.firm-value-item h3,.firm-reasons h3{margin:0;font-family:"Times New Roman",serif;font-size:clamp(27px,2.2vw,36px);line-height:1;color:#1c264a}
.firm-value-item p,.firm-reasons p{margin:0;font-size:17px;line-height:1.58;color:#343434}
.firm-reasons{margin-top:54px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));border-top:1px solid rgba(28,38,74,.2);border-left:1px solid rgba(28,38,74,.2)}
.firm-reasons article{padding:34px;border-right:1px solid rgba(28,38,74,.2);border-bottom:1px solid rgba(28,38,74,.2)}
.firm-reasons h3{margin-bottom:18px}
.firm-google-reviews-placeholder{margin-top:46px;min-height:210px;border:1px solid rgba(28,38,74,.22);background:#f7f5ef;display:flex;align-items:center;justify-content:center;color:#1c264a;font-weight:700;letter-spacing:.16em;font-size:13px}
@media(max-width:820px){
  .firm-quote-hero{padding:78px 28px}
  .firm-quote-hero blockquote{font-size:clamp(38px,11vw,58px)}
  .firm-editorial-section{grid-template-columns:1fr;gap:26px;padding:72px 28px}
  .firm-value-item{grid-template-columns:1fr;gap:14px}
  .firm-reasons{grid-template-columns:1fr}
}

/* Global kicker weight normalization — all site kicker/eyebrow labels stay bold. */
.eyebrow,
.article-kicker,
.contact-locations__kicker,
.hero-story-kicker,
.story-kicker,
.showcase-hero__eyebrow,
.video-hero__eyebrow,
.video-card__kicker {
  font-weight: 800 !important;
}

/* =========================================================
   MOBILE OPTIMIZATION LAYER
   Desktop baseline remains untouched: all rules below are
   scoped to tablet/mobile breakpoints only.
   ========================================================= */
@media (max-width: 767px) {
  html { -webkit-text-size-adjust: 100%; scroll-padding-top: 112px; }
  body { overflow-x: hidden; }
  img, svg, video, iframe { max-width: 100%; }
  input, select, textarea, button { font-size: 16px; }

  /* Header / navigation — sticky mobile header stack */
  .site-header {
    height: 72px;
    padding: 8px 18px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .brand-logo { width: min(220px, 64vw); }
  .menu-button {
    width: 44px;
    height: 44px;
    padding: 7px 4px;
  }
  .site-menu {
    position: fixed;
    top: 112px;
    right: 0;
    left: 0;
    max-height: calc(100dvh - 112px);
    padding: 10px 20px 24px;
    z-index: 1001;
  }
  .site-menu > .nav-direct,
  .site-menu > .nav-dropdown > summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 14px 0;
  }
  .nav-dropdown__menu a { min-height: 42px; display:flex; align-items:center; }
  .nav-phone-mobile { min-height: 46px; }

  /* Announcement marquee — second half of sticky mobile header stack */
  .announcement {
    height: 40px;
    font-size: 11px;
    position: sticky;
    top: 72px;
    z-index: 999;
  }
  .marquee--announcement .marquee__group { gap: 42px; padding-right: 42px; }
  .announcement-article { gap: 14px; }
  .announcement-article strong { letter-spacing: .1em; }

  /* Global spacing / typography */
  .section-pad { padding: 52px 20px; }
  .eyebrow { font-size: 12px; margin-bottom: 14px; }
  .button-row { gap: 10px; }
  .button { min-height: 48px; padding: 0 18px; }

  /* Homepage hero */
  .hero-slides { height: 650px; }
  .hero-card__content,
  .hero-card--plain .hero-card__content,
  .hero-card--background .hero-card__content,
  .hero-card--feature .hero-card__content {
    padding: 40px 20px 44px;
  }
  .hero-card h1,
  .hero-card h2 { font-size: clamp(40px, 12vw, 52px); line-height: .92; }
  .hero-copy { font-size: 12px; line-height: 1.45; max-width: 92%; }
  .hero-card > .hero-card__content { transform: none; }
  .hero-pagination { bottom: 16px; }
  .hero-pagination button { width: 30px; height: 4px; }

  /* Homepage content */
  .mission h2,
  .story-copy h2,
  .team > h2,
  .contact h2 { font-size: clamp(40px, 11vw, 50px); line-height: .98; }
  .story-grid,
  .team-grid,
  .team-grid--senior { grid-template-columns: 1fr; }
  .team-grid--senior { margin-bottom: 44px; }
  .attorney-card--compact { max-width: 520px; width: 100%; margin-inline: auto; }
  .associate-section { padding-inline: 20px; }
  .associate-section__heading { grid-template-columns: 1fr; gap: 12px; }
  .associate-card { grid-template-columns: 1fr; }
  .associate-card__image { min-height: 0; aspect-ratio: .92; }

  /* Contact */
  .contact { padding: 52px 20px; gap: 36px; }
  .contact-form { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 18px; }
  .form-field--full { grid-column: auto; }
  .contact-form input,
  .contact-form select { height: 50px; }
  .contact-form textarea { min-height: 130px; }
  .contact-locations__grid { grid-template-columns: 1fr; gap: 18px; }
  footer { padding: 26px 20px; }

  /* Journal / articles */
  .journal-hero { padding: 44px 20px 34px; }
  .journal-list { padding: 14px 20px 72px; gap: 16px; }
  .journal-card { padding: 24px 20px 26px; gap: 16px; }
  .journal-content h1,
  .journal-content h2 { font-size: clamp(28px, 8vw, 36px); line-height: 1; }
  .journal-content > p { font-size: 15px; line-height: 1.45; }
  .article-wrap { padding: 52px 20px 72px; }
  .article-wrap h1 { font-size: clamp(42px, 12vw, 58px); line-height: .94; }
  .article-deck { font-size: 18px; line-height: 1.5; }
  .article-rule { margin: 34px 0; }
  .article-body { font-size: 18px; line-height: 1.65; }
  .article-body h2 { margin-top: 40px; font-size: 30px; }
  .feature-article { padding: 40px 20px 64px; }
  .feature-topline { display: block; margin-bottom: 22px; }
  .case-study-label { font-size: clamp(42px, 12vw, 58px); }
  .article-side-nav { justify-items: start; margin-top: 20px; }
  .feature-title-block { padding: 22px 0 14px; }
  .feature-title-block h1 { font-size: clamp(40px, 11vw, 56px); }
  .feature-byline { justify-content: flex-start; flex-wrap: wrap; gap: 10px 24px; }
  .feature-copy { padding: 24px 0 8px; font-size: 16px; }
  .author-section { grid-template-columns: 1fr; gap: 28px; padding: 36px 0 0; }
  .author-copy h2 { font-size: clamp(40px, 11vw, 54px); }
  .author-photo,
  .author-image-placeholder { min-height: 0; aspect-ratio: .9; }
  .article-mini-footer { grid-template-columns: 1fr 1fr; gap: 10px 18px; padding-inline: 0; }

  /* Services */
  .services-intro { min-height: 0; padding: 58px 20px 54px; }
  .services-intro-content { padding: 0; }
  .services-intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .services-intro h1 { font-size: clamp(44px, 13vw, 62px); }
  .services-intro-copy p { font-size: 16px; line-height: 1.55; }
  .services-intro-button { width: 100%; min-width: 0; }
  .services-index { padding: 0 20px 64px; }
  .service-row {
    grid-template-columns: 42px minmax(0,1fr);
    gap: 10px 16px;
    min-height: 0;
    padding: 28px 0;
  }
  .service-number { padding-top: 5px; grid-row: 1 / span 3; }
  .service-row h2 { font-size: clamp(36px, 10vw, 46px); }
  .service-row p,
  .service-row a { grid-column: 2; }
  .service-row p { font-size: 15px; }
  .service-detail { grid-template-columns: 1fr; gap: 28px; padding: 56px 20px; }
  .service-detail-heading { position: static; }
  .service-detail-heading h2 { font-size: clamp(38px, 10vw, 50px); }
  .service-accordion summary { min-height: 58px; padding: 0 16px; font-size: 18px; }
  .service-accordion details > div { padding: 0 16px 18px; }
  .services-cta { padding: 56px 20px; flex-direction: column; align-items: flex-start; }
  .services-cta h2 { font-size: clamp(40px, 11vw, 54px); }

  /* Attorney bios / people */
  .bio-hero { min-height: 0; grid-template-columns: 1fr; }
  .bio-hero__image,
  .bio-hero__photo { min-height: 0; aspect-ratio: .9; border-right: 0; border-bottom: 1px solid #d2cec3; }
  .bio-hero__copy { padding: 48px 20px 54px; }
  .bio-hero h1 { font-size: clamp(46px, 13vw, 64px); }
  .bio-intro { font-size: 16px; }
  .bio-content { grid-template-columns: 1fr; gap: 26px; padding: 56px 20px; }
  .bio-content__body h2 { font-size: clamp(40px, 11vw, 54px); margin-bottom: 26px; }
  .bio-content__body p { font-size: 16px; line-height: 1.65; }
  .bio-credentials { grid-template-columns: 1fr; }
  .bio-credentials > div { min-height: 0; padding: 30px 20px; }
  .bio-credentials h3 { font-size: 28px; }
  .staff-hero { padding: 56px 20px 46px; }
  .staff-hero h1 { font-size: clamp(46px, 13vw, 64px); }
  .staff-hero > p:last-child { font-size: 16px; }
  .staff-grid { padding: 48px 20px 70px; grid-template-columns: 1fr; gap: 28px; }
  .people-editorial,
  .people-editorial.people-editorial--equal { display: grid; grid-template-columns: 1fr; gap: 38px; padding-inline: 20px; }
  .people-card,
  .people-intro-card,
  .people-card--yurie,
  .people-card--jesus,
  .people-card--jai,
  .people-card--dylan,
  .people-card--jacqueline {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  /* Location pages */
  .location-hero,
  .location-hero.location-hero--full {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .location-hero__copy,
  .location-hero.location-hero--full .location-hero__copy {
    min-height: 500px;
    padding: 54px 20px 48px;
    align-items: flex-start;
    text-align: left;
  }
  .location-hero__copy h1,
  .location-hero.location-hero--full .location-hero__copy h1 {
    font-size: clamp(46px, 13vw, 64px);
    margin: 12px 0 18px;
  }
  .location-hero__copy > p:not(.eyebrow),
  .location-hero.location-hero--full .location-hero__copy > p:not(.eyebrow) {
    margin-left: 0;
    font-size: 16px;
    line-height: 1.55;
  }
  .location-hero__graphic { min-height: 330px; padding: 24px 20px; }
  .location-details { grid-template-columns: 1fr; gap: 28px; padding: 56px 20px; }
  .location-details h2 { font-size: clamp(38px, 10vw, 50px); }
  .location-details__copy > p { font-size: 16px; line-height: 1.65; margin-bottom: 30px; }
  .location-info-grid { grid-template-columns: 1fr; }
  .location-info-grid > div { min-height: 0; padding: 22px 18px; }

  /* Practice-area pages */
  .practice-detail-hero { min-height: 500px; }
  .practice-detail-hero__inner { width: auto; margin: 0 20px 46px; }
  .practice-detail-hero h1 { font-size: clamp(42px, 11vw, 56px); }
  .practice-detail-hero__inner > p:not(.eyebrow) { font-size: 16px; line-height: 1.55; }
  .practice-explorer { grid-template-columns: 1fr; min-height: 0; }
  .practice-explorer__menu { border-right: 0; padding: 20px; overflow-x: hidden; }
  .practice-explorer__tabs { display: grid; grid-template-columns: 1fr; gap: 6px; }
  .practice-tab {
    min-height: 68px;
    grid-template-columns: 34px 32px minmax(0,1fr);
    gap: 10px;
    padding: 8px 10px;
  }
  .practice-tab:hover,
  .practice-tab.is-active { padding-left: 14px; }
  .practice-tab__label { font-size: 22px; }
  .practice-explorer__content { min-height: 0; padding: 48px 20px 56px; }
  .practice-article h2 { font-size: clamp(38px, 10vw, 50px); margin-bottom: 22px; }
  .practice-article > p:not(.eyebrow) { font-size: 16px; line-height: 1.65; }
  .software-explorer .practice-explorer__tabs { display: grid; overflow: visible; }
  .software-explorer .practice-tab { flex: none; width: 100%; }
  .software-explorer .practice-explorer__content { padding: 48px 20px 56px; }

  /* Firm legacy/shared layouts */
  .firm-hero { min-height: 520px; padding: 58px 20px; }
  .firm-hero h1 { font-size: clamp(42px, 11vw, 56px); }
  .firm-hero p:not(.eyebrow) { font-size: 16px; line-height: 1.6; }
  .firm-intro,
  .firm-certification,
  .firm-values,
  .firm-overview { padding: 56px 20px; }
  .firm-pillars { grid-template-columns: 1fr; }
  .firm-pillars article { min-height: 0; padding: 30px 22px; }
  .firm-values__grid article { grid-template-columns: 1fr; gap: 12px; }
  .firm-certification,
  .firm-overview { grid-template-columns: 1fr; gap: 28px; }
  .firm-certification__copy,
  .firm-overview__copy { border-left: 0; padding-left: 0; }

  /* Prevent accidental horizontal overflow from long titles / URLs */
  .article-body,
  .feature-copy,
  .journal-content,
  .location-details,
  .bio-content,
  .contact,
  .service-detail,
  .practice-explorer__content { overflow-wrap: anywhere; }
}

@media (max-width: 420px) {
  .site-header { padding-inline: 14px; }
  .brand-logo { width: min(205px, 62vw); }
  .hero-slides { height: 620px; }
  .hero-card h1,
  .hero-card h2 { font-size: clamp(38px, 11.5vw, 48px); }
  .section-pad,
  .contact,
  .services-index,
  .location-details,
  .bio-content,
  .staff-grid { padding-left: 16px; padding-right: 16px; }
  .journal-list,
  .journal-hero,
  .article-wrap,
  .feature-article { padding-left: 16px; padding-right: 16px; }
  .article-wrap h1,
  .feature-title-block h1 { font-size: clamp(38px, 11.5vw, 50px); }
}


/* Mobile only: hide office locations inside the contact section. */
@media (max-width: 767px) {
  .contact .contact-locations {
    display: none !important;
  }
}

/* LOCKED DESKTOP ATTORNEY CARD FOOTERS
   Preserve the approved three-card desktop composition and prevent names
   from wrapping before the tablet/mobile layout takes over. */
@media (min-width: 1101px) and (max-width: 1524px) {
  .team-grid--senior .attorney-card--compact .attorney-card__content {
    column-gap: clamp(8px, 1vw, 18px);
    padding-left: clamp(12px, 1.35vw, 20px);
    padding-right: clamp(12px, 1.35vw, 20px);
  }

  .team-grid--senior .attorney-card--compact .attorney-card__content h3 {
    white-space: nowrap;
    font-size: clamp(22px, 2.05vw, 31px);
  }

  .team-grid--senior .attorney-button {
    min-width: clamp(108px, 9.4vw, 144px);
    padding-left: clamp(10px, 1vw, 18px);
    padding-right: clamp(10px, 1vw, 18px);
  }
}

@media (min-width: 1525px) {
  .team-grid--senior .attorney-card--compact .attorney-card__content h3 {
    white-space: nowrap;
  }
}


/* Mobile navigation: white dropdown treatment */
@media (max-width: 980px) {
  .site-menu {
    background: #fff;
    color: var(--navy);
  }

  .site-menu > .nav-direct,
  .site-menu > .nav-dropdown > summary {
    color: var(--navy);
    border-bottom-color: rgba(28,38,74,.14);
  }

  .nav-dropdown__menu a {
    color: rgba(28,38,74,.72);
  }

  .nav-phone-mobile {
    border-color: rgba(28,38,74,.55);
    color: var(--navy) !important;
  }
}


/* =========================================================
   INDEX — DEDICATED MOBILE HERO SYSTEM
   Uses separate portrait artwork supplied for slides 1–3.
   Desktop/tablet >700px remain exactly as before.
   ========================================================= */
@media (max-width: 700px) {
  .hero {
    background:#f3eee6;
  }

  .hero-slides {
    height: clamp(650px, calc(100svh - 96px), 820px) !important;
    min-height:650px;
    background:#f3eee6;
  }

  .hero-card {
    position:absolute;
    inset:0;
    display:block !important;
    height:100% !important;
    min-height:0 !important;
    overflow:hidden;
    background:#f3eee6;
  }

  .hero-card__background {
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    opacity:1 !important;
    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
  }

  .hero-card--feature .hero-card__background {
    background-image:url("../images/backgrounds/hero-mobile-slide-1.webp") !important;
    background-position:center center !important;
  }

  .hero-card--background .hero-card__background {
    background-image:url("../images/backgrounds/hero-mobile-slide-2.webp") !important;
    background-position:center center !important;
    opacity:1 !important;
  }

  .hero-card--success .hero-card__background {
    background-image:url("../images/backgrounds/hero-mobile-slide-3.webp") !important;
    background-position:center center !important;
  }

  /* No desktop gradients on the dedicated portrait artwork. */
  .hero-card--feature .hero-card__overlay,
  .hero-card--background .hero-card__overlay,
  .hero-card--success .hero-card__overlay {
    display:none !important;
    background:none !important;
  }

  .hero-card__content,
  .hero-card--feature .hero-card__content,
  .hero-card--background .hero-card__content,
  .hero-card--success .hero-card__content {
    position:relative !important;
    z-index:3;
    width:100% !important;
    height:100% !important;
    min-height:0 !important;
    padding:0 22px 72px !important;
    transform:none !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:flex-end !important;
    background:transparent !important;
  }

  /* Slide-specific placements to work with the portrait art. */
  .hero-card--feature .hero-card__content {
    justify-content:center !important;
    padding-top:70px !important;
    padding-bottom:100px !important;
  }

  .hero-card--background .hero-card__content {
    justify-content:flex-start !important;
    padding-top:118px !important;
    padding-bottom:72px !important;
  }

  .hero-card--success .hero-card__content {
    justify-content:flex-end !important;
    padding-top:90px !important;
    padding-bottom:92px !important;
  }

  .hero-card .eyebrow {
    margin:0 0 17px !important;
    font-size:10px !important;
    line-height:1 !important;
    letter-spacing:.20em;
    color:var(--orange);
  }

  .hero-card h1,
  .hero-card h2,
  .hero-card--success h2 {
    width:100%;
    max-width:340px !important;
    margin:0 !important;
    font-size:clamp(46px, 13.3vw, 58px) !important;
    line-height:.88 !important;
    letter-spacing:-.05em !important;
    color:#111;
  }

  .hero-card--success h2 {
    max-width:330px !important;
    font-size:clamp(43px, 12.3vw, 54px) !important;
  }

  .hero-copy,
  .hero-card--feature .hero-copy,
  .hero-card--success .hero-copy {
    width:100% !important;
    max-width:330px !important;
    margin:22px 0 0 !important;
    padding-top:20px;
    border-top:1px solid rgba(28,38,74,.18);
    font-size:13px !important;
    line-height:1.42 !important;
    text-transform:none !important;
    color:#171717 !important;
  }

  .button-row {
    width:auto !important;
    margin-top:24px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    gap:10px !important;
  }

  .hero-card .button,
  .hero-card__content .button {
    width:auto !important;
    min-width:0 !important;
    min-height:42px !important;
    height:auto !important;
    margin:0 !important;
    padding:0 18px !important;
    border-radius:999px;
    font-size:9px !important;
    letter-spacing:.13em !important;
    white-space:nowrap;
  }

  .hero-card .button--solid {
    background:#111 !important;
    border-color:#111 !important;
    color:#fff !important;
  }

  .hero-card .button--outline {
    background:rgba(243,238,230,.72) !important;
    border-color:#1c264a !important;
    color:#1c264a !important;
  }

  .hero-pagination {
    z-index:8;
    bottom:22px !important;
  }

  .hero-pagination button {
    width:24px !important;
    height:3px !important;
  }
}

@media (max-width: 420px) {
  .hero-slides {
    height:calc(100svh - 94px) !important;
    min-height:620px !important;
    max-height:760px !important;
  }

  .hero-card__content,
  .hero-card--feature .hero-card__content,
  .hero-card--background .hero-card__content,
  .hero-card--success .hero-card__content {
    padding-left:18px !important;
    padding-right:18px !important;
  }

  .hero-card--feature .hero-card__content {
    padding-top:58px !important;
    padding-bottom:86px !important;
  }

  .hero-card--background .hero-card__content {
    padding-top:96px !important;
  }

  .hero-card--success .hero-card__content {
    padding-bottom:82px !important;
  }

  .hero-card h1,
  .hero-card h2 {
    max-width:315px !important;
    font-size:clamp(43px, 13vw, 52px) !important;
  }

  .hero-card--success h2 {
    font-size:clamp(40px, 12vw, 49px) !important;
  }

  .hero-copy,
  .hero-card--feature .hero-copy,
  .hero-card--success .hero-copy {
    max-width:305px !important;
    font-size:12px !important;
  }
}


/* Mobile index hero: move all slide content significantly lower. */
@media (max-width: 700px) {
  .hero-card--feature .hero-card__content,
  .hero-card--background .hero-card__content,
  .hero-card--success .hero-card__content {
    justify-content:flex-start !important;
    padding-top:260px !important;
    padding-bottom:70px !important;
  }
}

@media (max-width: 420px) {
  .hero-card--feature .hero-card__content,
  .hero-card--background .hero-card__content,
  .hero-card--success .hero-card__content {
    padding-top:235px !important;
    padding-bottom:62px !important;
  }
}


/* Slide 1 subtext: shortened on mobile only. */
.hero-copy__mobile{display:none;}
@media (max-width:700px){
  .hero-card--feature .hero-copy__desktop{display:none;}
  .hero-card--feature .hero-copy__mobile{display:inline;}
}


/* =========================================================
   INDEX MOBILE HERO — BOTTOM-ANCHORED CONTENT
   The lowest CTA is the fixed anchor. Content builds upward.
   ========================================================= */
@media (max-width:700px){
  .hero-card--feature .hero-card__content,
  .hero-card--background .hero-card__content,
  .hero-card--success .hero-card__content{
    position:relative !important;
    height:100% !important;
    padding:0 22px 78px !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-end !important;
    align-items:flex-start !important;
  }

  .hero-card .button-row{
    order:5;
    margin-top:22px !important;
  }

  .hero-card .hero-copy{
    order:4;
  }

  .hero-card h1,
  .hero-card h2{
    order:3;
  }

  .hero-card .eyebrow{
    order:2;
  }

  /* Keep a consistent lower-most CTA anchor across all 3 slides. */
  .hero-card .button-row{
    margin-bottom:0 !important;
  }
}

@media (max-width:420px){
  .hero-card--feature .hero-card__content,
  .hero-card--background .hero-card__content,
  .hero-card--success .hero-card__content{
    padding-left:18px !important;
    padding-right:18px !important;
    padding-bottom:66px !important;
  }
}


/* Index slide 2: exact four-line mobile heading. */
.hero-heading__mobile{display:none;}
@media (max-width:700px){
  .hero-card--background .hero-heading__desktop{display:none;}
  .hero-card--background .hero-heading__mobile{display:inline;}
}


/* Index slide 3: exact mobile line breaks + no mobile title/subtext dividers. */
.hero3-heading__mobile{display:none;}
@media (max-width:700px){
  .hero-card--success .hero3-heading__desktop{display:none;}
  .hero-card--success .hero3-heading__mobile{display:inline;}

  .hero-copy,
  .hero-card--feature .hero-copy,
  .hero-card--background .hero-copy,
  .hero-card--success .hero-copy{
    border-top:0 !important;
    padding-top:0 !important;
  }
}


/* Slide 3 mobile: hard-force each title line as its own block. */
@media (max-width:700px){
  .hero-card--success .hero3-heading__mobile{
    display:block !important;
    width:100% !important;
  }

  .hero-card--success .hero3-heading__mobile .hero3-line{
    display:block !important;
    width:max-content !important;
    max-width:100% !important;
    white-space:nowrap !important;
  }
}


/* INDEX MOBILE — Slide 1 three-line title + inline CTAs on slides 1 and 2 */
.hero1-heading__mobile{display:none;}

@media (max-width:700px){
  .hero-card--feature .hero1-heading__desktop{
    display:none !important;
  }

  .hero-card--feature .hero1-heading__mobile{
    display:block !important;
    width:100% !important;
  }

  .hero-card--feature .hero1-heading__mobile .hero1-line{
    display:block !important;
    width:max-content !important;
    max-width:100% !important;
    white-space:nowrap !important;
  }

  .hero-card--feature .button-row,
  .hero-card--background .button-row{
    width:100% !important;
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:8px !important;
  }

  .hero-card--feature .button-row .button,
  .hero-card--background .button-row .button{
    flex:0 1 auto !important;
    width:auto !important;
    min-width:0 !important;
    padding-left:13px !important;
    padding-right:13px !important;
    white-space:nowrap !important;
    font-size:8px !important;
    letter-spacing:.09em !important;
  }
}


/* Index mobile: move Meet Our Team button upward. */
@media (max-width:700px){
  .meet-team-callout--home > .button{
    transform:translateY(-10px) !important;
  }
}


/* Index mobile: move Meet Our Team button slightly farther upward. */
@media (max-width:700px){
  .meet-team-callout--home > .button{
    transform:translateY(-18px) !important;
  }
}

/* Mobile-only: align Practice Areas top spacing with Global Recognition. */
@media (max-width: 767px) {
  .practice-preview { padding-top: 54px; }
}

/* Mobile location heroes: compact pill CTA and lower text/button anchor.
   Desktop/tablet layouts remain unchanged. */
@media (max-width: 767px) {
  .location-hero.location-hero--full .location-hero__copy {
    justify-content: flex-end;
    padding: 54px 20px 42px;
  }

  .location-hero.location-hero--full .button,
  .location-hero.location-hero--full .button--solid {
    width: auto;
    min-width: 0;
    min-height: 42px;
    height: auto;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 9px;
    letter-spacing: .13em;
    white-space: nowrap;
  }
}


/* Mobile-only: right-align selected Locations hero content. */
@media (max-width: 767px) {
  .location-hero.location-hero--full.location-hero--mobile-right .location-hero__copy {
    align-items: flex-end;
    text-align: right;
  }

  .location-hero.location-hero--full.location-hero--mobile-right .location-hero__copy > p:not(.eyebrow) {
    margin-left: auto;
    margin-right: 0;
  }
}

/* Mobile-only: shift Naples and Tampa hero artwork ~30% left; NYC is nudged 15% back right. */
@media (max-width: 767px) {
  .location-hero.location-hero--full.location-hero--naples,
  .location-hero.location-hero--full.location-hero--tampa {
    background-position: 72% center;
  }

  .location-hero.location-hero--full.location-hero--nyc {
    background-position: 57% center;
  }
}

/* Patents selector: desktop list + custom mobile dropdown */
.patent-mobile-select{display:none;}
@media (max-width:767px){
  .patent-explorer .practice-explorer__menu{padding:28px 20px 22px;overflow:visible;}
  .patent-explorer .practice-explorer__tabs{display:none!important;}
  .patent-mobile-select{display:block;position:relative;width:100%;margin-top:18px;z-index:20;}
  .patent-mobile-select__toggle{
    width:100%;min-height:54px;padding:0 18px;border:1px solid #1c264a;border-radius:0;
    background:#1c264a;color:#fff;display:flex;align-items:center;justify-content:space-between;
    font-family:Arial,sans-serif;font-size:11px;font-weight:600;letter-spacing:.06em;text-align:left;cursor:pointer;
  }
  .patent-mobile-select__chevron{
    width:8px;height:8px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;
    transform:rotate(45deg) translateY(-2px);transition:transform .18s ease;margin-right:3px;
  }
  .patent-mobile-select.is-open .patent-mobile-select__chevron{
    transform:rotate(225deg) translate(-2px,-2px);
  }
  .patent-mobile-select__menu{
    position:absolute;top:100%;left:0;width:100%;box-sizing:border-box;background:#fff;
    border:1px solid #d7d5cf;border-top:0;box-shadow:0 12px 24px rgba(14,22,45,.18);
    z-index:40;
  }
  .patent-mobile-select__menu[hidden]{display:none;}
  .patent-mobile-select__option{
    width:100%;min-height:48px;padding:0 16px;display:flex;align-items:center;border:0;
    border-bottom:1px solid #e3e1dc;background:#fff;color:#1f2025;text-align:left;
    font-family:Arial,sans-serif;font-size:11px;font-weight:600;letter-spacing:.06em;
    cursor:pointer;
  }
  .patent-mobile-select__option:last-child{border-bottom:0;}
  .patent-mobile-select__option.is-selected,
  .patent-mobile-select__option[aria-selected="true"]{
    background:#1c264a;color:#fff;
  }
  .patent-explorer .practice-explorer__content{padding:38px 20px 52px;}
}

/* Patents long-form service content */
.patent-explorer .practice-article h3{
  max-width:780px;
  margin:46px 0 16px;
  font-family:Georgia,serif;
  font-size:clamp(25px,2.3vw,34px);
  line-height:1.15;
  font-weight:500;
  color:#1c264a;
}
.patent-explorer .practice-article .practice-emphasis{
  max-width:780px;
  margin:8px 0 20px;
  font-family:Georgia,serif;
  font-size:clamp(20px,1.8vw,27px);
  line-height:1.25;
  font-weight:500;
  color:#1c264a;
}
.patent-explorer .practice-section-label{
  margin-top:44px!important;
  margin-bottom:8px!important;
  font-size:11px!important;
  line-height:1.2!important;
  font-weight:700!important;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:#d06b36!important;
}
.patent-explorer .practice-list{
  max-width:760px;
  margin:0 0 36px 20px;
  padding:0;
  color:#50515a;
  font-size:18px;
  line-height:1.8;
}
.patent-explorer .practice-list li{padding-left:6px;margin-bottom:5px;}
.patent-explorer .practice-process{max-width:780px;margin:6px 0 42px;}
.patent-explorer .practice-process__step{padding:22px 0;border-top:1px solid #dedbd4;}
.patent-explorer .practice-process__step:last-child{border-bottom:1px solid #dedbd4;}
.patent-explorer .practice-process__step h4{
  margin:0 0 8px;
  font-family:Arial,sans-serif;
  font-size:12px;
  line-height:1.3;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#1c264a;
}
.patent-explorer .practice-process__step p{
  margin:0;
  font-size:17px;
  line-height:1.75;
  color:#50515a;
}
.patent-explorer .practice-reference{
  margin-top:-10px!important;
  font-size:13px!important;
  font-weight:600;
  letter-spacing:.02em;
  color:#1c264a!important;
}
.patent-explorer .practice-article .button{margin-top:12px;}
@media(max-width:767px){
  .patent-explorer .practice-article h3{margin-top:38px;font-size:27px;}
  .patent-explorer .practice-article .practice-emphasis{font-size:22px;}
  .patent-explorer .practice-list{font-size:16px;line-height:1.7;margin-left:18px;}
  .patent-explorer .practice-process__step{padding:18px 0;}
  .patent-explorer .practice-process__step p{font-size:16px;line-height:1.65;}
}


/* Cross-practice switcher: Patents / Trademarks / Copyrights */
.practice-area-switcher {
  position: relative;
  z-index: 20;
}
.practice-area-switcher__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.compact-explorer .practice-area-switcher__title-row h2 {
  margin: 8px 0 28px;
}
.practice-area-switcher__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  width: 30px;
  height: 30px;
  padding: 0;
  margin: -12px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font: 300 30px/1 Arial, Helvetica, sans-serif;
}
.practice-area-switcher__toggle span {
  display: block;
  transition: transform .22s ease;
}
.practice-area-switcher.is-open .practice-area-switcher__toggle span {
  transform: rotate(45deg);
}
.practice-area-switcher__menu {
  position: absolute;
  left: 0;
  top: calc(100% - 20px);
  width: 100%;
  min-width: 250px;
  background: #fff;
  border: 1px solid rgba(28,38,74,.18);
  box-shadow: 0 12px 26px rgba(15,20,44,.12);
  overflow: hidden;
}
.practice-area-switcher__option {
  display: block;
  padding: 14px 16px;
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #fff;
  border-bottom: 1px solid rgba(28,38,74,.12);
  transition: background-color .18s ease, color .18s ease;
}
.practice-area-switcher__option:last-child { border-bottom: 0; }
.practice-area-switcher__option:hover,
.practice-area-switcher__option:focus-visible {
  background: var(--navy);
  color: #fff;
  outline: none;
}
@media (max-width: 900px) {
  .practice-area-switcher__title-row { gap: 10px; }
  .practice-area-switcher__toggle { margin-top: -10px; }
  .practice-area-switcher__menu {
    top: calc(100% - 20px);
    width: min(100%, 310px);
  }
}

/* Practice-area switcher layering + orange trigger */
.practice-area-switcher {
  z-index: 300;
}
.practice-area-switcher__menu {
  z-index: 320;
}
.practice-area-switcher__toggle {
  color: var(--orange);
}
@media (max-width: 767px) {
  .patent-mobile-select {
    z-index: 20;
  }
  .practice-area-switcher {
    z-index: 300;
  }
  .practice-area-switcher__menu {
    z-index: 320;
  }
}

/* Practice-area hero refresh: clean technical background + homepage hero typography */
.practice-detail-hero__overlay {
  display: none;
  background: none;
}
.practice-detail-hero__inner {
  color: var(--navy);
}
.practice-detail-hero h1 {
  margin: 0;
  max-width: 770px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(60px, 5.35vw, 82px);
  line-height: .88;
  font-weight: 400;
  letter-spacing: -.045em;
  color: var(--navy);
}
.practice-detail-hero__inner > .eyebrow {
  margin: 0 0 20px;
}
.practice-detail-hero__inner > p:not(.eyebrow) {
  max-width: 590px;
  margin: 21px 0;
  color: #5b5b5f;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
}
.practice-detail-hero .button--solid {
  margin-top: 0;
}

@media (max-width: 767px) {
  .practice-detail-hero h1 {
    font-size: clamp(40px, 12vw, 52px);
    line-height: .92;
  }
  .practice-detail-hero__inner > .eyebrow {
    margin-bottom: 14px;
  }
  .practice-detail-hero__inner > p:not(.eyebrow) {
    max-width: 92%;
    margin: 21px 0;
    font-size: 12px;
    line-height: 1.45;
  }
}

/* Practice Areas: dedicated mobile hero artwork */
@media (max-width: 767px) {
  .practice-detail-hero {
    background-image: url("../images/backgrounds/practice-mobile.webp");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

/* Practice Areas mobile hero: match the 1080x1920 mobile artwork exactly (9:16 portrait) */
@media (max-width: 767px) {
  .practice-detail-hero {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 9 / 16;
    background-image: url("../images/backgrounds/practice-mobile.webp");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

/* =========================================================
   PRACTICE AREAS MOBILE HERO — MATCH INDEX MOBILE HERO FORMAT
   Uses dedicated portrait artwork supplied for practice pages.
   Desktop remains unchanged.
   ========================================================= */
@media (max-width: 700px) {
  .practice-detail-hero {
    width: 100%;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 9 / 16;
    background-image: url("../images/backgrounds/practice-mobile.webp") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    align-items: stretch !important;
  }

  .practice-detail-hero__overlay {
    display: none !important;
    background: none !important;
  }

  .practice-detail-hero__inner {
    position: relative !important;
    z-index: 3;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 22px 78px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    color: var(--navy) !important;
  }

  .practice-detail-hero__inner > .eyebrow {
    margin: 0 0 17px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    letter-spacing: .20em !important;
    color: var(--orange) !important;
  }

  .practice-detail-hero h1 {
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: clamp(46px, 13.3vw, 58px) !important;
    line-height: .88 !important;
    font-weight: 400 !important;
    letter-spacing: -.05em !important;
    color: #111 !important;
  }

  .practice-detail-hero__inner > p:not(.eyebrow) {
    width: 100% !important;
    max-width: 330px !important;
    margin: 22px 0 0 !important;
    padding-top: 0 !important;
    border-top: 0 !important;
    font-size: 13px !important;
    line-height: 1.42 !important;
    font-weight: 400 !important;
    text-transform: none !important;
    color: #171717 !important;
  }

  .practice-detail-hero .button,
  .practice-detail-hero .button--solid {
    width: auto !important;
    min-width: 0 !important;
    min-height: 42px !important;
    height: auto !important;
    margin: 22px 0 0 !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    background: #111 !important;
    border-color: #111 !important;
    color: #fff !important;
    font-size: 9px !important;
    letter-spacing: .13em !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 420px) {
  .practice-detail-hero__inner {
    padding-left: 18px !important;
    padding-right: 18px !important;
    padding-bottom: 66px !important;
  }

  .practice-detail-hero h1 {
    max-width: 315px !important;
    font-size: clamp(43px, 13vw, 52px) !important;
  }

  .practice-detail-hero__inner > p:not(.eyebrow) {
    max-width: 305px !important;
    font-size: 12px !important;
  }
}


/* Mobile-only: balance Locations hero supporting copy into a narrower column. */
@media (max-width: 767px) {
  .location-hero.location-hero--full .location-hero__copy > p:not(.eyebrow) {
    width: 70%;
    max-width: 70%;
    text-wrap: balance;
  }

  .location-hero.location-hero--full.location-hero--mobile-right .location-hero__copy > p:not(.eyebrow) {
    margin-left: auto;
    margin-right: 0;
  }

  .location-hero.location-hero--full:not(.location-hero--mobile-right) .location-hero__copy > p:not(.eyebrow) {
    margin-left: 0;
    margin-right: auto;
  }
}

/* Desktop location status line breaks */
.desktop-location-break { display: none; }
@media (min-width: 768px) {
  .desktop-location-break { display: block; }
}


/* Patents hero: force approved three-line headline on desktop only */
.desktop-hero-break { display: inline; }
@media (max-width: 767px) {
  .desktop-hero-break { display: none; }
}

/* Desktop contact locations hierarchy: Bona Fide office full width, appointment offices below. */
@media (min-width: 621px) {
  .contact-locations__grid .contact-location--primary {
    grid-column: 1 / -1;
  }
}

/* Our Team mobile intro cleanup: compact, fully contained panel. */
@media (max-width: 620px) {
  .people-editorial.people-editorial--equal {
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }
  .people-editorial--equal .people-intro-card {
    position: relative;
    top: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 28px 22px 24px;
    box-sizing: border-box;
    overflow: hidden;
    align-self: auto;
  }
  .people-editorial--equal .people-intro-card::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-width: 4px;
    box-sizing: border-box;
  }
  .people-editorial--equal .people-intro-card > * {
    transform: none;
  }
  .people-editorial--equal .people-intro-card h1 {
    margin-bottom: 20px;
  }
  .people-editorial--equal .people-intro-card > p:not(.eyebrow) {
    margin-bottom: 0;
  }
  .people-intro-card__story {
    margin-top: 28px;
  }
}


/* Industries pages use the approved Practice Areas explorer system. */
.industry-explorer .practice-tab__label { line-height: 1.18; }
.industry-explorer .industry-tip { margin: 28px 0; padding: 18px 20px; border-left: 3px solid var(--orange); background: rgba(28,38,74,.045); }
.industry-explorer .industry-tip strong { font-weight: 700; }
@media (max-width: 767px) {
  .industry-explorer .patent-mobile-select__toggle,
  .industry-explorer .patent-mobile-select__menu { width: 100%; }
  .industry-explorer .patent-mobile-select__value,
  .industry-explorer .patent-mobile-select__option { white-space: normal; line-height: 1.25; }
}


/* Plus IP Firm session intro loader */
#intro-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#intro-loader img {
  width: min(520px, 80vw);
  height: auto;
  display: block;
}
#intro-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Practice Areas + Industries selector sidebar: white panel */
.practice-explorer__menu {
  background: #fff;
}

/* Desktop: keep the white navigation bar sticky; announcement marquee scrolls normally. */
@media (min-width: 768px) {
  html { scroll-padding-top: 100px; }
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .announcement {
    position: relative;
    top: auto;
    z-index: auto;
  }
}

/* Desktop Practice + Industries hero sizing: grow proportionally on wide/fullscreen displays.
   Intentionally isolated from the homepage .hero/.hero-slides system. */
@media (min-width: 768px) {
  .practice-detail-hero {
    min-height: 620px;
    height: clamp(620px, 54.6875vw, 1050px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}


/* =========================================================
   INDEX DESKTOP HERO — FIXED CTA ANCHOR
   Keep every slide's CTA row on the same baseline and let
   differing text lengths build upward from that anchor.
   ========================================================= */
@media (min-width: 701px) {
  .hero--home .hero-card__content,
  .hero--home .hero-card--feature .hero-card__content,
  .hero--home .hero-card--background .hero-card__content,
  .hero--home .hero-card--success .hero-card__content {
    justify-content: flex-end !important;
    padding-bottom: 140px !important;
  }

  .hero--home .hero-card .button-row {
    flex: 0 0 auto;
    margin-top: 0;
    margin-bottom: 0;
  }
}

/* Index desktop hero: keep every CTA row on one fixed baseline.
   Copy above grows upward from the buttons instead of moving the buttons. */
@media (min-width: 901px) {
  .hero--home .hero-card > .hero-card__content {
    height: 100%;
    min-height: 0;
    box-sizing: border-box;
    justify-content: flex-end;
    padding-bottom: 140px;
  }
}

/* =========================================================
   INDEX DESKTOP HERO — MATCH MOBILE TITLE LINE BREAKS
   Use the same authored title layout on desktop as mobile.
   Desktop sizing/CTA anchoring remain unchanged.
   ========================================================= */
@media (min-width: 701px) {
  .hero--home .hero-card--feature .hero1-heading__desktop,
  .hero--home .hero-card--background .hero-heading__desktop,
  .hero--home .hero-card--success .hero3-heading__desktop {
    display: none !important;
  }

  .hero--home .hero-card--feature .hero1-heading__mobile,
  .hero--home .hero-card--background .hero-heading__mobile,
  .hero--home .hero-card--success .hero3-heading__mobile {
    display: block !important;
    width: 100% !important;
  }

  .hero--home .hero-card--feature .hero1-heading__mobile .hero1-line,
  .hero--home .hero-card--success .hero3-heading__mobile .hero3-line {
    display: block !important;
    width: max-content !important;
    max-width: 100% !important;
    white-space: nowrap !important;
  }
}

/* Mobile contact Service selector: controlled replacement for native select popup. */
.contact-service-select{display:none;}
@media (max-width:767px){
  .contact-form select[name="service"]{
    position:absolute !important;
    width:1px !important;
    height:1px !important;
    padding:0 !important;
    margin:-1px !important;
    overflow:hidden !important;
    clip:rect(0 0 0 0) !important;
    clip-path:inset(50%) !important;
    white-space:nowrap !important;
    border:0 !important;
    opacity:0 !important;
    pointer-events:none !important;
  }

  .contact-service-select{
    display:block;
    position:relative;
    width:100%;
    z-index:30;
  }

  .contact-service-select__toggle{
    position:relative;
    width:100%;
    height:50px;
    padding:0 46px 0 18px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:0;
    background:rgba(17,18,42,.72);
    color:#fff;
    text-align:left;
    font:400 16px/1.3 Arial,Helvetica,sans-serif;
    cursor:pointer;
  }

  .contact-service-select__toggle:after{
    content:"";
    position:absolute;
    right:18px;
    top:50%;
    width:7px;
    height:7px;
    margin-top:-5px;
    border-right:1px solid var(--orange);
    border-bottom:1px solid var(--orange);
    transform:rotate(45deg);
    transition:transform .2s ease,margin-top .2s ease;
  }

  .contact-service-select.is-open .contact-service-select__toggle{
    border-color:var(--orange);
    background:rgba(17,18,42,.94);
  }

  .contact-service-select.is-open .contact-service-select__toggle:after{
    margin-top:-1px;
    transform:rotate(225deg);
  }

  .contact-service-select__menu{
    position:absolute;
    left:0;
    right:0;
    top:calc(100% + 4px);
    z-index:100;
    margin:0;
    padding:0 !important;
    border:0 !important;
    border-radius:0;
    background:#121537;
    box-shadow:0 18px 38px rgba(0,0,0,.34);
    overflow:hidden;
    background-clip:padding-box;
  }

  .contact-service-select__menu::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:10;
    pointer-events:none;
    border:1px solid var(--orange);
    box-sizing:border-box;
  }

  .contact-service-select__menu[hidden]{display:none !important;}

  .contact-service-select__option{
    display:block;
    width:100%;
    min-height:46px;
    margin:0;
    padding:0 18px;
    border:0;
    border-bottom:1px solid rgba(255,255,255,.10);
    border-radius:0;
    outline:0;
    appearance:none;
    -webkit-appearance:none;
    box-shadow:none;
    background:transparent;
    color:rgba(255,255,255,.78);
    text-align:left;
    font:400 14px/1.25 Arial,Helvetica,sans-serif;
    cursor:pointer;
    box-sizing:border-box;
  }

  .contact-service-select__option:last-child{
    border-bottom:0 !important;
    margin-bottom:0 !important;
    padding-bottom:0;
  }
  .contact-service-select__option:hover,
  .contact-service-select__option:focus,
  .contact-service-select__option.is-selected{
    background:rgba(232,155,80,.10);
    color:#fff;
    outline:none;
  }
}


/* Mobile footer refinement: centered text with tighter line spacing. */
@media (max-width: 900px) {
  body > footer {
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 15px 20px;
    color: rgba(255,255,255,.6);
  }

  body > footer p {
    margin: 0;
    line-height: 1.15;
    color: rgba(255,255,255,.6);
  }
}


/* Unify the warm attorneys-grid scale on mobile across homepage + team sections. */
@media (max-width: 900px) {
  .team::before,
  .people-editorial.people-editorial--equal::before {
    background-size: 1100px auto;
    background-position: center top;
    background-repeat: repeat-y;
    opacity: .2;
  }
}
