:root{
  --ink:#11202f;
  --ink-deep:#09131d;
  --bronze:#b88c4f;
  --bronze-soft:#d7bc8a;
  --stone:#e8ddd0;
  --mist:#f4f0ea;
  --cloud:#eef2f5;
  --line:rgba(17,32,47,.12);
  --text:#243545;
  --muted:#5d6f7d;
  --white:#ffffff;
  --shadow:0 24px 60px rgba(9,19,29,.16);
  --shadow-soft:0 16px 36px rgba(9,19,29,.09);
  --radius:26px;
  --radius-sm:18px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(184,140,79,.14), transparent 34%),
    linear-gradient(180deg, #fbf7f2 0%, #f6f4f0 36%, #ffffff 100%);
  font-family:"Avenir Next", "Segoe UI", sans-serif;
  line-height:1.7;
}

a{
  color:inherit;
  text-decoration:none;
}

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

button,
input,
textarea{
  font:inherit;
}

button{
  cursor:pointer;
}

.container{
  width:min(1180px, calc(100% - 2rem));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(251,247,242,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(17,32,47,.08);
}

.header-topbar{
  background:var(--ink);
  color:rgba(255,255,255,.82);
  font-size:13px;
}

.header-topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  padding:.7rem 0;
}

.header-topbar a{
  color:var(--bronze-soft);
}

.header-shell{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:1.5rem;
  min-height:92px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:1rem;
}

.brand-mark{
  width:56px;
  height:56px;
  border-radius:20px 20px 20px 8px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg, var(--ink), #1a3147);
  color:var(--stone);
  font-family:"Baskerville", "Palatino Linotype", serif;
  font-size:1.15rem;
  font-weight:700;
  letter-spacing:.18em;
  box-shadow:inset 0 0 0 1px rgba(215,188,138,.24);
}

.brand-text strong,
h1,
h2,
h3{
  font-family:"Baskerville", "Palatino Linotype", serif;
}

.brand-text strong{
  display:block;
  color:var(--ink);
  font-size:1.45rem;
  line-height:1;
}

.brand-text small{
  display:block;
  margin-top:.3rem;
  color:var(--muted);
  font-size:.72rem;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.site-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:1.8rem;
  font-size:.92rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.site-nav a{
  position:relative;
  padding:.4rem 0;
  color:var(--ink);
  white-space:nowrap;
}

.site-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-.15rem;
  width:100%;
  height:2px;
  transform:scaleX(0);
  transform-origin:left;
  background:linear-gradient(90deg, var(--bronze), transparent);
  transition:transform .25s ease;
}

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

.nav-toggle{
  display:none;
  width:50px;
  height:50px;
  padding:0;
  border:0;
  border-radius:18px;
  background:var(--ink);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
}

.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--white);
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:.9rem 1.35rem;
  border-radius:999px;
  border:1px solid transparent;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover{
  transform:translateY(-1px);
}

.button-primary{
  background:linear-gradient(135deg, var(--bronze), #d0ab72);
  color:var(--ink-deep);
  box-shadow:0 18px 35px rgba(184,140,79,.28);
}

.button-secondary{
  border-color:rgba(255,255,255,.32);
  color:var(--white);
  background:rgba(255,255,255,.08);
}

.button-outline{
  border-color:rgba(17,32,47,.14);
  color:var(--ink);
  background:rgba(255,255,255,.65);
}

.header-cta{
  justify-self:end;
}

.eyebrow{
  display:inline-block;
  margin-bottom:1rem;
  color:var(--bronze-soft);
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.hero-shell,
.page-hero{
  position:relative;
  overflow:hidden;
  color:var(--white);
}

.hero-shell{
  padding:6rem 0 4.5rem;
}

.page-hero{
  padding:5rem 0 3.5rem;
}

.hero-backdrop,
.page-hero-backdrop{
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(9,19,29,.96), rgba(17,32,47,.84)),
    url('/assets/img/backgrounds/hero-grid.svg') center/cover no-repeat;
}

.alt-backdrop{
  background:
    linear-gradient(135deg, rgba(15,28,40,.96), rgba(27,45,63,.88)),
    url('/assets/img/backgrounds/soft-arc.svg') center/cover no-repeat;
}

.contact-backdrop{
  background:
    linear-gradient(140deg, rgba(10,19,29,.95), rgba(23,38,53,.86)),
    url('/assets/img/backgrounds/soft-arc.svg') center/cover no-repeat;
}

.hero-grid,
.page-hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(290px, .8fr);
  gap:2rem;
  align-items:end;
}

.hero-copy h1,
.page-hero h1{
  margin:0;
  line-height:.97;
}

.hero-copy h1{
  font-size:clamp(3.1rem, 6vw, 5.9rem);
  max-width:12ch;
}

.page-hero h1{
  font-size:clamp(2.6rem, 4.8vw, 4.4rem);
  max-width:14ch;
}

.hero-intro,
.page-hero p{
  margin:1.4rem 0 0;
  max-width:46rem;
  font-size:1.08rem;
  color:rgba(255,255,255,.82);
}

.hero-actions,
.cta-band-actions,
.single-row{
  display:flex;
  flex-wrap:wrap;
  gap:.9rem;
}

.hero-actions{
  margin-top:2rem;
}

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

.hero-list li{
  padding:1rem 1.1rem;
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.82);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
}

.hero-panel,
.page-hero-card{
  position:relative;
  padding:2rem;
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:var(--shadow);
}

.panel-kicker{
  display:inline-block;
  margin-bottom:.8rem;
  color:var(--bronze-soft);
  font-size:.78rem;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.hero-panel h2,
.page-hero-card h2,
.section-head h2,
.story-panel h2,
.cta-band h2,
.contact-card h2{
  margin:0;
  line-height:1.04;
}

.hero-panel h2,
.page-hero-card h2{
  font-size:clamp(2rem, 3vw, 2.6rem);
  color:var(--white);
}

.hero-panel p,
.page-hero-card p{
  color:rgba(255,255,255,.76);
}

.stacked-points{
  display:grid;
  gap:1rem;
  margin-top:1.4rem;
}

.stacked-points article{
  padding-top:1rem;
  border-top:1px solid rgba(255,255,255,.1);
}

.stacked-points h3{
  margin:0 0 .4rem;
  color:var(--white);
  font-size:1.28rem;
}

.signal-band{
  margin-top:-1.2rem;
  position:relative;
  z-index:2;
}

.signal-grid,
.principles-grid,
.steps-grid,
.team-grid{
  display:grid;
  gap:1.4rem;
}

.signal-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.signal-card,
.practice-card,
.principle-card,
.team-card,
.step-card,
.contact-card,
.contact-form-card{
  background:rgba(255,255,255,.9);
  border:1px solid rgba(17,32,47,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
}

.signal-card{
  padding:1.7rem;
}

.signal-card img{
  width:40px;
  height:40px;
  margin-bottom:1rem;
}

.signal-card h2{
  font-size:1.6rem;
  margin:0 0 .6rem;
}

.section{
  padding:5.6rem 0;
}

.section-soft{
  background:linear-gradient(180deg, rgba(232,221,208,.42), rgba(244,240,234,.62));
}

.section-dark{
  background:
    linear-gradient(180deg, rgba(9,19,29,.98), rgba(17,32,47,.95)),
    url('/assets/img/backgrounds/soft-arc.svg') center/cover no-repeat;
  color:var(--white);
}

.section-dark p,
.section-dark .story-column p{
  color:rgba(255,255,255,.74);
}

.section-head{
  display:grid;
  gap:1rem;
  margin-bottom:2.1rem;
}

.split-head{
  grid-template-columns:minmax(0, .95fr) minmax(0, .9fr);
  align-items:end;
}

.center-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 2.1rem;
}

.section-head h2,
.story-panel h2,
.cta-band h2{
  font-size:clamp(2.2rem, 4vw, 3.6rem);
  color:var(--ink);
}

.section-dark .story-panel h2{
  color:var(--white);
}

.practice-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1.4rem;
}

.practice-grid-wide{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.practice-card,
.principle-card,
.team-card,
.step-card{
  padding:1.7rem;
}

.card-index{
  display:inline-grid;
  place-items:center;
  min-width:2.75rem;
  height:2.75rem;
  padding:0 .8rem;
  margin-bottom:1.1rem;
  border-radius:999px;
  background:rgba(184,140,79,.12);
  color:var(--bronze);
  font-weight:800;
  letter-spacing:.06em;
}

.practice-card h3,
.principle-card h3,
.team-card h3,
.step-card h3,
.contact-card h3{
  margin:0 0 .65rem;
  font-size:1.55rem;
  line-height:1.15;
  color:var(--ink);
}

.story-grid{
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
  gap:2rem;
  align-items:start;
}

.compact-story{
  align-items:stretch;
}

.story-panel{
  padding:2rem;
  border-radius:var(--radius);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.story-column{
  display:grid;
  gap:1rem;
}

.story-column article{
  padding:1.45rem 1.6rem;
  border-radius:var(--radius-sm);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

.story-column h3{
  margin:0 0 .5rem;
  color:var(--white);
  font-size:1.45rem;
}

.principles-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.cta-band{
  padding:2rem 0 4.8rem;
}

.cta-band-inner{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:1.5rem;
  align-items:center;
  padding:2rem;
  color:var(--white);
  border-radius:36px;
  background:
    linear-gradient(135deg, rgba(17,32,47,.98), rgba(27,45,63,.92)),
    url('/assets/img/backgrounds/hero-grid.svg') center/cover no-repeat;
  box-shadow:var(--shadow);
}

.cta-band p{
  color:rgba(255,255,255,.72);
  margin:.9rem 0 0;
}

.page-hero-card .button-secondary,
.cta-band .button-secondary{
  border-color:rgba(255,255,255,.3);
}

.team-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.steps-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.contact-grid{
  display:grid;
  grid-template-columns:minmax(0, .94fr) minmax(320px, .88fr);
  gap:1.5rem;
  align-items:start;
}

.contact-column{
  display:grid;
  gap:1.2rem;
}

.emphasis-card{
  padding:2rem;
  background:
    linear-gradient(135deg, rgba(17,32,47,.98), rgba(27,45,63,.92)),
    url('/assets/img/backgrounds/soft-arc.svg') center/cover no-repeat;
  color:var(--white);
}

.emphasis-card h2{
  color:var(--white);
  font-size:clamp(2rem, 3.6vw, 3rem);
  overflow-wrap:anywhere;
}

.emphasis-card p{
  color:rgba(255,255,255,.76);
}

.info-card-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1.2rem;
}

.contact-card{
  padding:1.6rem;
}

.contact-form-card{
  padding:2rem;
}

.contact-form-card h2{
  font-size:clamp(2rem, 3vw, 2.7rem);
  color:var(--ink);
  margin:0 0 1rem;
}

.contact-form{
  display:grid;
  gap:1rem;
}

.field-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1rem;
}

label{
  display:grid;
  gap:.45rem;
  font-weight:700;
  color:var(--ink);
}

input,
textarea{
  width:100%;
  border:1px solid rgba(17,32,47,.12);
  border-radius:18px;
  padding:.92rem 1rem;
  background:#fbfbfa;
  color:var(--text);
}

textarea{
  resize:vertical;
  min-height:170px;
}

input:focus,
textarea:focus,
.button:focus,
.site-nav a:focus,
.nav-toggle:focus{
  outline:2px solid rgba(184,140,79,.45);
  outline-offset:3px;
}

.status-note{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}

.site-footer{
  padding:3rem 0 2rem;
  color:rgba(255,255,255,.72);
  background:linear-gradient(180deg, var(--ink-deep), var(--ink));
}

.footer-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.25fr) repeat(2, minmax(0, .7fr));
  gap:2rem;
}

.brand-footer .brand-text strong{
  color:var(--white);
}

.brand-footer .brand-text small{
  color:rgba(255,255,255,.6);
}

.site-footer h3{
  margin:0 0 1rem;
  color:var(--white);
  font-size:1.25rem;
}

.footer-list{
  display:grid;
  gap:.7rem;
}

.footer-list a,
.contact-card a{
  overflow-wrap:anywhere;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  margin-top:2rem;
  padding-top:1.4rem;
  border-top:1px solid rgba(255,255,255,.1);
  font-size:.92rem;
}

@media (max-width: 1024px){
  .practice-grid-wide{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .principles-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .hero-list{
    grid-template-columns:1fr;
  }
}

@media (max-width: 900px){
  .header-shell{
    grid-template-columns:auto auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "cta cta";
    padding:1rem 0 1.2rem;
  }

  .brand{
    grid-area:brand;
  }

  .nav-toggle{
    display:flex;
    grid-area:toggle;
    justify-self:end;
  }

  .site-nav{
    grid-area:nav;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:.9rem;
    margin-top:1rem;
    padding:1.2rem;
    border-radius:22px;
    background:rgba(17,32,47,.97);
    box-shadow:var(--shadow);
  }

  .site-header.is-open .site-nav{
    display:flex;
  }

  .site-nav a{
    color:var(--white);
  }

  .header-cta{
    grid-area:cta;
    justify-self:start;
    margin-top:1rem;
  }

  .hero-grid,
  .page-hero-grid,
  .split-head,
  .story-grid,
  .contact-grid,
  .cta-band-inner,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .signal-grid,
  .practice-grid,
  .practice-grid-wide,
  .team-grid,
  .steps-grid{
    grid-template-columns:1fr 1fr;
  }

  .header-topbar-inner,
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 768px){
  .hero-shell{
    padding:4.8rem 0 3rem;
  }

  .page-hero{
    padding:4rem 0 2.6rem;
  }

  .section{
    padding:4.3rem 0;
  }

  .signal-grid,
  .practice-grid,
  .practice-grid-wide,
  .principles-grid,
  .team-grid,
  .steps-grid,
  .info-card-grid,
  .field-grid{
    grid-template-columns:1fr;
  }

  .hero-copy h1{
    max-width:unset;
  }
}

@media (max-width: 390px){
  .container{
    width:min(100% - 1.2rem, 1180px);
  }

  .brand-mark{
    width:50px;
    height:50px;
    border-radius:16px 16px 16px 6px;
  }

  .brand-text strong{
    font-size:1.24rem;
  }

  .button{
    width:100%;
  }

  .hero-actions,
  .cta-band-actions,
  .single-row{
    flex-direction:column;
  }
}

/* ==========================================================
   NEWMAN LAW FIRM — ATTORNEYS DIRECTORY AND PROFILES
   ========================================================== */

.newman-attorneys-hero,
.newman-profile-hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(183, 139, 66, .25), transparent 30%),
        url('/assets/img/backgrounds/hero-grid.svg') center/cover no-repeat,
        #11202f;
    color: #fff;
}

.newman-attorneys-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 48px;
    align-items: center;
}

.newman-attorneys-hero h1,
.newman-profile-intro h1 {
    max-width: 820px;
    margin: 10px 0 18px;
    color: #fff;
    font-size: clamp(46px, 7vw, 82px);
    line-height: .98;
}

.newman-attorneys-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.7;
}

.newman-attorneys-hero-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
}

.newman-attorneys-hero-card span {
    display: block;
    margin-bottom: 12px;
    color: #d3aa63;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.newman-attorneys-hero-card strong {
    color: #fff;
    font-size: 24px;
    line-height: 1.35;
}

.newman-attorneys-directory {
    background: #f6f4ef;
}

.newman-attorneys-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.newman-attorney-card {
    display: grid;
    grid-template-columns: minmax(210px, 42%) 1fr;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid rgba(17, 32, 47, .12);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(17, 32, 47, .10);
    transition: transform .25s ease, box-shadow .25s ease;
}

.newman-attorney-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(17, 32, 47, .16);
}

.newman-attorney-photo {
    display: block;
    min-height: 430px;
    overflow: hidden;
    background: #e9e0d2;
}

.newman-attorney-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    object-position: center top;
    transition: transform .4s ease;
}

.newman-attorney-card:hover .newman-attorney-photo img {
    transform: scale(1.025);
}

.newman-attorney-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 30px 30px;
}

.newman-attorney-role {
    margin: 0 0 10px;
    color: #b38742;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.newman-attorney-content h2 {
    margin: 0 0 12px;
    font-size: 31px;
    line-height: 1.05;
}

.newman-attorney-content h2 a {
    color: #11202f;
    text-decoration: none;
}

.newman-attorney-focus {
    margin: 0 0 17px;
    color: #9a6e2d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1.5;
    text-transform: uppercase;
}

.newman-attorney-summary {
    margin: 0 0 20px;
    color: #5b6670;
    font-size: 14px;
    line-height: 1.7;
}

.newman-attorney-email {
    margin: auto 0 20px;
    color: #11202f;
    font-size: 13px;
    font-weight: 700;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.newman-attorney-email:hover {
    color: #b38742;
}

.newman-attorney-button {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 21px;
    border-radius: 999px;
    background: #11202f;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.newman-attorney-button::after {
    content: " →";
    margin-left: 7px;
}

.newman-attorney-button:hover {
    background: #b38742;
    color: #fff;
}

.newman-profile-grid {
    display: grid;
    grid-template-columns: minmax(280px, 390px) 1fr;
    gap: 64px;
    align-items: center;
}

.newman-profile-photo {
    overflow: hidden;
    min-height: 510px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    background: #e9e0d2;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.newman-profile-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 510px;
    object-fit: cover;
    object-position: center top;
}

.newman-back-link {
    display: inline-block;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
}

.newman-back-link:hover {
    color: #d3aa63;
}

.newman-profile-role {
    margin: 0 0 12px;
    color: #d3aa63;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.newman-profile-focus {
    max-width: 760px;
    color: rgba(255, 255, 255, .80);
    font-size: 18px;
    line-height: 1.65;
}

.newman-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.newman-profile-details {
    background: #f6f4ef;
}

.newman-profile-details-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
    gap: 56px;
    align-items: start;
}

.newman-profile-biography,
.newman-profile-sidebar {
    padding: 38px;
    border: 1px solid rgba(17, 32, 47, .10);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(17, 32, 47, .08);
}

.newman-profile-biography h2 {
    margin: 8px 0 22px;
    color: #11202f;
    font-size: 38px;
}

.newman-profile-biography p {
    color: #596671;
    line-height: 1.8;
}

.newman-profile-contact-card {
    margin-bottom: 30px;
    padding: 23px;
    border-radius: 14px;
    background: #11202f;
}

.newman-profile-contact-card span {
    display: block;
    margin-bottom: 8px;
    color: #d3aa63;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.newman-profile-contact-card a {
    color: #fff;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.newman-profile-areas h2 {
    margin: 0 0 18px;
    color: #11202f;
    font-size: 26px;
}

.newman-profile-areas ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.newman-profile-areas li {
    padding: 12px 14px;
    border-left: 3px solid #b38742;
    background: #f5f2ec;
    color: #48545f;
}

@media (max-width: 1050px) {
    .newman-attorneys-grid {
        grid-template-columns: 1fr;
    }

    .newman-attorney-card {
        grid-template-columns: minmax(230px, 36%) 1fr;
    }
}

@media (max-width: 900px) {
    .newman-attorneys-hero-grid,
    .newman-profile-grid,
    .newman-profile-details-grid {
        grid-template-columns: 1fr;
    }

    .newman-attorneys-hero-card {
        max-width: 520px;
    }

    .newman-profile-photo {
        max-width: 470px;
    }
}

@media (max-width: 680px) {
    .newman-attorneys-hero,
    .newman-profile-hero {
        padding: 58px 0;
    }

    .newman-attorney-card {
        display: block;
        min-height: 0;
    }

    .newman-attorney-photo,
    .newman-attorney-photo img {
        height: 420px;
        min-height: 0;
    }

    .newman-attorney-content {
        padding: 27px 23px;
    }

    .newman-attorney-button {
        justify-content: center;
        width: 100%;
    }

    .newman-profile-photo,
    .newman-profile-photo img {
        min-height: 430px;
    }

    .newman-profile-biography,
    .newman-profile-sidebar {
        padding: 26px 22px;
    }

    .newman-profile-actions {
        display: grid;
    }
}

/* NEWMAN SITE SLIDER START */

.site-slider {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #11202f;
    color: #ffffff;
}

.site-slider-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    min-height: 650px;
    padding: 88px 0 112px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-image:
        linear-gradient(
            90deg,
            rgba(8, 22, 35, 0.94) 0%,
            rgba(8, 22, 35, 0.83) 45%,
            rgba(8, 22, 35, 0.50) 100%
        ),
        var(--slide-image);
    background-position: center;
    background-size: cover;
    transition:
        opacity 0.75s ease,
        visibility 0.75s ease;
}

.site-slider-slide.is-active {
    position: relative;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-slider-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(17, 32, 47, 0.05),
            rgba(17, 32, 47, 0.28)
        );
    pointer-events: none;
}

.site-slider-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 56px;
    align-items: center;
}

.site-slider-content {
    max-width: 790px;
}

.site-slider-content .eyebrow {
    color: #d6aa61;
}

.site-slider-content h1 {
    max-width: 850px;
    margin: 12px 0 22px;
    color: #ffffff;
    font-size: clamp(48px, 6.4vw, 84px);
    line-height: 0.98;
    text-wrap: balance;
}

.site-slider-content > p {
    max-width: 730px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.75;
}

.site-slider-content .hero-actions {
    margin-top: 30px;
}

.site-slider-panel {
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 18px;
    background: rgba(12, 28, 42, 0.67);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}

.site-slider-panel > span {
    display: block;
    margin-bottom: 12px;
    color: #d6aa61;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-slider-panel h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.2;
}

.site-slider-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.site-slider-controls {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 28px;
    left: 0;
}

.site-slider-controls-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-slider-arrows {
    display: flex;
    gap: 10px;
}

.site-slider-arrows button {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 50%;
    background: rgba(17, 32, 47, 0.65);
    color: #ffffff;
    cursor: pointer;
    font-size: 19px;
    transition: 0.2s ease;
}

.site-slider-arrows button:hover {
    border-color: #d6aa61;
    background: #d6aa61;
    color: #11202f;
}

.site-slider-dots {
    display: flex;
    gap: 9px;
}

.site-slider-dots button {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: 0.2s ease;
}

.site-slider-dots button.is-active {
    border-color: #d6aa61;
    background: #d6aa61;
    transform: scale(1.18);
}

@media (max-width: 900px) {
    .site-slider,
    .site-slider-slide {
        min-height: 700px;
    }

    .site-slider-slide {
        padding: 68px 0 110px;
        background-image:
            linear-gradient(
                90deg,
                rgba(8, 22, 35, 0.94),
                rgba(8, 22, 35, 0.76)
            ),
            var(--slide-image);
    }

    .site-slider-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .site-slider-panel {
        max-width: 600px;
    }
}

@media (max-width: 680px) {
    .site-slider,
    .site-slider-slide {
        min-height: 740px;
    }

    .site-slider-slide {
        padding: 54px 0 112px;
    }

    .site-slider-content h1 {
        font-size: clamp(40px, 12vw, 56px);
    }

    .site-slider-content > p {
        font-size: 16px;
    }

    .site-slider-panel {
        padding: 25px 22px;
    }

    .site-slider-controls {
        bottom: 22px;
    }
}

/* NEWMAN SITE SLIDER END */

/* NEWMAN SMTP CONTACT FORM START */

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.smtp-form-status {
    display: none;
    margin: 18px 0 0;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.smtp-form-status.is-loading,
.smtp-form-status.is-success,
.smtp-form-status.is-error {
    display: block;
}

.smtp-form-status.is-loading {
    border: 1px solid #c6ced5;
    background: #f0f3f5;
    color: #344451;
}

.smtp-form-status.is-success {
    border: 1px solid #8dbda1;
    background: #edf8f1;
    color: #1f6540;
}

.smtp-form-status.is-error {
    border: 1px solid #d4a1a1;
    background: #fff0f0;
    color: #8b2929;
}

.smtp-contact-form button[disabled] {
    cursor: wait;
    opacity: 0.65;
}

/* NEWMAN SMTP CONTACT FORM END */

/* NEWMAN HERO TWO-LINE TITLES START */

.site-slider-content {
    max-width: 900px;
}

.site-slider-content h1 {
    max-width: 900px;
    font-size: clamp(44px, 5.2vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

/* Más espacio para el texto principal en escritorio */
@media (min-width: 1100px) {
    .site-slider-grid {
        grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
        gap: 42px;
    }

    .site-slider-content h1 {
        max-width: 940px;
        font-size: clamp(48px, 4.8vw, 70px);
    }
}

/* En tablet puede ocupar hasta tres líneas sin desbordarse */
@media (max-width: 1099px) {
    .site-slider-content h1 {
        max-width: 760px;
        font-size: clamp(43px, 7vw, 62px);
    }
}

/* En móvil se permite el ajuste natural */
@media (max-width: 680px) {
    .site-slider-content h1 {
        max-width: 100%;
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1.04;
        letter-spacing: -0.025em;
    }
}

/* NEWMAN HERO TWO-LINE TITLES END */

/* NEWMAN PRACTICE DETAIL PAGES START */

.site-nav {
    align-items: center;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-main {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nav-dropdown-main span {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-main span,
.nav-dropdown:focus-within .nav-dropdown-main span {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 17px);
    left: 50%;
    display: grid;
    width: 380px;
    padding: 12px;
    border: 1px solid rgba(17, 32, 47, 0.12);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 24px 65px rgba(17, 32, 47, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.site-nav .nav-dropdown-menu a {
    display: block;
    padding: 11px 13px;
    border-radius: 8px;
    color: #243746;
    font-size: 13px;
    line-height: 1.35;
    text-decoration: none;
}

.site-nav .nav-dropdown-menu a:hover {
    background: #f3eee5;
    color: #9a6e2d;
}

.practice-grid h3 a,
.practice-grid-wide h3 a,
.practice-card h3 a {
    color: inherit;
    text-decoration: none;
}

.practice-grid h3 a:hover,
.practice-grid-wide h3 a:hover,
.practice-card h3 a:hover {
    color: #a87631;
}

.practice-card-link {
    display: inline-flex;
    margin-top: 19px;
    color: #9a6e2d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
}

.practice-card-link:hover {
    color: #11202f;
}

.service-detail-slider .site-slider-content h1 {
    max-width: 900px;
    font-size: clamp(47px, 5vw, 72px);
}

.service-detail-overview {
    background: #f6f4ef;
}

.service-detail-overview-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
    gap: 70px;
    align-items: start;
}

.service-detail-overview h2 {
    margin: 10px 0 0;
    color: #11202f;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
}

.service-detail-copy {
    padding: 36px;
    border: 1px solid rgba(17, 32, 47, 0.10);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(17, 32, 47, 0.08);
}

.service-detail-copy p {
    margin: 0 0 20px;
    color: #56636e;
    font-size: 17px;
    line-height: 1.85;
}

.service-detail-copy p:last-child {
    margin-bottom: 0;
}

.service-matters-section {
    background: #ffffff;
}

.service-matters-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-matters-grid li {
    position: relative;
    padding: 20px 22px 20px 52px;
    border: 1px solid rgba(17, 32, 47, 0.10);
    border-radius: 12px;
    background: #f8f6f2;
    color: #3f4d58;
    line-height: 1.55;
}

.service-matters-grid li::before {
    content: "✓";
    position: absolute;
    top: 19px;
    left: 21px;
    color: #a87631;
    font-weight: 900;
}

.service-process-section {
    background: #11202f;
    color: #ffffff;
}

.service-process-section .section-head h2 {
    color: #ffffff;
}

.service-process-section .section-head p {
    color: rgba(255, 255, 255, 0.72);
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-process-step {
    min-height: 210px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.service-process-step span {
    display: block;
    margin-bottom: 35px;
    color: #d3aa63;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.service-process-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
}

@media (max-width: 1050px) {
    .nav-dropdown-menu {
        left: 0;
        transform: translate(0, 10px);
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        transform: translate(0, 0);
    }

    .service-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .service-detail-overview-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .site-nav .nav-dropdown {
        display: block;
        width: 100%;
    }

    .site-nav .nav-dropdown-main {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        display: grid;
        width: 100%;
        margin: 5px 0 8px;
        padding: 6px 0 6px 14px;
        border: 0;
        border-left: 2px solid #b38742;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        transform: none;
    }

    .site-nav .nav-dropdown-menu a {
        padding: 8px 10px;
        background: transparent;
        font-size: 12px;
    }

    .service-matters-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-copy {
        padding: 27px 23px;
    }

    .service-process-step {
        min-height: auto;
    }
}

/* NEWMAN PRACTICE DETAIL PAGES END */

/* NEWMAN PHONE CONTACT START */

.topbar-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.topbar-contact > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.topbar-contact-divider,
.footer-contact-divider {
    color: #c69b51;
}

.topbar-phone,
.footer-phone {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.topbar-phone:hover,
.footer-phone:hover {
    color: #c69b51;
}

.contact-direct-phone {
    margin-bottom: 28px;
    padding: 23px 25px;
    border-left: 4px solid #b88942;
    border-radius: 10px;
    background: #f4efe7;
}

.contact-direct-phone > span {
    display: block;
    margin-bottom: 7px;
    color: #9a6e2d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-direct-phone > a {
    display: inline-block;
    color: #11202f;
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
}

.contact-direct-phone > a:hover {
    color: #a87631;
}

.contact-direct-phone p {
    margin: 9px 0 0;
    color: #596671;
    line-height: 1.6;
}

@media (max-width: 680px) {
    .topbar-contact {
        flex-wrap: wrap;
        gap: 5px 10px;
    }

    .topbar-contact-divider {
        display: none;
    }

    .topbar-contact > span:first-child {
        width: 100%;
    }

    .contact-direct-phone > a {
        font-size: 24px;
    }
}

/* NEWMAN PHONE CONTACT END */

/* NEWMAN FOOTER CONTACT INLINE FIX START */

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

.footer-contact-inline a {
    color: inherit;
    text-decoration: none;
}

.footer-contact-inline a:hover {
    color: #c69b51;
}

.footer-contact-inline span {
    color: #c69b51;
    line-height: 1;
}

/* NEWMAN FOOTER CONTACT INLINE FIX END */

/* NEWMAN COMPLETE RESPONSIVE START */

/* Evitar desplazamiento horizontal global */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    min-width: 0;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

img {
    height: auto;
}

/* Encabezado: tablet y móvil */
@media (max-width: 1024px) {
    .header-shell {
        position: relative;
        min-height: 76px;
        gap: 18px;
    }

    .brand {
        flex: 1 1 auto;
        min-width: 0;
    }

    .brand-text {
        min-width: 0;
    }

    .brand-text strong,
    .brand-text small {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header-cta {
        padding-right: 17px;
        padding-left: 17px;
        white-space: nowrap;
    }

    .site-nav {
        gap: 19px;
    }

    .site-nav > a,
    .nav-dropdown-main {
        font-size: 11px;
    }

    .nav-dropdown-menu {
        left: auto;
        right: 0;
        width: min(380px, calc(100vw - 32px));
        transform: translate(0, 10px);
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        transform: translate(0, 0);
    }
}

@media (max-width: 820px) {
    .header-topbar-inner {
        justify-content: center;
        text-align: center;
    }

    .topbar-contact {
        justify-content: center;
    }

    .header-shell {
        min-height: 72px;
    }

    .nav-toggle {
        display: inline-flex;
        flex: 0 0 auto;
        order: 3;
    }

    .header-cta {
        display: none;
    }

    .site-nav {
        position: absolute;
        z-index: 1200;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        width: 100%;
        max-height: calc(100vh - 115px);
        padding: 18px;
        overflow-y: auto;
        border-top: 1px solid rgba(17, 32, 47, 0.10);
        background: #ffffff;
        box-shadow: 0 25px 55px rgba(17, 32, 47, 0.18);
    }

    .site-header.is-open .site-nav {
        display: grid;
        gap: 4px;
    }

    .site-nav > a,
    .nav-dropdown-main {
        display: flex;
        width: 100%;
        min-height: 46px;
        align-items: center;
        justify-content: space-between;
        padding: 11px 12px;
        border-radius: 8px;
        color: #11202f;
        font-size: 13px;
    }

    .site-nav > a:hover,
    .site-nav > a.is-active,
    .nav-dropdown-main:hover,
    .nav-dropdown-main.is-active {
        background: #f4efe7;
    }

    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        display: grid;
        width: 100%;
        margin: 2px 0 8px;
        padding: 5px 0 5px 13px;
        border: 0;
        border-left: 2px solid #b88942;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        transform: none;
    }

    .site-nav .nav-dropdown-menu a {
        padding: 9px 11px;
        font-size: 12px;
    }
}

/* Heroes y sliders */
@media (max-width: 1099px) {
    .site-slider,
    .site-slider-slide {
        min-height: 680px;
    }

    .site-slider-slide {
        padding: 64px 0 104px;
    }

    .site-slider-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }

    .site-slider-content {
        max-width: 760px;
    }

    .site-slider-content h1,
    .service-detail-slider .site-slider-content h1 {
        max-width: 760px;
        font-size: clamp(42px, 7vw, 62px);
        line-height: 1.03;
    }

    .site-slider-panel {
        width: min(100%, 620px);
        padding: 27px;
    }
}

@media (max-width: 680px) {
    .site-slider,
    .site-slider-slide {
        min-height: 0;
    }

    .site-slider-slide {
        position: absolute;
        min-height: 690px;
        padding: 48px 0 104px;
        background-position: center;
    }

    .site-slider-slide.is-active {
        position: relative;
    }

    .site-slider-grid {
        gap: 24px;
    }

    .site-slider-content h1,
    .service-detail-slider .site-slider-content h1 {
        max-width: 100%;
        margin-top: 9px;
        font-size: clamp(35px, 10.6vw, 48px);
        line-height: 1.04;
        letter-spacing: -0.025em;
    }

    .site-slider-content > p {
        font-size: 15px;
        line-height: 1.65;
    }

    .site-slider-content .hero-actions {
        display: grid;
        gap: 10px;
        margin-top: 23px;
    }

    .site-slider-content .hero-actions .button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .site-slider-panel {
        width: 100%;
        padding: 22px 20px;
    }

    .site-slider-panel h2 {
        font-size: 24px;
    }

    .site-slider-panel p {
        font-size: 14px;
    }

    .site-slider-controls {
        bottom: 20px;
    }

    .site-slider-controls-inner {
        gap: 20px;
    }

    .site-slider-arrows button {
        width: 42px;
        height: 42px;
    }
}

/* Secciones generales */
@media (max-width: 900px) {
    .section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .split-head,
    .story-grid,
    .contact-grid,
    .cta-grid,
    .cta-band-inner,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 31px;
    }

    .section-head h2,
    .split-head h2 {
        max-width: 680px;
        font-size: clamp(32px, 6vw, 48px);
    }

    .cta-band .hero-actions,
    .cta-band-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 32px, 1180px);
    }

    .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .section-head,
    .split-head {
        margin-bottom: 30px;
    }

    .section-head h2,
    .split-head h2 {
        font-size: clamp(30px, 9vw, 40px);
        line-height: 1.08;
    }

    .hero-actions,
    .cta-band-actions,
    .single-row {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button,
    .cta-band-actions .button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Directorio de abogados */
@media (max-width: 1100px) {
    .newman-attorneys-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .newman-attorney-card {
        grid-template-columns: minmax(230px, 34%) minmax(0, 1fr);
        min-height: 390px;
    }

    .newman-attorney-photo,
    .newman-attorney-photo img {
        min-height: 390px;
    }
}

@media (max-width: 680px) {
    .newman-attorneys-grid {
        gap: 24px;
    }

    .newman-attorney-card {
        display: block;
        min-height: 0;
        border-radius: 15px;
    }

    .newman-attorney-photo {
        height: min(120vw, 470px);
        min-height: 0;
    }

    .newman-attorney-photo img {
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
        object-position: center top;
    }

    .newman-attorney-content {
        padding: 25px 21px 23px;
    }

    .newman-attorney-content h2 {
        font-size: 28px;
    }

    .newman-attorney-email {
        margin-top: 8px;
        overflow-wrap: anywhere;
    }

    .newman-attorney-button {
        width: 100%;
        justify-content: center;
    }
}

/* Perfiles individuales */
@media (max-width: 950px) {
    .newman-profile-grid,
    .newman-profile-details-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .newman-profile-photo {
        width: min(100%, 480px);
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .newman-profile-photo img {
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
        object-position: center top;
    }
}

@media (max-width: 680px) {
    .newman-profile-hero {
        padding: 48px 0;
    }

    .newman-profile-intro h1 {
        font-size: clamp(38px, 11vw, 50px);
    }

    .newman-profile-actions {
        display: grid;
        width: 100%;
    }

    .newman-profile-actions .button {
        width: 100%;
        justify-content: center;
    }

    .newman-profile-biography,
    .newman-profile-sidebar {
        padding: 24px 20px;
    }

    .newman-profile-biography h2 {
        font-size: 31px;
    }
}

/* Página principal de servicios */
@media (max-width: 900px) {
    .practice-grid,
    .practice-grid-wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .practice-grid,
    .practice-grid-wide {
        grid-template-columns: minmax(0, 1fr);
    }

    .practice-card {
        min-height: 0;
    }
}

/* Páginas internas de servicios */
@media (max-width: 950px) {
    .service-detail-overview-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .service-detail-overview h2 {
        font-size: clamp(36px, 7vw, 52px);
    }

    .service-matters-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .service-detail-copy {
        padding: 25px 21px;
    }

    .service-detail-copy p {
        font-size: 15px;
        line-height: 1.75;
    }

    .service-matters-grid {
        gap: 11px;
    }

    .service-matters-grid li {
        padding: 17px 17px 17px 46px;
    }

    .service-process-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-process-step {
        min-height: 0;
        padding: 23px 21px;
    }

    .service-process-step span {
        margin-bottom: 18px;
    }
}

/* Contacto y formulario */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 680px) {
    .contact-form-card,
    .contact-info-card {
        padding: 25px 20px;
    }

    .field-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .smtp-contact-form input,
    .smtp-contact-form textarea {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
    }

    .smtp-contact-form textarea {
        min-height: 160px;
        resize: vertical;
    }

    .smtp-contact-form button[type="submit"] {
        width: 100%;
        justify-content: center;
    }

    .contact-direct-phone {
        padding: 20px;
    }

    .contact-direct-phone > a {
        font-size: 23px;
    }
}

/* Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1fr) minmax(160px, .45fr);
    }

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }
}

@media (max-width: 620px) {
    .site-footer {
        padding-top: 48px;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .footer-contact-inline {
        display: grid;
        justify-items: start;
        gap: 8px;
    }

    .footer-contact-inline span {
        display: none;
    }

    .footer-contact-inline a {
        overflow-wrap: anywhere;
    }

    .footer-bottom {
        padding-top: 25px;
        padding-bottom: 30px;
    }

    .footer-bottom p {
        font-size: 12px;
        line-height: 1.65;
    }
}

/* Pantallas extremadamente pequeñas */
@media (max-width: 390px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand-mark {
        width: 45px;
        height: 45px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text small {
        font-size: 8px;
    }

    .topbar-contact {
        font-size: 10px;
    }

    .site-slider-content h1,
    .service-detail-slider .site-slider-content h1 {
        font-size: 34px;
    }

    .site-slider-slide {
        min-height: 710px;
    }

    .newman-attorney-photo {
        height: 430px;
    }
}

/* NEWMAN COMPLETE RESPONSIVE END */

/* NEWMAN MOBILE HEADER FINAL START */

@media (max-width: 820px) {

    /* Barra superior compacta */
    .header-topbar {
        min-height: 32px;
        padding: 0;
    }

    .header-topbar-inner {
        min-height: 32px;
        padding-top: 5px;
        padding-bottom: 5px;
        justify-content: center;
    }

    .topbar-contact {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 7px;
        flex-wrap: nowrap;
        font-size: 10px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .topbar-contact > span:first-child {
        display: inline-flex;
        width: auto;
        align-items: center;
        gap: 3px;
        white-space: nowrap;
    }

    .topbar-contact-divider {
        display: inline;
        flex: 0 0 auto;
    }

    .topbar-phone {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    /* Header blanco más bajo */
    .header-shell {
        min-height: 68px;
        padding-top: 8px;
        padding-bottom: 8px;
        align-items: center;
    }

    .brand {
        display: inline-flex;
        min-width: 0;
        align-items: center;
        gap: 10px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        font-size: 16px;
    }

    .brand-text {
        display: flex;
        min-width: 0;
        flex-direction: column;
        justify-content: center;
        gap: 1px;
    }

    .brand-text strong {
        font-size: 17px;
        line-height: 1.05;
        white-space: nowrap;
    }

    /* Ocultar subtítulo en móvil para eliminar espacio sobrante */
    .brand-text small {
        display: none;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
        padding: 10px;
        align-self: center;
        justify-self: end;
        border-radius: 12px;
    }

    .nav-toggle span {
        width: 19px;
    }

    /* El menú empieza inmediatamente debajo */
    .site-nav {
        top: 100%;
    }
}

@media (max-width: 430px) {

    .topbar-contact {
        gap: 5px;
        font-size: 9px;
        letter-spacing: 0;
    }

    .header-shell {
        min-height: 64px;
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 370px) {

    .topbar-contact {
        font-size: 8.5px;
        gap: 4px;
    }

    .topbar-contact > span:first-child {
        gap: 2px;
    }

    .brand-text strong {
        font-size: 15px;
    }
}

/* NEWMAN MOBILE HEADER FINAL END */

/* NEWMAN MOBILE HEADER HEIGHT FIX START */

@media (max-width: 820px) {

    .header-shell {
        min-height: 52px !important;
        height: 52px;
        padding-top: 4px !important;
        padding-bottom: 4px !important;
        align-items: center;
    }

    .brand {
        height: 44px;
        align-items: center;
        gap: 8px;
    }

    .brand-mark {
        width: 34px !important;
        height: 34px !important;
        flex: 0 0 34px !important;
        font-size: 13px;
        line-height: 34px;
    }

    .brand-text {
        height: auto;
        justify-content: center;
        line-height: 1;
    }

    .brand-text strong {
        margin: 0;
        font-size: 14px;
        line-height: 1;
    }

    .brand-text small {
        display: none !important;
    }

    .nav-toggle {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px;
        min-height: 34px;
        padding: 8px;
        margin: 0;
        align-self: center;
        border-radius: 9px;
    }

    .nav-toggle span {
        width: 17px;
        margin: 2px auto;
    }
}

@media (max-width: 390px) {

    .header-shell {
        min-height: 50px !important;
        height: 50px;
    }

    .brand {
        height: 42px;
    }

    .brand-mark {
        width: 32px !important;
        height: 32px !important;
        flex-basis: 32px !important;
        line-height: 32px;
    }

    .brand-text strong {
        font-size: 13px;
    }

    .nav-toggle {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px;
        min-height: 32px;
    }
}

/* NEWMAN MOBILE HEADER HEIGHT FIX END */

/* NEWMAN HAMBURGER ICON FIX START */

@media (max-width: 820px) {

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        background: #11202f;
        color: #ffffff;
    }

    .nav-toggle span {
        display: block !important;
        width: 16px !important;
        height: 2px !important;
        margin: 0 !important;
        border-radius: 999px;
        background: #ffffff !important;
        opacity: 1 !important;
        transform-origin: center;
    }

    .site-header.is-open .nav-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header.is-open .nav-toggle span:nth-child(2) {
        opacity: 0 !important;
    }

    .site-header.is-open .nav-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

@media (max-width: 390px) {
    .nav-toggle span {
        width: 15px !important;
    }
}

/* NEWMAN HAMBURGER ICON FIX END */

/* NEWMAN MOBILE MENU CLEAN FINAL START */

@media (max-width: 820px) {

    /*
     * Menú principal cerrado al cargar.
     */
    .site-nav {
        position: absolute !important;
        z-index: 1500;
        top: 100% !important;
        right: 0;
        left: 0;

        display: grid !important;
        width: 100%;
        max-height: 0;

        gap: 5px;
        padding: 0 18px;

        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;

        border-top: 1px solid transparent;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 25px 55px rgba(17, 32, 47, 0);

        transform: translateY(-12px);

        transition:
            max-height 0.45s cubic-bezier(.22, 1, .36, 1),
            padding 0.32s ease,
            opacity 0.25s ease,
            transform 0.45s cubic-bezier(.22, 1, .36, 1),
            visibility 0s linear 0.45s,
            box-shadow 0.35s ease;
    }

    /*
     * Menú principal abierto.
     */
    .site-header.is-open .site-nav {
        max-height: calc(100vh - 84px);
        padding: 16px 18px 20px;

        overflow-y: auto;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;

        border-top-color: rgba(17, 32, 47, 0.10);
        box-shadow: 0 25px 55px rgba(17, 32, 47, 0.20);

        transform: translateY(0);

        transition:
            max-height 0.48s cubic-bezier(.22, 1, .36, 1),
            padding 0.32s ease,
            opacity 0.28s ease,
            transform 0.48s cubic-bezier(.22, 1, .36, 1),
            visibility 0s,
            box-shadow 0.35s ease;
    }

    /*
     * Opciones principales.
     */
    .site-nav > a {
        display: flex !important;
        width: 100%;
        min-height: 46px;

        align-items: center;
        justify-content: flex-start;

        padding: 11px 12px !important;
        border-radius: 9px;

        color: #11202f !important;
        font-size: 12px !important;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-align: left;
        text-transform: uppercase;
    }

    .site-nav > a:hover,
    .site-nav > a.is-active {
        background: #f4efe7;
        color: #9a6e2d !important;
    }

    /*
     * Contenedor completo de Practice Areas.
     */
    .nav-dropdown {
        position: relative !important;
        display: block !important;
        width: 100%;
        margin: 0;
    }

    /*
     * Una sola barra con texto y flecha.
     */
    .nav-dropdown-row {
        display: flex !important;
        width: 100%;
        min-height: 46px;

        align-items: stretch;
        gap: 0;

        overflow: hidden;
        border-radius: 9px;
        background: #f4efe7;
    }

    /*
     * Texto Practice Areas.
     */
    .nav-dropdown-row .nav-dropdown-main {
        display: flex !important;
        min-width: 0;
        min-height: 46px;
        flex: 1 1 auto;

        align-items: center;
        justify-content: flex-start;

        margin: 0 !important;
        padding: 11px 12px !important;

        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;

        color: #11202f !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        letter-spacing: 0.04em;
        text-align: left !important;
        text-decoration: none;
        text-transform: uppercase;
    }

    .nav-dropdown-row .nav-dropdown-main.is-active {
        color: #9a6e2d !important;
    }

    /*
     * Flecha integrada al lado derecho de la misma barra.
     */
    .nav-dropdown-row .submenu-toggle {
        position: static !important;

        display: inline-flex !important;
        width: 44px !important;
        height: auto !important;
        min-width: 44px !important;
        min-height: 46px !important;
        flex: 0 0 44px;

        align-items: center;
        justify-content: center;

        margin: 0 !important;
        padding: 0 !important;

        border: 0 !important;
        border-left: 1px solid rgba(17, 32, 47, 0.10) !important;
        border-radius: 0 !important;

        background: transparent !important;
        color: #11202f !important;
        box-shadow: none !important;

        cursor: pointer;
        appearance: none;
    }

    .nav-dropdown-row .submenu-toggle::before {
        content: "";
        display: block;

        width: 8px;
        height: 8px;

        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;

        transform: translateY(-2px) rotate(45deg);

        transition:
            transform 0.32s cubic-bezier(.22, 1, .36, 1);
    }

    .nav-dropdown.is-submenu-open
    .submenu-toggle::before {
        transform: translateY(2px) rotate(225deg);
    }

    .nav-dropdown-row .submenu-toggle:hover,
    .nav-dropdown-row .submenu-toggle:focus-visible {
        background: rgba(17, 32, 47, 0.07) !important;
        color: #9a6e2d !important;
        outline: none;
    }

    /*
     * Submenú cerrado inicialmente.
     */
    .nav-dropdown > .nav-dropdown-menu {
        position: static !important;

        display: grid !important;
        width: 100% !important;
        max-height: 0;

        gap: 2px;
        margin: 0 !important;
        padding: 0 0 0 14px !important;

        overflow: hidden;
        visibility: hidden;
        opacity: 0;

        border: 0 !important;
        border-left: 2px solid transparent !important;
        border-radius: 0 !important;

        background: transparent !important;
        box-shadow: none !important;

        transform: translateY(-8px) !important;

        transition:
            max-height 0.42s cubic-bezier(.22, 1, .36, 1),
            margin 0.30s ease,
            padding 0.30s ease,
            opacity 0.22s ease,
            transform 0.42s cubic-bezier(.22, 1, .36, 1),
            visibility 0s linear 0.42s;
    }

    /*
     * Submenú abierto.
     */
    .nav-dropdown.is-submenu-open
    > .nav-dropdown-menu {
        max-height: 560px;

        margin: 5px 0 9px !important;
        padding: 6px 0 6px 14px !important;

        visibility: visible;
        opacity: 1;

        border-left-color: #b88942 !important;

        transform: translateY(0) !important;

        transition:
            max-height 0.48s cubic-bezier(.22, 1, .36, 1),
            margin 0.30s ease,
            padding 0.30s ease,
            opacity 0.27s ease,
            transform 0.48s cubic-bezier(.22, 1, .36, 1),
            visibility 0s;
    }

    .site-nav .nav-dropdown-menu a {
        display: block !important;
        width: 100%;

        padding: 10px 11px !important;
        border-radius: 7px;

        color: #344451 !important;
        font-size: 12px !important;
        font-weight: 600;
        line-height: 1.35;
        text-align: left !important;
        text-decoration: none;
        text-transform: none;

        opacity: 0;
        transform: translateX(-7px);

        transition:
            opacity 0.22s ease,
            transform 0.32s cubic-bezier(.22, 1, .36, 1),
            background 0.2s ease;
    }

    .nav-dropdown.is-submenu-open
    .nav-dropdown-menu a {
        opacity: 1;
        transform: translateX(0);
    }

    .site-nav .nav-dropdown-menu a:hover {
        background: #eee4d4 !important;
        color: #8f6326 !important;
    }

    .nav-dropdown.is-submenu-open
    .nav-dropdown-menu a:nth-child(1) {
        transition-delay: 0.03s;
    }

    .nav-dropdown.is-submenu-open
    .nav-dropdown-menu a:nth-child(2) {
        transition-delay: 0.06s;
    }

    .nav-dropdown.is-submenu-open
    .nav-dropdown-menu a:nth-child(3) {
        transition-delay: 0.09s;
    }

    .nav-dropdown.is-submenu-open
    .nav-dropdown-menu a:nth-child(4) {
        transition-delay: 0.12s;
    }

    .nav-dropdown.is-submenu-open
    .nav-dropdown-menu a:nth-child(5) {
        transition-delay: 0.15s;
    }

    .nav-dropdown.is-submenu-open
    .nav-dropdown-menu a:nth-child(6) {
        transition-delay: 0.18s;
    }

    .nav-dropdown.is-submenu-open
    .nav-dropdown-menu a:nth-child(7) {
        transition-delay: 0.21s;
    }

    .nav-dropdown.is-submenu-open
    .nav-dropdown-menu a:nth-child(8) {
        transition-delay: 0.24s;
    }
}

@media (max-width: 390px) {
    .nav-dropdown-row .submenu-toggle {
        width: 40px !important;
        min-width: 40px !important;
        flex-basis: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-nav,
    .nav-dropdown-menu,
    .nav-dropdown-menu a,
    .submenu-toggle::before {
        transition: none !important;
    }
}

/* NEWMAN MOBILE MENU CLEAN FINAL END */

/* NEWMAN UPLOADABLE BRANDING START */

.brand-mark.brand-mark-image {
    overflow: hidden;
    padding: 4px;
    background: transparent;
}

.brand-mark.brand-mark-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-footer .brand-mark-footer-image {
    border: 0;
    background: transparent;
}

@media (max-width: 820px) {
    .brand-mark.brand-mark-image {
        padding: 2px;
    }
}

/* NEWMAN UPLOADABLE BRANDING END */

/* NEWMAN FIRM CONTACT DETAILS START */

.footer-contact-column {
    min-width: 0;
}

.footer-firm-contact-list {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-firm-contact-list li {
    display: grid;
    gap: 3px;
}

.footer-firm-contact-list li > span {
    color: #d3aa63;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.footer-firm-contact-list a {
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.footer-firm-contact-list a:hover {
    color: #d3aa63;
}

.newman-firm-details-section {
    background: #f4efe7;
}

.newman-firm-details-card {
    display: grid;
    grid-template-columns: minmax(250px, .75fr) minmax(0, 1.25fr);
    gap: 55px;

    padding: 42px;

    border: 1px solid rgba(17, 32, 47, .10);
    border-radius: 18px;

    background: #ffffff;
    box-shadow: 0 20px 55px rgba(17, 32, 47, .08);
}

.newman-firm-details-heading h2 {
    margin: 9px 0 12px;

    color: #11202f;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.04;
}

.newman-firm-details-heading p {
    max-width: 420px;
    margin: 0;

    color: #5d6973;
    line-height: 1.7;
}

.newman-firm-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.newman-firm-details-grid article {
    display: grid;
    min-height: 105px;
    align-content: start;
    gap: 7px;

    padding: 18px;

    border: 1px solid rgba(17, 32, 47, .09);
    border-radius: 11px;

    background: #f8f6f2;
}

.newman-firm-details-grid article > span {
    color: #9a6e2d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.newman-firm-details-grid a {
    color: #11202f;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.newman-firm-details-grid a:hover {
    color: #a87631;
}

@media (max-width: 900px) {
    .newman-firm-details-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 620px) {
    .newman-firm-details-card {
        padding: 25px 20px;
    }

    .newman-firm-details-grid {
        grid-template-columns: 1fr;
    }

    .newman-firm-details-grid article {
        min-height: 0;
    }
}

/* NEWMAN FIRM CONTACT DETAILS END */

/* NEWMAN DESKTOP DROPDOWN ARROW CLEAN START */

@media (min-width: 821px) {

    .nav-dropdown-row {
        display: flex;
        align-items: center;
    }

    /* El botón pertenece solamente al menú móvil */
    .nav-dropdown-row .submenu-toggle {
        display: none !important;
    }

    .nav-dropdown-row .nav-dropdown-main {
        display: inline-flex !important;
        align-items: center;
        gap: 5px;
    }

    /*
     * Flecha independiente.
     * No utiliza ::after porque ::after ya dibuja
     * la línea inferior activa del menú.
     */
    .nav-dropdown-row .nav-dropdown-main::before {
        content: "▾";
        display: inline-block;
        order: 2;

        margin-left: 2px;

        color: currentColor;
        font-size: 9px;
        line-height: 1;

        transform: translateY(-1px);
        transition: transform 0.2s ease;
    }

    .nav-dropdown:hover .nav-dropdown-main::before,
    .nav-dropdown:focus-within .nav-dropdown-main::before {
        transform: translateY(1px) rotate(180deg);
    }
}

@media (max-width: 820px) {

    .nav-dropdown-row .nav-dropdown-main::before {
        display: none !important;
        content: none !important;
    }

    .nav-dropdown-row .submenu-toggle {
        display: inline-flex !important;
    }
}

/* NEWMAN DESKTOP DROPDOWN ARROW CLEAN END */

/* NEWMAN CONTACT INFORMATION EMERGENCY LAYOUT FIX START */

.newman-firm-details-section {
    display: block !important;
    width: 100% !important;
    clear: both !important;
    padding: 70px 0 !important;
    background: #f4efe7;
}

.newman-firm-details-section > .container {
    display: block !important;
    width: min(1180px, calc(100% - 40px)) !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
}

.newman-firm-details-card {
    display: grid !important;
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr) !important;
    gap: 48px !important;
    padding: 42px !important;
}

.newman-firm-details-heading {
    width: auto !important;
    min-width: 0 !important;
}

.newman-firm-details-grid {
    display: grid !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.newman-firm-details-grid article {
    display: grid !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
}

.newman-firm-details-grid a {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
}

@media (max-width: 900px) {
    .newman-firm-details-card {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 620px) {
    .newman-firm-details-section {
        padding: 50px 0 !important;
    }

    .newman-firm-details-section > .container {
        width: calc(100% - 32px) !important;
    }

    .newman-firm-details-card {
        padding: 24px 20px !important;
    }

    .newman-firm-details-grid {
        grid-template-columns: 1fr !important;
    }
}

/* NEWMAN CONTACT INFORMATION EMERGENCY LAYOUT FIX END */

/* HOME BOUTIQUE HERO + PARALLAX START */

.boutique-home .home-boutique-hero-section {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.boutique-home .home-boutique-hero {
    position: relative;
    min-height: 760px;
    background: #0f2133;
}

.boutique-home .home-boutique-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .6s ease, visibility .6s ease;
    background-image:
        linear-gradient(90deg, rgba(8,18,31,.78) 0%, rgba(8,18,31,.62) 45%, rgba(8,18,31,.30) 100%),
        var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.boutique-home .home-boutique-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.boutique-home .home-boutique-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 42px;
    align-items: center;
    min-height: 760px;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 80px 0;
}

.boutique-home .home-boutique-copy,
.boutique-home .home-boutique-panel {
    position: relative;
    z-index: 2;
}

.boutique-home .home-boutique-copy .eyebrow,
.boutique-home .home-boutique-panel .eyebrow,
.boutique-home .home-parallax-inner .eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #d3aa63;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.boutique-home .home-boutique-copy h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(48px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -.03em;
}

.boutique-home .home-boutique-copy p {
    max-width: 650px;
    margin: 0 0 28px;
    color: rgba(255,255,255,.86);
    font-size: 18px;
    line-height: 1.75;
}

.boutique-home .home-boutique-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.boutique-home .home-boutique-panel {
    padding: 34px 28px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(15,33,51,.72);
    box-shadow: 0 18px 60px rgba(0,0,0,.18);
    backdrop-filter: blur(5px);
}

.boutique-home .home-boutique-panel h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
}

.boutique-home .home-boutique-panel p {
    margin: 0;
    color: rgba(255,255,255,.78);
    line-height: 1.75;
}

.boutique-home .home-boutique-controls {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 5;
    display: flex;
    gap: 12px;
    transform: translateX(-50%);
}

.boutique-home .home-boutique-controls button,
.boutique-home .home-boutique-dots button {
    cursor: pointer;
}

.boutique-home .home-boutique-controls button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: #ffffff;
    font-size: 18px;
    transition: all .2s ease;
}

.boutique-home .home-boutique-controls button:hover {
    border-color: #d3aa63;
    color: #d3aa63;
}

.boutique-home .home-boutique-dots {
    position: absolute;
    right: 36px;
    bottom: 42px;
    z-index: 5;
    display: flex;
    gap: 8px;
}

.boutique-home .home-boutique-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
}

.boutique-home .home-boutique-dots button.is-active {
    background: #d3aa63;
}

/* Parallax */
.boutique-home .home-parallax-band {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: grid;
    align-items: center;
    margin: 0;
    background-image:
        linear-gradient(90deg, rgba(8,18,31,.76), rgba(8,18,31,.48)),
        url('https://images.pexels.com/photos/290595/pexels-photo-290595.jpeg?auto=compress&cs=tinysrgb&w=1800');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.boutique-home .home-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,18,31,.06), rgba(8,18,31,.28));
}

.boutique-home .home-parallax-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 90px 0;
}

.boutique-home .home-parallax-inner h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.02;
}

.boutique-home .home-parallax-inner p {
    max-width: 760px;
    margin: 0 0 26px;
    color: rgba(255,255,255,.84);
    font-size: 18px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 980px) {
    .boutique-home .home-boutique-hero,
    .boutique-home .home-boutique-hero-grid {
        min-height: 720px;
    }

    .boutique-home .home-boutique-hero-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 80px 0 120px;
    }
}

@media (max-width: 820px) {
    .boutique-home .home-boutique-copy h1 {
        font-size: clamp(40px, 9vw, 60px);
    }

    .boutique-home .home-boutique-copy p,
    .boutique-home .home-parallax-inner p {
        font-size: 16px;
    }

    .boutique-home .home-parallax-band {
        min-height: 440px;
        background-attachment: scroll;
    }

    .boutique-home .home-boutique-dots {
        right: 20px;
        bottom: 24px;
    }

    .boutique-home .home-boutique-controls {
        left: 20px;
        bottom: 16px;
        transform: none;
    }
}

@media (max-width: 580px) {
    .boutique-home .home-boutique-hero,
    .boutique-home .home-boutique-hero-grid {
        min-height: 680px;
    }

    .boutique-home .home-boutique-hero-grid {
        width: calc(100% - 32px);
        padding: 74px 0 105px;
    }

    .boutique-home .home-boutique-copy h1 {
        font-size: 42px;
        line-height: 1.02;
    }

    .boutique-home .home-boutique-copy p {
        line-height: 1.65;
    }

    .boutique-home .home-boutique-panel {
        padding: 24px 20px;
    }

    .boutique-home .home-parallax-inner {
        width: calc(100% - 32px);
        padding: 75px 0;
    }

    .boutique-home .home-parallax-inner h2 {
        font-size: 38px;
    }
}

/* HOME BOUTIQUE HERO + PARALLAX END */

/* NEWMAN DECORATIVE CITY BANDS START */

.newman-decorative-city-band {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 440px;
    align-items: center;

    overflow: hidden;

    background-color: #10202f;
    background-image: var(--newman-decor-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.newman-decorative-city-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 20, 32, .90) 0%,
            rgba(8, 20, 32, .72) 48%,
            rgba(8, 20, 32, .28) 100%
        );
}

.newman-decorative-city-band::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .02),
            rgba(7, 17, 28, .18)
        );

    pointer-events: none;
}

.newman-decorative-city-inner {
    position: relative;
    z-index: 2;

    display: flex;
    width: min(1180px, calc(100% - 40px));
    min-height: 440px;
    align-items: center;

    margin: 0 auto;
    padding: 72px 0;
}

.newman-decorative-city-copy {
    width: min(100%, 720px);
}

.newman-decorative-city-copy .eyebrow {
    display: inline-block;
    margin-bottom: 15px;

    color: #d4a95f;
}

.newman-decorative-city-copy h2 {
    max-width: 720px;
    margin: 0 0 18px;

    color: #ffffff;
    font-size: clamp(40px, 5.3vw, 67px);
    line-height: 1.02;
    letter-spacing: -.025em;
}

.newman-decorative-city-copy p {
    max-width: 650px;
    margin: 0;

    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.75;
}

/*
 * Ligera sensación parallax solamente en escritorio.
 */
@media (min-width: 1025px) {
    .newman-decorative-city-band {
        background-attachment: fixed;
    }
}

@media (max-width: 900px) {
    .newman-decorative-city-band,
    .newman-decorative-city-inner {
        min-height: 400px;
    }

    .newman-decorative-city-inner {
        padding: 62px 0;
    }

    .newman-decorative-city-copy h2 {
        font-size: clamp(36px, 7vw, 54px);
    }
}

@media (max-width: 620px) {
    .newman-decorative-city-band,
    .newman-decorative-city-inner {
        min-height: 360px;
    }

    .newman-decorative-city-band {
        background-attachment: scroll;
        background-position: center;
    }

    .newman-decorative-city-inner {
        width: calc(100% - 32px);
        padding: 52px 0;
    }

    .newman-decorative-city-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8, 20, 32, .91),
                rgba(8, 20, 32, .65)
            );
    }

    .newman-decorative-city-copy h2 {
        font-size: 36px;
        line-height: 1.06;
    }

    .newman-decorative-city-copy p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* NEWMAN DECORATIVE CITY BANDS END */
